IoTWirelessClient#
Index > IoTWireless > IoTWirelessClient
Auto-generated documentation for IoTWireless type annotations stubs module mypy-boto3-iotwireless.
IoTWirelessClient#
Type annotations and code completion for boto3.client("iotwireless")
.
boto3 documentation
# IoTWirelessClient usage example
from boto3.session import Session
from mypy_boto3_iotwireless.client import IoTWirelessClient
def get_iotwireless_client() -> IoTWirelessClient:
return Session().client("iotwireless")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("iotwireless").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("iotwireless")
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.TooManyTagsException,
client.exceptions.ValidationException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_iotwireless.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
associate_aws_account_with_partner_account#
Associates a partner account with your AWS account.
Type annotations and code completion for boto3.client("iotwireless").associate_aws_account_with_partner_account
method.
boto3 documentation
# associate_aws_account_with_partner_account method definition
def associate_aws_account_with_partner_account(
self,
*,
Sidewalk: SidewalkAccountInfoTypeDef, # (1)
ClientRequestToken: str = ...,
Tags: Sequence[TagTypeDef] = ..., # (2)
) -> AssociateAwsAccountWithPartnerAccountResponseTypeDef: # (3)
...
- See SidewalkAccountInfoTypeDef
- See TagTypeDef
- See AssociateAwsAccountWithPartnerAccountResponseTypeDef
# associate_aws_account_with_partner_account method usage example with argument unpacking
kwargs: AssociateAwsAccountWithPartnerAccountRequestRequestTypeDef = { # (1)
"Sidewalk": ...,
}
parent.associate_aws_account_with_partner_account(**kwargs)
associate_multicast_group_with_fuota_task#
Associate a multicast group with a FUOTA task.
Type annotations and code completion for boto3.client("iotwireless").associate_multicast_group_with_fuota_task
method.
boto3 documentation
# associate_multicast_group_with_fuota_task method definition
def associate_multicast_group_with_fuota_task(
self,
*,
Id: str,
MulticastGroupId: str,
) -> Dict[str, Any]:
...
# associate_multicast_group_with_fuota_task method usage example with argument unpacking
kwargs: AssociateMulticastGroupWithFuotaTaskRequestRequestTypeDef = { # (1)
"Id": ...,
"MulticastGroupId": ...,
}
parent.associate_multicast_group_with_fuota_task(**kwargs)
associate_wireless_device_with_fuota_task#
Associate a wireless device with a FUOTA task.
Type annotations and code completion for boto3.client("iotwireless").associate_wireless_device_with_fuota_task
method.
boto3 documentation
# associate_wireless_device_with_fuota_task method definition
def associate_wireless_device_with_fuota_task(
self,
*,
Id: str,
WirelessDeviceId: str,
) -> Dict[str, Any]:
...
# associate_wireless_device_with_fuota_task method usage example with argument unpacking
kwargs: AssociateWirelessDeviceWithFuotaTaskRequestRequestTypeDef = { # (1)
"Id": ...,
"WirelessDeviceId": ...,
}
parent.associate_wireless_device_with_fuota_task(**kwargs)
associate_wireless_device_with_multicast_group#
Associates a wireless device with a multicast group.
Type annotations and code completion for boto3.client("iotwireless").associate_wireless_device_with_multicast_group
method.
boto3 documentation
# associate_wireless_device_with_multicast_group method definition
def associate_wireless_device_with_multicast_group(
self,
*,
Id: str,
WirelessDeviceId: str,
) -> Dict[str, Any]:
...
# associate_wireless_device_with_multicast_group method usage example with argument unpacking
kwargs: AssociateWirelessDeviceWithMulticastGroupRequestRequestTypeDef = { # (1)
"Id": ...,
"WirelessDeviceId": ...,
}
parent.associate_wireless_device_with_multicast_group(**kwargs)
associate_wireless_device_with_thing#
Associates a wireless device with a thing.
Type annotations and code completion for boto3.client("iotwireless").associate_wireless_device_with_thing
method.
boto3 documentation
# associate_wireless_device_with_thing method definition
def associate_wireless_device_with_thing(
self,
*,
Id: str,
ThingArn: str,
) -> Dict[str, Any]:
...
# associate_wireless_device_with_thing method usage example with argument unpacking
kwargs: AssociateWirelessDeviceWithThingRequestRequestTypeDef = { # (1)
"Id": ...,
"ThingArn": ...,
}
parent.associate_wireless_device_with_thing(**kwargs)
associate_wireless_gateway_with_certificate#
Associates a wireless gateway with a certificate.
Type annotations and code completion for boto3.client("iotwireless").associate_wireless_gateway_with_certificate
method.
boto3 documentation
# associate_wireless_gateway_with_certificate method definition
def associate_wireless_gateway_with_certificate(
self,
*,
Id: str,
IotCertificateId: str,
) -> AssociateWirelessGatewayWithCertificateResponseTypeDef: # (1)
...
# associate_wireless_gateway_with_certificate method usage example with argument unpacking
kwargs: AssociateWirelessGatewayWithCertificateRequestRequestTypeDef = { # (1)
"Id": ...,
"IotCertificateId": ...,
}
parent.associate_wireless_gateway_with_certificate(**kwargs)
associate_wireless_gateway_with_thing#
Associates a wireless gateway with a thing.
Type annotations and code completion for boto3.client("iotwireless").associate_wireless_gateway_with_thing
method.
boto3 documentation
# associate_wireless_gateway_with_thing method definition
def associate_wireless_gateway_with_thing(
self,
*,
Id: str,
ThingArn: str,
) -> Dict[str, Any]:
...
# associate_wireless_gateway_with_thing method usage example with argument unpacking
kwargs: AssociateWirelessGatewayWithThingRequestRequestTypeDef = { # (1)
"Id": ...,
"ThingArn": ...,
}
parent.associate_wireless_gateway_with_thing(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("iotwireless").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
cancel_multicast_group_session#
Cancels an existing multicast group session.
Type annotations and code completion for boto3.client("iotwireless").cancel_multicast_group_session
method.
boto3 documentation
# cancel_multicast_group_session method definition
def cancel_multicast_group_session(
self,
*,
Id: str,
) -> Dict[str, Any]:
...
# cancel_multicast_group_session method usage example with argument unpacking
kwargs: CancelMulticastGroupSessionRequestRequestTypeDef = { # (1)
"Id": ...,
}
parent.cancel_multicast_group_session(**kwargs)
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("iotwireless").close
method.