Skip to content

SnowDeviceManagementClient

Index > SnowDeviceManagement > SnowDeviceManagementClient

Auto-generated documentation for SnowDeviceManagement type annotations stubs module mypy-boto3-snow-device-management.

SnowDeviceManagementClient

Type annotations and code completion for boto3.client("snow-device-management"). boto3 documentation

Usage example
from boto3.session import Session
from mypy_boto3_snow_device_management.client import SnowDeviceManagementClient

def get_snow-device-management_client() -> SnowDeviceManagementClient:
    return Session().client("snow-device-management")

Exceptions

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("snow-device-management").exceptions structure.

Usage example
client = boto3.client("snow-device-management")

try:
    do_something(client)
except (
    client.AccessDeniedException,
    client.ClientError,
    client.InternalServerException,
    client.ResourceNotFoundException,
    client.ServiceQuotaExceededException,
    client.ThrottlingException,
    client.ValidationException,
) as e:
    print(e)
Type checking example
from mypy_boto3_snow_device_management.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("snow-device-management").can_paginate method. boto3 documentation

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

cancel_task

Sends a cancel request for a specified task.

Type annotations and code completion for boto3.client("snow-device-management").cancel_task method. boto3 documentation

Method definition
def cancel_task(
    self,
    *,
    taskId: str,
) -> CancelTaskOutputTypeDef:  # (1)
    ...
  1. See CancelTaskOutputTypeDef
Usage example with kwargs
kwargs: CancelTaskInputRequestTypeDef = {  # (1)
    "taskId": ...,
}

parent.cancel_task(**kwargs)
  1. See CancelTaskInputRequestTypeDef

close

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("snow-device-management").close method. boto3 documentation

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

create_task

Instructs one or more devices to start a task, such as unlocking or rebooting.

Type annotations and code completion for boto3.client("snow-device-management").create_task method. boto3 documentation

Method definition
def create_task(
    self,
    *,
    command: CommandTypeDef,  # (1)
    targets: Sequence[str],
    clientToken: str = ...,
    description: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateTaskOutputTypeDef:  # (2)
    ...
  1. See CommandTypeDef
  2. See CreateTaskOutputTypeDef
Usage example with kwargs
kwargs: CreateTaskInputRequestTypeDef = {  # (1)
    "command": ...,
    "targets": ...,
}

parent.create_task(**kwargs)
  1. See CreateTaskInputRequestTypeDef

describe_device

Checks device-specific information, such as the device type, software version, IP addresses, and lock status.

Type annotations and code completion for boto3.client("snow-device-management").describe_device method. boto3 documentation

Method definition
def describe_device(
    self,
    *,
    managedDeviceId: str,
) -> DescribeDeviceOutputTypeDef:  # (1)
    ...
  1. See DescribeDeviceOutputTypeDef
Usage example with kwargs
kwargs: DescribeDeviceInputRequestTypeDef = {  # (1)
    "managedDeviceId": ...,
}

parent.describe_device(**kwargs)
  1. See DescribeDeviceInputRequestTypeDef

describe_device_ec2_instances

Checks the current state of the Amazon EC2 instances.

Type annotations and code completion for boto3.client("snow-device-management").describe_device_ec2_instances method. boto3 documentation

Method definition
def describe_device_ec2_instances(
    self,
    *,
    instanceIds: Sequence[str],
    managedDeviceId: str,
) -> DescribeDeviceEc2OutputTypeDef:  # (1)
    ...
  1. See DescribeDeviceEc2OutputTypeDef
Usage example with kwargs
kwargs: DescribeDeviceEc2InputRequestTypeDef = {  # (1)
    "instanceIds": ...,
    "managedDeviceId": ...,
}

parent.describe_device_ec2_instances(**kwargs)
  1. See DescribeDeviceEc2InputRequestTypeDef

describe_execution

Checks the status of a remote task running on one or more target devices.

Type annotations and code completion for boto3.client("snow-device-management").describe_execution method. boto3 documentation

Method definition
def describe_execution(
    self,
    *,
    managedDeviceId: str,
    taskId: str,
) -> DescribeExecutionOutputTypeDef:  # (1)
    ...
  1. See DescribeExecutionOutputTypeDef
Usage example with kwargs
kwargs: DescribeExecutionInputRequestTypeDef = {  # (1)
    "managedDeviceId": ...,
    "taskId": ...,
}

parent.describe_execution(**kwargs)
  1. See DescribeExecutionInputRequestTypeDef

describe_task

Checks the metadata for a given task on a device.

Type annotations and code completion for boto3.client("snow-device-management").describe_task method. boto3 documentation

Method definition
def describe_task(
    self,
    *,
    taskId: str,
) -> DescribeTaskOutputTypeDef:  # (1)
    ...
  1. See DescribeTaskOutputTypeDef
Usage example with kwargs
kwargs: DescribeTaskInputRequestTypeDef = {  # (1)
    "taskId": ...,
}

parent.describe_task(**kwargs)
  1. See DescribeTaskInputRequestTypeDef

generate_presigned_url

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

Type annotations and code completion for boto3.client("snow-device-management").generate_presigned_url method. boto3 documentation

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

list_device_resources

Returns a list of the Amazon Web Services resources available for a device.

Type annotations and code completion for boto3.client("snow-device-management").list_device_resources method. boto3 documentation

Method definition
def list_device_resources(
    self,
    *,
    managedDeviceId: str,
    maxResults: int = ...,
    nextToken: str = ...,
    type: str = ...,
) -> ListDeviceResourcesOutputTypeDef:  # (1)
    ...
  1. See ListDeviceResourcesOutputTypeDef
Usage example with kwargs
kwargs: ListDeviceResourcesInputRequestTypeDef = {  # (1)
    "managedDeviceId": ...,
}

parent.list_device_resources(**kwargs)
  1. See ListDeviceResourcesInputRequestTypeDef

list_devices

Returns a list of all devices on your Amazon Web Services account that have Amazon Web Services Snow Device Management enabled in the Amazon Web Services Region where the command is run.

Type annotations and code completion for boto3.client("snow-device-management").list_devices method. boto3 documentation

Method definition
def list_devices(
    self,
    *,
    jobId: str = ...,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListDevicesOutputTypeDef:  # (1)
    ...
  1. See ListDevicesOutputTypeDef
Usage example with kwargs
kwargs: ListDevicesInputRequestTypeDef = {  # (1)
    "jobId": ...,
}

parent.list_devices(**kwargs)
  1. See ListDevicesInputRequestTypeDef

list_executions

Returns the status of tasks for one or more target devices.

Type annotations and code completion for boto3.client("snow-device-management").list_executions method. boto3 documentation

Method definition
def list_executions(
    self,
    *,
    taskId: str,
    maxResults: int = ...,
    nextToken: str = ...,
    state: ExecutionStateType = ...,  # (1)
) -> ListExecutionsOutputTypeDef:  # (2)
    ...
  1. See ExecutionStateType
  2. See ListExecutionsOutputTypeDef
Usage example with kwargs
kwargs: ListExecutionsInputRequestTypeDef = {  # (1)
    "taskId": ...,
}

parent.list_executions(**kwargs)
  1. See ListExecutionsInputRequestTypeDef

list_tags_for_resource

Returns a list of tags for a managed device or task.

Type annotations and code completion for boto3.client("snow-device-management").list_tags_for_resource method. boto3 documentation

Method definition
def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceOutputTypeDef:  # (1)
    ...
  1. See ListTagsForResourceOutputTypeDef
Usage example with kwargs
kwargs: ListTagsForResourceInputRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceInputRequestTypeDef

list_tasks

Returns a list of tasks that can be filtered by state.

Type annotations and code completion for boto3.client("snow-device-management").list_tasks method. boto3 documentation

Method definition
def list_tasks(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
    state: TaskStateType = ...,  # (1)
) -> ListTasksOutputTypeDef:  # (2)
    ...
  1. See TaskStateType
  2. See ListTasksOutputTypeDef
Usage example with kwargs
kwargs: ListTasksInputRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_tasks(**kwargs)
  1. See ListTasksInputRequestTypeDef

tag_resource

Adds or replaces tags on a device or task.

Type annotations and code completion for boto3.client("snow-device-management").tag_resource method. boto3 documentation

Method definition
def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: TagResourceInputRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceInputRequestTypeDef

untag_resource

Removes a tag from a device or task.

Type annotations and code completion for boto3.client("snow-device-management").untag_resource method. boto3 documentation

Method definition
def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UntagResourceInputRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceInputRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("snow-device-management").get_paginator method with overloads.