Skip to content

SystemsManagerQuickSetupClient#

Index > SystemsManagerQuickSetup > SystemsManagerQuickSetupClient

Auto-generated documentation for SystemsManagerQuickSetup type annotations stubs module mypy-boto3-ssm-quicksetup.

SystemsManagerQuickSetupClient#

Type annotations and code completion for boto3.client("ssm-quicksetup"). boto3 documentation

# SystemsManagerQuickSetupClient usage example

from boto3.session import Session
from mypy_boto3_ssm_quicksetup.client import SystemsManagerQuickSetupClient

def get_ssm-quicksetup_client() -> SystemsManagerQuickSetupClient:
    return Session().client("ssm-quicksetup")

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("ssm-quicksetup").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("ssm-quicksetup")

try:
    do_something(client)
except (
    client.exceptions.AccessDeniedException,
    client.exceptions.ClientError,
    client.exceptions.ConflictException,
    client.exceptions.InternalServerException,
    client.exceptions.ResourceNotFoundException,
    client.exceptions.ThrottlingException,
    client.exceptions.ValidationException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from mypy_boto3_ssm_quicksetup.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("ssm-quicksetup").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("ssm-quicksetup").close method. boto3 documentation

# close method definition

def close(
    self,
) -> None:
    ...

create_configuration_manager#

Creates a Quick Setup configuration manager resource.

Type annotations and code completion for boto3.client("ssm-quicksetup").create_configuration_manager method. boto3 documentation

# create_configuration_manager method definition

def create_configuration_manager(
    self,
    *,
    ConfigurationDefinitions: Sequence[ConfigurationDefinitionInputTypeDef],  # (1)
    Description: str = ...,
    Name: str = ...,
    Tags: Mapping[str, str] = ...,
) -> CreateConfigurationManagerOutputTypeDef:  # (2)
    ...
  1. See ConfigurationDefinitionInputTypeDef
  2. See CreateConfigurationManagerOutputTypeDef
# create_configuration_manager method usage example with argument unpacking

kwargs: CreateConfigurationManagerInputRequestTypeDef = {  # (1)
    "ConfigurationDefinitions": ...,
}

parent.create_configuration_manager(**kwargs)
  1. See CreateConfigurationManagerInputRequestTypeDef

delete_configuration_manager#

Deletes a configuration manager.

Type annotations and code completion for boto3.client("ssm-quicksetup").delete_configuration_manager method. boto3 documentation

# delete_configuration_manager method definition

def delete_configuration_manager(
    self,
    *,
    ManagerArn: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_configuration_manager method usage example with argument unpacking

kwargs: DeleteConfigurationManagerInputRequestTypeDef = {  # (1)
    "ManagerArn": ...,
}

parent.delete_configuration_manager(**kwargs)
  1. See DeleteConfigurationManagerInputRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("ssm-quicksetup").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_configuration_manager#

Returns a configuration manager.

Type annotations and code completion for boto3.client("ssm-quicksetup").get_configuration_manager method. boto3 documentation

# get_configuration_manager method definition

def get_configuration_manager(
    self,
    *,
    ManagerArn: str,
) -> GetConfigurationManagerOutputTypeDef:  # (1)
    ...
  1. See GetConfigurationManagerOutputTypeDef
# get_configuration_manager method usage example with argument unpacking

kwargs: GetConfigurationManagerInputRequestTypeDef = {  # (1)
    "ManagerArn": ...,
}

parent.get_configuration_manager(**kwargs)
  1. See GetConfigurationManagerInputRequestTypeDef

get_service_settings#

Returns settings configured for Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.

Type annotations and code completion for boto3.client("ssm-quicksetup").get_service_settings method. boto3 documentation

# get_service_settings method definition

def get_service_settings(
    self,
) -> GetServiceSettingsOutputTypeDef:  # (1)
    ...
  1. See GetServiceSettingsOutputTypeDef

list_configuration_managers#

Returns Quick Setup configuration managers.

Type annotations and code completion for boto3.client("ssm-quicksetup").list_configuration_managers method. boto3 documentation

# list_configuration_managers method definition

def list_configuration_managers(
    self,
    *,
    Filters: Sequence[FilterTypeDef] = ...,  # (1)
    MaxItems: int = ...,
    StartingToken: str = ...,
) -> ListConfigurationManagersOutputTypeDef:  # (2)
    ...
  1. See FilterTypeDef
  2. See ListConfigurationManagersOutputTypeDef
# list_configuration_managers method usage example with argument unpacking

kwargs: ListConfigurationManagersInputRequestTypeDef = {  # (1)
    "Filters": ...,
}

parent.list_configuration_managers(**kwargs)
  1. See ListConfigurationManagersInputRequestTypeDef

list_quick_setup_types#

Returns the available Quick Setup types.

Type annotations and code completion for boto3.client("ssm-quicksetup").list_quick_setup_types method. boto3 documentation

# list_quick_setup_types method definition

def list_quick_setup_types(
    self,
) -> ListQuickSetupTypesOutputTypeDef:  # (1)
    ...
  1. See ListQuickSetupTypesOutputTypeDef

list_tags_for_resource#

Returns tags assigned to the resource.

Type annotations and code completion for boto3.client("ssm-quicksetup").list_tags_for_resource method.