Skip to content

IoTFleetHubClient

Index > IoTFleetHub > IoTFleetHubClient

Auto-generated documentation for IoTFleetHub type annotations stubs module types-aiobotocore-iotfleethub.

IoTFleetHubClient

Type annotations and code completion for session.client("iotfleethub") boto3 documentation

Usage example
from aioboto3.session import Session
from types_aiobotocore_iotfleethub.client import IoTFleetHubClient

session = Session()
async with session.client("iotfleethub") as client:
    client: IoTFleetHubClient

Exceptions

aioboto3 client exceptions are generated in runtime. This class provides code completion for session.client("iotfleethub").exceptions structure.

Usage example
async with session.client("iotfleethub") as client:
    try:
        do_something(client)
    except (
            client.ClientError,
        client.ConflictException,
        client.InternalFailureException,
        client.InvalidRequestException,
        client.LimitExceededException,
        client.ResourceNotFoundException,
        client.ThrottlingException,
    ) as e:
        print(e)
Type checking example
from types_aiobotocore_iotfleethub.client import Exceptions

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

Methods

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for session.client("iotfleethub").can_paginate method. boto3 documentation

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

close

Closes underlying endpoint connections.

Type annotations and code completion for session.client("iotfleethub").close method. boto3 documentation

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

create_application

Creates a Fleet Hub for AWS IoT Device Management web application.

Type annotations and code completion for session.client("iotfleethub").create_application method. boto3 documentation

Method definition
await def create_application(
    self,
    *,
    applicationName: str,
    roleArn: str,
    applicationDescription: str = ...,
    clientToken: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateApplicationResponseTypeDef:  # (1)
    ...
  1. See CreateApplicationResponseTypeDef
Usage example with kwargs
kwargs: CreateApplicationRequestRequestTypeDef = {  # (1)
    "applicationName": ...,
    "roleArn": ...,
}

parent.create_application(**kwargs)
  1. See CreateApplicationRequestRequestTypeDef

delete_application

Deletes a Fleet Hub for AWS IoT Device Management web application.

Type annotations and code completion for session.client("iotfleethub").delete_application method. boto3 documentation

Method definition
await def delete_application(
    self,
    *,
    applicationId: str,
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DeleteApplicationRequestRequestTypeDef = {  # (1)
    "applicationId": ...,
}

parent.delete_application(**kwargs)
  1. See DeleteApplicationRequestRequestTypeDef

describe_application

Gets information about a Fleet Hub for AWS IoT Device Management web application.

Type annotations and code completion for session.client("iotfleethub").describe_application method. boto3 documentation

Method definition
await def describe_application(
    self,
    *,
    applicationId: str,
) -> DescribeApplicationResponseTypeDef:  # (1)
    ...
  1. See DescribeApplicationResponseTypeDef
Usage example with kwargs
kwargs: DescribeApplicationRequestRequestTypeDef = {  # (1)
    "applicationId": ...,
}

parent.describe_application(**kwargs)
  1. See DescribeApplicationRequestRequestTypeDef

generate_presigned_url

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

Type annotations and code completion for session.client("iotfleethub").generate_presigned_url method. boto3 documentation

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

list_applications

Gets a list of Fleet Hub for AWS IoT Device Management web applications for the current account.

Type annotations and code completion for session.client("iotfleethub").list_applications method. boto3 documentation

Method definition
await def list_applications(
    self,
    *,
    nextToken: str = ...,
) -> ListApplicationsResponseTypeDef:  # (1)
    ...
  1. See ListApplicationsResponseTypeDef
Usage example with kwargs
kwargs: ListApplicationsRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_applications(**kwargs)
  1. See ListApplicationsRequestRequestTypeDef

list_tags_for_resource

Lists the tags for the specified resource.

Type annotations and code completion for session.client("iotfleethub").list_tags_for_resource method. boto3 documentation

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

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

tag_resource

Adds to or modifies the tags of the specified resource.

Type annotations and code completion for session.client("iotfleethub").tag_resource method. boto3 documentation

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

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

untag_resource

Removes the specified tags (metadata) from the resource.

Type annotations and code completion for session.client("iotfleethub").untag_resource method. boto3 documentation

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

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

update_application

Updates information about a Fleet Hub for a AWS IoT Device Management web application.

Type annotations and code completion for session.client("iotfleethub").update_application method. boto3 documentation

Method definition
await def update_application(
    self,
    *,
    applicationId: str,
    applicationName: str = ...,
    applicationDescription: str = ...,
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: UpdateApplicationRequestRequestTypeDef = {  # (1)
    "applicationId": ...,
}

parent.update_application(**kwargs)
  1. See UpdateApplicationRequestRequestTypeDef

__aenter__

Type annotations and code completion for session.client("iotfleethub").__aenter__ method. boto3 documentation

Method definition
await def __aenter__(
    self,
) -> IoTFleetHubClient:
    ...

__aexit__

Type annotations and code completion for session.client("iotfleethub").__aexit__ method. boto3 documentation

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.client("iotfleethub").get_paginator method with overloads.