Skip to content

IoTRoboRunnerClient#

Index > IoTRoboRunner > IoTRoboRunnerClient

Auto-generated documentation for IoTRoboRunner type annotations stubs module types-aiobotocore-iot-roborunner.

IoTRoboRunnerClient#

Type annotations and code completion for session.create_client("iot-roborunner") boto3 documentation

IoTRoboRunnerClient usage example

from aiobotocore.session import get_session
from types_aiobotocore_iot_roborunner.client import IoTRoboRunnerClient

session = get_session()
async with session.create_client("iot-roborunner") as client:
    client: IoTRoboRunnerClient

Exceptions#

aiobotocore client exceptions are generated in runtime. This class provides code completion for session.create_client("iot-roborunner").exceptions structure.

IoTRoboRunnerClient.exceptions usage example

async with session.create_client("iot-roborunner") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.ClientError,
        client.ConflictException,
        client.InternalServerException,
        client.ResourceNotFoundException,
        client.ServiceQuotaExceededException,
        client.ThrottlingException,
        client.ValidationException,
    ) as e:
        print(e)
IoTRoboRunnerClient usage type checking example

from types_aiobotocore_iot_roborunner.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 session.create_client("iot-roborunner").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 session.create_client("iot-roborunner").close method. boto3 documentation

# close method definition

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

create_destination#

Grants permission to create a destination See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").create_destination method. boto3 documentation

# create_destination method definition

await def create_destination(
    self,
    *,
    name: str,
    site: str,
    clientToken: str = ...,
    state: DestinationStateType = ...,  # (1)
    additionalFixedProperties: str = ...,
) -> CreateDestinationResponseTypeDef:  # (2)
    ...
  1. See DestinationStateType
  2. See CreateDestinationResponseTypeDef
# create_destination method usage example with argument unpacking

kwargs: CreateDestinationRequestRequestTypeDef = {  # (1)
    "name": ...,
    "site": ...,
}

parent.create_destination(**kwargs)
  1. See CreateDestinationRequestRequestTypeDef

create_site#

Grants permission to create a site See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").create_site method. boto3 documentation

# create_site method definition

await def create_site(
    self,
    *,
    name: str,
    countryCode: str,
    clientToken: str = ...,
    description: str = ...,
) -> CreateSiteResponseTypeDef:  # (1)
    ...
  1. See CreateSiteResponseTypeDef
# create_site method usage example with argument unpacking

kwargs: CreateSiteRequestRequestTypeDef = {  # (1)
    "name": ...,
    "countryCode": ...,
}

parent.create_site(**kwargs)
  1. See CreateSiteRequestRequestTypeDef

create_worker#

Grants permission to create a worker See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").create_worker method. boto3 documentation

# create_worker method definition

await def create_worker(
    self,
    *,
    name: str,
    fleet: str,
    clientToken: str = ...,
    additionalTransientProperties: str = ...,
    additionalFixedProperties: str = ...,
    vendorProperties: VendorPropertiesTypeDef = ...,  # (1)
    position: PositionCoordinatesTypeDef = ...,  # (2)
    orientation: OrientationTypeDef = ...,  # (3)
) -> CreateWorkerResponseTypeDef:  # (4)
    ...
  1. See VendorPropertiesTypeDef
  2. See PositionCoordinatesTypeDef
  3. See OrientationTypeDef
  4. See CreateWorkerResponseTypeDef
# create_worker method usage example with argument unpacking

kwargs: CreateWorkerRequestRequestTypeDef = {  # (1)
    "name": ...,
    "fleet": ...,
}

parent.create_worker(**kwargs)
  1. See CreateWorkerRequestRequestTypeDef

create_worker_fleet#

Grants permission to create a worker fleet See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").create_worker_fleet method. boto3 documentation

# create_worker_fleet method definition

await def create_worker_fleet(
    self,
    *,
    name: str,
    site: str,
    clientToken: str = ...,
    additionalFixedProperties: str = ...,
) -> CreateWorkerFleetResponseTypeDef:  # (1)
    ...
  1. See CreateWorkerFleetResponseTypeDef
# create_worker_fleet method usage example with argument unpacking

kwargs: CreateWorkerFleetRequestRequestTypeDef = {  # (1)
    "name": ...,
    "site": ...,
}

parent.create_worker_fleet(**kwargs)
  1. See CreateWorkerFleetRequestRequestTypeDef

delete_destination#

Grants permission to delete a destination See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").delete_destination method. boto3 documentation

# delete_destination method definition

await def delete_destination(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...
# delete_destination method usage example with argument unpacking

kwargs: DeleteDestinationRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.delete_destination(**kwargs)
  1. See DeleteDestinationRequestRequestTypeDef

delete_site#

Grants permission to delete a site See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").delete_site method. boto3 documentation

# delete_site method definition

await def delete_site(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...
# delete_site method usage example with argument unpacking

kwargs: DeleteSiteRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.delete_site(**kwargs)
  1. See DeleteSiteRequestRequestTypeDef

delete_worker#

Grants permission to delete a worker See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").delete_worker method. boto3 documentation

# delete_worker method definition

await def delete_worker(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...
# delete_worker method usage example with argument unpacking

kwargs: DeleteWorkerRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.delete_worker(**kwargs)
  1. See DeleteWorkerRequestRequestTypeDef

delete_worker_fleet#

Grants permission to delete a worker fleet See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").delete_worker_fleet method. boto3 documentation

# delete_worker_fleet method definition

await def delete_worker_fleet(
    self,
    *,
    id: str,
) -> Dict[str, Any]:
    ...
# delete_worker_fleet method usage example with argument unpacking

kwargs: DeleteWorkerFleetRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.delete_worker_fleet(**kwargs)
  1. See DeleteWorkerFleetRequestRequestTypeDef

generate_presigned_url#

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

Type annotations and code completion for session.create_client("iot-roborunner").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

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

get_destination#

Grants permission to get a destination See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").get_destination method. boto3 documentation

# get_destination method definition

await def get_destination(
    self,
    *,
    id: str,
) -> GetDestinationResponseTypeDef:  # (1)
    ...
  1. See GetDestinationResponseTypeDef
# get_destination method usage example with argument unpacking

kwargs: GetDestinationRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.get_destination(**kwargs)
  1. See GetDestinationRequestRequestTypeDef

get_site#

Grants permission to get a site See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").get_site method. boto3 documentation

# get_site method definition

await def get_site(
    self,
    *,
    id: str,
) -> GetSiteResponseTypeDef:  # (1)
    ...
  1. See GetSiteResponseTypeDef
# get_site method usage example with argument unpacking

kwargs: GetSiteRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.get_site(**kwargs)
  1. See GetSiteRequestRequestTypeDef

get_worker#

Grants permission to get a worker See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").get_worker method. boto3 documentation

# get_worker method definition

await def get_worker(
    self,
    *,
    id: str,
) -> GetWorkerResponseTypeDef:  # (1)
    ...
  1. See GetWorkerResponseTypeDef
# get_worker method usage example with argument unpacking

kwargs: GetWorkerRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.get_worker(**kwargs)
  1. See GetWorkerRequestRequestTypeDef

get_worker_fleet#

Grants permission to get a worker fleet See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").get_worker_fleet method. boto3 documentation

# get_worker_fleet method definition

await def get_worker_fleet(
    self,
    *,
    id: str,
) -> GetWorkerFleetResponseTypeDef:  # (1)
    ...
  1. See GetWorkerFleetResponseTypeDef
# get_worker_fleet method usage example with argument unpacking

kwargs: GetWorkerFleetRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.get_worker_fleet(**kwargs)
  1. See GetWorkerFleetRequestRequestTypeDef

list_destinations#

Grants permission to list destinations See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").list_destinations method. boto3 documentation

# list_destinations method definition

await def list_destinations(
    self,
    *,
    site: str,
    maxResults: int = ...,
    nextToken: str = ...,
    state: DestinationStateType = ...,  # (1)
) -> ListDestinationsResponseTypeDef:  # (2)
    ...
  1. See DestinationStateType
  2. See ListDestinationsResponseTypeDef
# list_destinations method usage example with argument unpacking

kwargs: ListDestinationsRequestRequestTypeDef = {  # (1)
    "site": ...,
}

parent.list_destinations(**kwargs)
  1. See ListDestinationsRequestRequestTypeDef

list_sites#

Grants permission to list sites See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").list_sites method. boto3 documentation

# list_sites method definition

await def list_sites(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListSitesResponseTypeDef:  # (1)
    ...
  1. See ListSitesResponseTypeDef
# list_sites method usage example with argument unpacking

kwargs: ListSitesRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_sites(**kwargs)
  1. See ListSitesRequestRequestTypeDef

list_worker_fleets#

Grants permission to list worker fleets See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").list_worker_fleets method. boto3 documentation

# list_worker_fleets method definition

await def list_worker_fleets(
    self,
    *,
    site: str,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListWorkerFleetsResponseTypeDef:  # (1)
    ...
  1. See ListWorkerFleetsResponseTypeDef
# list_worker_fleets method usage example with argument unpacking

kwargs: ListWorkerFleetsRequestRequestTypeDef = {  # (1)
    "site": ...,
}

parent.list_worker_fleets(**kwargs)
  1. See ListWorkerFleetsRequestRequestTypeDef

list_workers#

Grants permission to list workers See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").list_workers method. boto3 documentation

# list_workers method definition

await def list_workers(
    self,
    *,
    site: str,
    maxResults: int = ...,
    nextToken: str = ...,
    fleet: str = ...,
) -> ListWorkersResponseTypeDef:  # (1)
    ...
  1. See ListWorkersResponseTypeDef
# list_workers method usage example with argument unpacking

kwargs: ListWorkersRequestRequestTypeDef = {  # (1)
    "site": ...,
}

parent.list_workers(**kwargs)
  1. See ListWorkersRequestRequestTypeDef

update_destination#

Grants permission to update a destination See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").update_destination method. boto3 documentation

# update_destination method definition

await def update_destination(
    self,
    *,
    id: str,
    name: str = ...,
    state: DestinationStateType = ...,  # (1)
    additionalFixedProperties: str = ...,
) -> UpdateDestinationResponseTypeDef:  # (2)
    ...
  1. See DestinationStateType
  2. See UpdateDestinationResponseTypeDef
# update_destination method usage example with argument unpacking

kwargs: UpdateDestinationRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.update_destination(**kwargs)
  1. See UpdateDestinationRequestRequestTypeDef

update_site#

Grants permission to update a site See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").update_site method. boto3 documentation

# update_site method definition

await def update_site(
    self,
    *,
    id: str,
    name: str = ...,
    countryCode: str = ...,
    description: str = ...,
) -> UpdateSiteResponseTypeDef:  # (1)
    ...
  1. See UpdateSiteResponseTypeDef
# update_site method usage example with argument unpacking

kwargs: UpdateSiteRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.update_site(**kwargs)
  1. See UpdateSiteRequestRequestTypeDef

update_worker#

Grants permission to update a worker See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").update_worker method. boto3 documentation

# update_worker method definition

await def update_worker(
    self,
    *,
    id: str,
    name: str = ...,
    additionalTransientProperties: str = ...,
    additionalFixedProperties: str = ...,
    vendorProperties: VendorPropertiesTypeDef = ...,  # (1)
    position: PositionCoordinatesTypeDef = ...,  # (2)
    orientation: OrientationTypeDef = ...,  # (3)
) -> UpdateWorkerResponseTypeDef:  # (4)
    ...
  1. See VendorPropertiesTypeDef
  2. See PositionCoordinatesTypeDef
  3. See OrientationTypeDef
  4. See UpdateWorkerResponseTypeDef
# update_worker method usage example with argument unpacking

kwargs: UpdateWorkerRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.update_worker(**kwargs)
  1. See UpdateWorkerRequestRequestTypeDef

update_worker_fleet#

Grants permission to update a worker fleet See also: AWS API Documentation.

Type annotations and code completion for session.create_client("iot-roborunner").update_worker_fleet method. boto3 documentation

# update_worker_fleet method definition

await def update_worker_fleet(
    self,
    *,
    id: str,
    name: str = ...,
    additionalFixedProperties: str = ...,
) -> UpdateWorkerFleetResponseTypeDef:  # (1)
    ...
  1. See UpdateWorkerFleetResponseTypeDef
# update_worker_fleet method usage example with argument unpacking

kwargs: UpdateWorkerFleetRequestRequestTypeDef = {  # (1)
    "id": ...,
}

parent.update_worker_fleet(**kwargs)
  1. See UpdateWorkerFleetRequestRequestTypeDef

__aenter__#

Type annotations and code completion for session.create_client("iot-roborunner").__aenter__ method. boto3 documentation

# __aenter__ method definition

await def __aenter__(
    self,
) -> IoTRoboRunnerClient:
    ...

__aexit__#

Type annotations and code completion for session.create_client("iot-roborunner").__aexit__ method. boto3 documentation

# __aexit__ method definition

await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator#

Type annotations and code completion for session.create_client("iot-roborunner").get_paginator method with overloads.