Skip to content

IoTFleetWiseClient

Index > IoTFleetWise > IoTFleetWiseClient

Auto-generated documentation for IoTFleetWise type annotations stubs module mypy-boto3-iotfleetwise.

IoTFleetWiseClient

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

Usage example
from boto3.session import Session
from mypy_boto3_iotfleetwise.client import IoTFleetWiseClient

def get_iotfleetwise_client() -> IoTFleetWiseClient:
    return Session().client("iotfleetwise")

Exceptions

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

Usage example
client = boto3.client("iotfleetwise")

try:
    do_something(client)
except (
    client.AccessDeniedException,
    client.ClientError,
    client.ConflictException,
    client.DecoderManifestValidationException,
    client.InternalServerException,
    client.InvalidNodeException,
    client.InvalidSignalsException,
    client.LimitExceededException,
    client.ResourceNotFoundException,
    client.ThrottlingException,
    client.ValidationException,
) as e:
    print(e)
Type checking example
from mypy_boto3_iotfleetwise.client import Exceptions

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

Methods

associate_vehicle_fleet

Adds, or associates, a vehicle with a fleet.

Type annotations and code completion for boto3.client("iotfleetwise").associate_vehicle_fleet method. boto3 documentation

Method definition
def associate_vehicle_fleet(
    self,
    *,
    vehicleName: str,
    fleetId: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: AssociateVehicleFleetRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
    "fleetId": ...,
}

parent.associate_vehicle_fleet(**kwargs)
  1. See AssociateVehicleFleetRequestRequestTypeDef

batch_create_vehicle

Creates a group, or batch, of vehicles.

Type annotations and code completion for boto3.client("iotfleetwise").batch_create_vehicle method. boto3 documentation

Method definition
def batch_create_vehicle(
    self,
    *,
    vehicles: Sequence[CreateVehicleRequestItemTypeDef],  # (1)
) -> BatchCreateVehicleResponseTypeDef:  # (2)
    ...
  1. See CreateVehicleRequestItemTypeDef
  2. See BatchCreateVehicleResponseTypeDef
Usage example with kwargs
kwargs: BatchCreateVehicleRequestRequestTypeDef = {  # (1)
    "vehicles": ...,
}

parent.batch_create_vehicle(**kwargs)
  1. See BatchCreateVehicleRequestRequestTypeDef

batch_update_vehicle

Updates a group, or batch, of vehicles.

Type annotations and code completion for boto3.client("iotfleetwise").batch_update_vehicle method. boto3 documentation

Method definition
def batch_update_vehicle(
    self,
    *,
    vehicles: Sequence[UpdateVehicleRequestItemTypeDef],  # (1)
) -> BatchUpdateVehicleResponseTypeDef:  # (2)
    ...
  1. See UpdateVehicleRequestItemTypeDef
  2. See BatchUpdateVehicleResponseTypeDef
Usage example with kwargs
kwargs: BatchUpdateVehicleRequestRequestTypeDef = {  # (1)
    "vehicles": ...,
}

parent.batch_update_vehicle(**kwargs)
  1. See BatchUpdateVehicleRequestRequestTypeDef

can_paginate

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("iotfleetwise").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 boto3.client("iotfleetwise").close method. boto3 documentation

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

create_campaign

Creates an orchestration of data collection rules.

Type annotations and code completion for boto3.client("iotfleetwise").create_campaign method. boto3 documentation

Method definition
def create_campaign(
    self,
    *,
    name: str,
    signalCatalogArn: str,
    targetArn: str,
    collectionScheme: CollectionSchemeTypeDef,  # (1)
    description: str = ...,
    startTime: Union[datetime, str] = ...,
    expiryTime: Union[datetime, str] = ...,
    postTriggerCollectionDuration: int = ...,
    diagnosticsMode: DiagnosticsModeType = ...,  # (2)
    spoolingMode: SpoolingModeType = ...,  # (3)
    compression: CompressionType = ...,  # (4)
    priority: int = ...,
    signalsToCollect: Sequence[SignalInformationTypeDef] = ...,  # (5)
    dataExtraDimensions: Sequence[str] = ...,
    tags: Sequence[TagTypeDef] = ...,  # (6)
) -> CreateCampaignResponseTypeDef:  # (7)
    ...
  1. See CollectionSchemeTypeDef
  2. See DiagnosticsModeType
  3. See SpoolingModeType
  4. See CompressionType
  5. See SignalInformationTypeDef
  6. See TagTypeDef
  7. See CreateCampaignResponseTypeDef
Usage example with kwargs
kwargs: CreateCampaignRequestRequestTypeDef = {  # (1)
    "name": ...,
    "signalCatalogArn": ...,
    "targetArn": ...,
    "collectionScheme": ...,
}

parent.create_campaign(**kwargs)
  1. See CreateCampaignRequestRequestTypeDef

create_decoder_manifest

Creates the decoder manifest associated with a model manifest.

Type annotations and code completion for boto3.client("iotfleetwise").create_decoder_manifest method. boto3 documentation

Method definition
def create_decoder_manifest(
    self,
    *,
    name: str,
    modelManifestArn: str,
    description: str = ...,
    signalDecoders: Sequence[SignalDecoderTypeDef] = ...,  # (1)
    networkInterfaces: Sequence[NetworkInterfaceTypeDef] = ...,  # (2)
    tags: Sequence[TagTypeDef] = ...,  # (3)
) -> CreateDecoderManifestResponseTypeDef:  # (4)
    ...
  1. See SignalDecoderTypeDef
  2. See NetworkInterfaceTypeDef
  3. See TagTypeDef
  4. See CreateDecoderManifestResponseTypeDef
Usage example with kwargs
kwargs: CreateDecoderManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
    "modelManifestArn": ...,
}

parent.create_decoder_manifest(**kwargs)
  1. See CreateDecoderManifestRequestRequestTypeDef

create_fleet

Creates a fleet that represents a group of vehicles.

Type annotations and code completion for boto3.client("iotfleetwise").create_fleet method. boto3 documentation

Method definition
def create_fleet(
    self,
    *,
    fleetId: str,
    signalCatalogArn: str,
    description: str = ...,
    tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateFleetResponseTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateFleetResponseTypeDef
Usage example with kwargs
kwargs: CreateFleetRequestRequestTypeDef = {  # (1)
    "fleetId": ...,
    "signalCatalogArn": ...,
}

parent.create_fleet(**kwargs)
  1. See CreateFleetRequestRequestTypeDef

create_model_manifest

Creates a vehicle model (model manifest) that specifies signals (attributes, branches, sensors, and actuators).

Type annotations and code completion for boto3.client("iotfleetwise").create_model_manifest method. boto3 documentation

Method definition
def create_model_manifest(
    self,
    *,
    name: str,
    nodes: Sequence[str],
    signalCatalogArn: str,
    description: str = ...,
    tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateModelManifestResponseTypeDef:  # (2)
    ...
  1. See TagTypeDef
  2. See CreateModelManifestResponseTypeDef
Usage example with kwargs
kwargs: CreateModelManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
    "nodes": ...,
    "signalCatalogArn": ...,
}

parent.create_model_manifest(**kwargs)
  1. See CreateModelManifestRequestRequestTypeDef

create_signal_catalog

Creates a collection of standardized signals that can be reused to create vehicle models.

Type annotations and code completion for boto3.client("iotfleetwise").create_signal_catalog method. boto3 documentation

Method definition
def create_signal_catalog(
    self,
    *,
    name: str,
    description: str = ...,
    nodes: Sequence[NodeTypeDef] = ...,  # (1)
    tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateSignalCatalogResponseTypeDef:  # (3)
    ...
  1. See NodeTypeDef
  2. See TagTypeDef
  3. See CreateSignalCatalogResponseTypeDef
Usage example with kwargs
kwargs: CreateSignalCatalogRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.create_signal_catalog(**kwargs)
  1. See CreateSignalCatalogRequestRequestTypeDef

create_vehicle

Creates a vehicle, which is an instance of a vehicle model (model manifest).

Type annotations and code completion for boto3.client("iotfleetwise").create_vehicle method. boto3 documentation

Method definition
def create_vehicle(
    self,
    *,
    vehicleName: str,
    modelManifestArn: str,
    decoderManifestArn: str,
    attributes: Mapping[str, str] = ...,
    associationBehavior: VehicleAssociationBehaviorType = ...,  # (1)
    tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateVehicleResponseTypeDef:  # (3)
    ...
  1. See VehicleAssociationBehaviorType
  2. See TagTypeDef
  3. See CreateVehicleResponseTypeDef
Usage example with kwargs
kwargs: CreateVehicleRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
    "modelManifestArn": ...,
    "decoderManifestArn": ...,
}

parent.create_vehicle(**kwargs)
  1. See CreateVehicleRequestRequestTypeDef

delete_campaign

Deletes a data collection campaign.

Type annotations and code completion for boto3.client("iotfleetwise").delete_campaign method. boto3 documentation

Method definition
def delete_campaign(
    self,
    *,
    name: str,
) -> DeleteCampaignResponseTypeDef:  # (1)
    ...
  1. See DeleteCampaignResponseTypeDef
Usage example with kwargs
kwargs: DeleteCampaignRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.delete_campaign(**kwargs)
  1. See DeleteCampaignRequestRequestTypeDef

delete_decoder_manifest

Deletes a decoder manifest.

Type annotations and code completion for boto3.client("iotfleetwise").delete_decoder_manifest method. boto3 documentation

Method definition
def delete_decoder_manifest(
    self,
    *,
    name: str,
) -> DeleteDecoderManifestResponseTypeDef:  # (1)
    ...
  1. See DeleteDecoderManifestResponseTypeDef
Usage example with kwargs
kwargs: DeleteDecoderManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.delete_decoder_manifest(**kwargs)
  1. See DeleteDecoderManifestRequestRequestTypeDef

delete_fleet

Deletes a fleet.

Type annotations and code completion for boto3.client("iotfleetwise").delete_fleet method. boto3 documentation

Method definition
def delete_fleet(
    self,
    *,
    fleetId: str,
) -> DeleteFleetResponseTypeDef:  # (1)
    ...
  1. See DeleteFleetResponseTypeDef
Usage example with kwargs
kwargs: DeleteFleetRequestRequestTypeDef = {  # (1)
    "fleetId": ...,
}

parent.delete_fleet(**kwargs)
  1. See DeleteFleetRequestRequestTypeDef

delete_model_manifest

Deletes a vehicle model (model manifest).

Type annotations and code completion for boto3.client("iotfleetwise").delete_model_manifest method. boto3 documentation

Method definition
def delete_model_manifest(
    self,
    *,
    name: str,
) -> DeleteModelManifestResponseTypeDef:  # (1)
    ...
  1. See DeleteModelManifestResponseTypeDef
Usage example with kwargs
kwargs: DeleteModelManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.delete_model_manifest(**kwargs)
  1. See DeleteModelManifestRequestRequestTypeDef

delete_signal_catalog

Deletes a signal catalog.

Type annotations and code completion for boto3.client("iotfleetwise").delete_signal_catalog method. boto3 documentation

Method definition
def delete_signal_catalog(
    self,
    *,
    name: str,
) -> DeleteSignalCatalogResponseTypeDef:  # (1)
    ...
  1. See DeleteSignalCatalogResponseTypeDef
Usage example with kwargs
kwargs: DeleteSignalCatalogRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.delete_signal_catalog(**kwargs)
  1. See DeleteSignalCatalogRequestRequestTypeDef

delete_vehicle

Deletes a vehicle and removes it from any campaigns.

Type annotations and code completion for boto3.client("iotfleetwise").delete_vehicle method. boto3 documentation

Method definition
def delete_vehicle(
    self,
    *,
    vehicleName: str,
) -> DeleteVehicleResponseTypeDef:  # (1)
    ...
  1. See DeleteVehicleResponseTypeDef
Usage example with kwargs
kwargs: DeleteVehicleRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
}

parent.delete_vehicle(**kwargs)
  1. See DeleteVehicleRequestRequestTypeDef

disassociate_vehicle_fleet

Removes, or disassociates, a vehicle from a fleet.

Type annotations and code completion for boto3.client("iotfleetwise").disassociate_vehicle_fleet method. boto3 documentation

Method definition
def disassociate_vehicle_fleet(
    self,
    *,
    vehicleName: str,
    fleetId: str,
) -> Dict[str, Any]:
    ...
Usage example with kwargs
kwargs: DisassociateVehicleFleetRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
    "fleetId": ...,
}

parent.disassociate_vehicle_fleet(**kwargs)
  1. See DisassociateVehicleFleetRequestRequestTypeDef

generate_presigned_url

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

Type annotations and code completion for boto3.client("iotfleetwise").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:
    ...

get_campaign

Retrieves information about a campaign.

Type annotations and code completion for boto3.client("iotfleetwise").get_campaign method. boto3 documentation

Method definition
def get_campaign(
    self,
    *,
    name: str,
) -> GetCampaignResponseTypeDef:  # (1)
    ...
  1. See GetCampaignResponseTypeDef
Usage example with kwargs
kwargs: GetCampaignRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.get_campaign(**kwargs)
  1. See GetCampaignRequestRequestTypeDef

get_decoder_manifest

Retrieves information about a created decoder manifest.

Type annotations and code completion for boto3.client("iotfleetwise").get_decoder_manifest method. boto3 documentation

Method definition
def get_decoder_manifest(
    self,
    *,
    name: str,
) -> GetDecoderManifestResponseTypeDef:  # (1)
    ...
  1. See GetDecoderManifestResponseTypeDef
Usage example with kwargs
kwargs: GetDecoderManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.get_decoder_manifest(**kwargs)
  1. See GetDecoderManifestRequestRequestTypeDef

get_fleet

Retrieves information about a fleet.

Type annotations and code completion for boto3.client("iotfleetwise").get_fleet method. boto3 documentation

Method definition
def get_fleet(
    self,
    *,
    fleetId: str,
) -> GetFleetResponseTypeDef:  # (1)
    ...
  1. See GetFleetResponseTypeDef
Usage example with kwargs
kwargs: GetFleetRequestRequestTypeDef = {  # (1)
    "fleetId": ...,
}

parent.get_fleet(**kwargs)
  1. See GetFleetRequestRequestTypeDef

get_logging_options

Retrieves the logging options.

Type annotations and code completion for boto3.client("iotfleetwise").get_logging_options method. boto3 documentation

Method definition
def get_logging_options(
    self,
) -> GetLoggingOptionsResponseTypeDef:  # (1)
    ...
  1. See GetLoggingOptionsResponseTypeDef

get_model_manifest

Retrieves information about a vehicle model (model manifest).

Type annotations and code completion for boto3.client("iotfleetwise").get_model_manifest method. boto3 documentation

Method definition
def get_model_manifest(
    self,
    *,
    name: str,
) -> GetModelManifestResponseTypeDef:  # (1)
    ...
  1. See GetModelManifestResponseTypeDef
Usage example with kwargs
kwargs: GetModelManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.get_model_manifest(**kwargs)
  1. See GetModelManifestRequestRequestTypeDef

get_register_account_status

Retrieves information about the status of registering your Amazon Web Services account, IAM, and Amazon Timestream resources so that Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud.

Type annotations and code completion for boto3.client("iotfleetwise").get_register_account_status method. boto3 documentation

Method definition
def get_register_account_status(
    self,
) -> GetRegisterAccountStatusResponseTypeDef:  # (1)
    ...
  1. See GetRegisterAccountStatusResponseTypeDef

get_signal_catalog

Retrieves information about a signal catalog.

Type annotations and code completion for boto3.client("iotfleetwise").get_signal_catalog method. boto3 documentation

Method definition
def get_signal_catalog(
    self,
    *,
    name: str,
) -> GetSignalCatalogResponseTypeDef:  # (1)
    ...
  1. See GetSignalCatalogResponseTypeDef
Usage example with kwargs
kwargs: GetSignalCatalogRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.get_signal_catalog(**kwargs)
  1. See GetSignalCatalogRequestRequestTypeDef

get_vehicle

Retrieves information about a vehicle.

Type annotations and code completion for boto3.client("iotfleetwise").get_vehicle method. boto3 documentation

Method definition
def get_vehicle(
    self,
    *,
    vehicleName: str,
) -> GetVehicleResponseTypeDef:  # (1)
    ...
  1. See GetVehicleResponseTypeDef
Usage example with kwargs
kwargs: GetVehicleRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
}

parent.get_vehicle(**kwargs)
  1. See GetVehicleRequestRequestTypeDef

get_vehicle_status

Retrieves information about the status of a vehicle with any associated campaigns.

Type annotations and code completion for boto3.client("iotfleetwise").get_vehicle_status method. boto3 documentation

Method definition
def get_vehicle_status(
    self,
    *,
    vehicleName: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> GetVehicleStatusResponseTypeDef:  # (1)
    ...
  1. See GetVehicleStatusResponseTypeDef
Usage example with kwargs
kwargs: GetVehicleStatusRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
}

parent.get_vehicle_status(**kwargs)
  1. See GetVehicleStatusRequestRequestTypeDef

import_decoder_manifest

Creates a decoder manifest using your existing CAN DBC file from your local device.

Type annotations and code completion for boto3.client("iotfleetwise").import_decoder_manifest method. boto3 documentation

Method definition
def import_decoder_manifest(
    self,
    *,
    name: str,
    networkFileDefinitions: Sequence[NetworkFileDefinitionTypeDef],  # (1)
) -> ImportDecoderManifestResponseTypeDef:  # (2)
    ...
  1. See NetworkFileDefinitionTypeDef
  2. See ImportDecoderManifestResponseTypeDef
Usage example with kwargs
kwargs: ImportDecoderManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
    "networkFileDefinitions": ...,
}

parent.import_decoder_manifest(**kwargs)
  1. See ImportDecoderManifestRequestRequestTypeDef

import_signal_catalog

Creates a signal catalog using your existing VSS formatted content from your local device.

Type annotations and code completion for boto3.client("iotfleetwise").import_signal_catalog method. boto3 documentation

Method definition
def import_signal_catalog(
    self,
    *,
    name: str,
    description: str = ...,
    vss: FormattedVssTypeDef = ...,  # (1)
    tags: Sequence[TagTypeDef] = ...,  # (2)
) -> ImportSignalCatalogResponseTypeDef:  # (3)
    ...
  1. See FormattedVssTypeDef
  2. See TagTypeDef
  3. See ImportSignalCatalogResponseTypeDef
Usage example with kwargs
kwargs: ImportSignalCatalogRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.import_signal_catalog(**kwargs)
  1. See ImportSignalCatalogRequestRequestTypeDef

list_campaigns

Lists information about created campaigns.

Type annotations and code completion for boto3.client("iotfleetwise").list_campaigns method. boto3 documentation

Method definition
def list_campaigns(
    self,
    *,
    nextToken: str = ...,
    maxResults: int = ...,
    status: str = ...,
) -> ListCampaignsResponseTypeDef:  # (1)
    ...
  1. See ListCampaignsResponseTypeDef
Usage example with kwargs
kwargs: ListCampaignsRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_campaigns(**kwargs)
  1. See ListCampaignsRequestRequestTypeDef

list_decoder_manifest_network_interfaces

Lists the network interfaces specified in a decoder manifest.

Type annotations and code completion for boto3.client("iotfleetwise").list_decoder_manifest_network_interfaces method. boto3 documentation

Method definition
def list_decoder_manifest_network_interfaces(
    self,
    *,
    name: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListDecoderManifestNetworkInterfacesResponseTypeDef:  # (1)
    ...
  1. See ListDecoderManifestNetworkInterfacesResponseTypeDef
Usage example with kwargs
kwargs: ListDecoderManifestNetworkInterfacesRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.list_decoder_manifest_network_interfaces(**kwargs)
  1. See ListDecoderManifestNetworkInterfacesRequestRequestTypeDef

list_decoder_manifest_signals

A list of information about signal decoders specified in a decoder manifest.

Type annotations and code completion for boto3.client("iotfleetwise").list_decoder_manifest_signals method. boto3 documentation

Method definition
def list_decoder_manifest_signals(
    self,
    *,
    name: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListDecoderManifestSignalsResponseTypeDef:  # (1)
    ...
  1. See ListDecoderManifestSignalsResponseTypeDef
Usage example with kwargs
kwargs: ListDecoderManifestSignalsRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.list_decoder_manifest_signals(**kwargs)
  1. See ListDecoderManifestSignalsRequestRequestTypeDef

list_decoder_manifests

Lists decoder manifests.

Type annotations and code completion for boto3.client("iotfleetwise").list_decoder_manifests method. boto3 documentation

Method definition
def list_decoder_manifests(
    self,
    *,
    modelManifestArn: str = ...,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListDecoderManifestsResponseTypeDef:  # (1)
    ...
  1. See ListDecoderManifestsResponseTypeDef
Usage example with kwargs
kwargs: ListDecoderManifestsRequestRequestTypeDef = {  # (1)
    "modelManifestArn": ...,
}

parent.list_decoder_manifests(**kwargs)
  1. See ListDecoderManifestsRequestRequestTypeDef

list_fleets

Retrieves information for each created fleet in an Amazon Web Services account.

Type annotations and code completion for boto3.client("iotfleetwise").list_fleets method. boto3 documentation

Method definition
def list_fleets(
    self,
    *,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListFleetsResponseTypeDef:  # (1)
    ...
  1. See ListFleetsResponseTypeDef
Usage example with kwargs
kwargs: ListFleetsRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_fleets(**kwargs)
  1. See ListFleetsRequestRequestTypeDef

list_fleets_for_vehicle

Retrieves a list of IDs for all fleets that the vehicle is associated with.

Type annotations and code completion for boto3.client("iotfleetwise").list_fleets_for_vehicle method. boto3 documentation

Method definition
def list_fleets_for_vehicle(
    self,
    *,
    vehicleName: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListFleetsForVehicleResponseTypeDef:  # (1)
    ...
  1. See ListFleetsForVehicleResponseTypeDef
Usage example with kwargs
kwargs: ListFleetsForVehicleRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
}

parent.list_fleets_for_vehicle(**kwargs)
  1. See ListFleetsForVehicleRequestRequestTypeDef

list_model_manifest_nodes

Lists information about nodes specified in a vehicle model (model manifest).

Type annotations and code completion for boto3.client("iotfleetwise").list_model_manifest_nodes method. boto3 documentation

Method definition
def list_model_manifest_nodes(
    self,
    *,
    name: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListModelManifestNodesResponseTypeDef:  # (1)
    ...
  1. See ListModelManifestNodesResponseTypeDef
Usage example with kwargs
kwargs: ListModelManifestNodesRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.list_model_manifest_nodes(**kwargs)
  1. See ListModelManifestNodesRequestRequestTypeDef

list_model_manifests

Retrieves a list of vehicle models (model manifests).

Type annotations and code completion for boto3.client("iotfleetwise").list_model_manifests method. boto3 documentation

Method definition
def list_model_manifests(
    self,
    *,
    signalCatalogArn: str = ...,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListModelManifestsResponseTypeDef:  # (1)
    ...
  1. See ListModelManifestsResponseTypeDef
Usage example with kwargs
kwargs: ListModelManifestsRequestRequestTypeDef = {  # (1)
    "signalCatalogArn": ...,
}

parent.list_model_manifests(**kwargs)
  1. See ListModelManifestsRequestRequestTypeDef

list_signal_catalog_nodes

Lists of information about the signals (nodes) specified in a signal catalog.

Type annotations and code completion for boto3.client("iotfleetwise").list_signal_catalog_nodes method. boto3 documentation

Method definition
def list_signal_catalog_nodes(
    self,
    *,
    name: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListSignalCatalogNodesResponseTypeDef:  # (1)
    ...
  1. See ListSignalCatalogNodesResponseTypeDef
Usage example with kwargs
kwargs: ListSignalCatalogNodesRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.list_signal_catalog_nodes(**kwargs)
  1. See ListSignalCatalogNodesRequestRequestTypeDef

list_signal_catalogs

Lists all the created signal catalogs in an Amazon Web Services account.

Type annotations and code completion for boto3.client("iotfleetwise").list_signal_catalogs method. boto3 documentation

Method definition
def list_signal_catalogs(
    self,
    *,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListSignalCatalogsResponseTypeDef:  # (1)
    ...
  1. See ListSignalCatalogsResponseTypeDef
Usage example with kwargs
kwargs: ListSignalCatalogsRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_signal_catalogs(**kwargs)
  1. See ListSignalCatalogsRequestRequestTypeDef

list_tags_for_resource

Lists the tags (metadata) you have assigned to the resource.

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

Method definition
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

list_vehicles

Retrieves a list of summaries of created vehicles.

Type annotations and code completion for boto3.client("iotfleetwise").list_vehicles method. boto3 documentation

Method definition
def list_vehicles(
    self,
    *,
    modelManifestArn: str = ...,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListVehiclesResponseTypeDef:  # (1)
    ...
  1. See ListVehiclesResponseTypeDef
Usage example with kwargs
kwargs: ListVehiclesRequestRequestTypeDef = {  # (1)
    "modelManifestArn": ...,
}

parent.list_vehicles(**kwargs)
  1. See ListVehiclesRequestRequestTypeDef

list_vehicles_in_fleet

Retrieves a list of summaries of all vehicles associated with a fleet.

Type annotations and code completion for boto3.client("iotfleetwise").list_vehicles_in_fleet method. boto3 documentation

Method definition
def list_vehicles_in_fleet(
    self,
    *,
    fleetId: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListVehiclesInFleetResponseTypeDef:  # (1)
    ...
  1. See ListVehiclesInFleetResponseTypeDef
Usage example with kwargs
kwargs: ListVehiclesInFleetRequestRequestTypeDef = {  # (1)
    "fleetId": ...,
}

parent.list_vehicles_in_fleet(**kwargs)
  1. See ListVehiclesInFleetRequestRequestTypeDef

put_logging_options

Creates or updates the logging option.

Type annotations and code completion for boto3.client("iotfleetwise").put_logging_options method. boto3 documentation

Method definition
def put_logging_options(
    self,
    *,
    cloudWatchLogDelivery: CloudWatchLogDeliveryOptionsTypeDef,  # (1)
) -> Dict[str, Any]:
    ...
  1. See CloudWatchLogDeliveryOptionsTypeDef
Usage example with kwargs
kwargs: PutLoggingOptionsRequestRequestTypeDef = {  # (1)
    "cloudWatchLogDelivery": ...,
}

parent.put_logging_options(**kwargs)
  1. See PutLoggingOptionsRequestRequestTypeDef

register_account

Registers your Amazon Web Services account, IAM, and Amazon Timestream resources so Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud.

Type annotations and code completion for boto3.client("iotfleetwise").register_account method. boto3 documentation

Method definition
def register_account(
    self,
    *,
    timestreamResources: TimestreamResourcesTypeDef,  # (1)
    iamResources: IamResourcesTypeDef = ...,  # (2)
) -> RegisterAccountResponseTypeDef:  # (3)
    ...
  1. See TimestreamResourcesTypeDef
  2. See IamResourcesTypeDef
  3. See RegisterAccountResponseTypeDef
Usage example with kwargs
kwargs: RegisterAccountRequestRequestTypeDef = {  # (1)
    "timestreamResources": ...,
}

parent.register_account(**kwargs)
  1. See RegisterAccountRequestRequestTypeDef

tag_resource

Adds to or modifies the tags of the given resource.

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

Method definition
def tag_resource(
    self,
    *,
    ResourceARN: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> Dict[str, Any]:
    ...
  1. See TagTypeDef
Usage example with kwargs
kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "Tags": ...,
}

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

untag_resource

Removes the given tags (metadata) from the resource.

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

Method definition
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_campaign

Updates a campaign.

Type annotations and code completion for boto3.client("iotfleetwise").update_campaign method. boto3 documentation

Method definition
def update_campaign(
    self,
    *,
    name: str,
    action: UpdateCampaignActionType,  # (1)
    description: str = ...,
    dataExtraDimensions: Sequence[str] = ...,
) -> UpdateCampaignResponseTypeDef:  # (2)
    ...
  1. See UpdateCampaignActionType
  2. See UpdateCampaignResponseTypeDef
Usage example with kwargs
kwargs: UpdateCampaignRequestRequestTypeDef = {  # (1)
    "name": ...,
    "action": ...,
}

parent.update_campaign(**kwargs)
  1. See UpdateCampaignRequestRequestTypeDef

update_decoder_manifest

Updates a decoder manifest.

Type annotations and code completion for boto3.client("iotfleetwise").update_decoder_manifest method. boto3 documentation

Method definition
def update_decoder_manifest(
    self,
    *,
    name: str,
    description: str = ...,
    signalDecodersToAdd: Sequence[SignalDecoderTypeDef] = ...,  # (1)
    signalDecodersToUpdate: Sequence[SignalDecoderTypeDef] = ...,  # (1)
    signalDecodersToRemove: Sequence[str] = ...,
    networkInterfacesToAdd: Sequence[NetworkInterfaceTypeDef] = ...,  # (3)
    networkInterfacesToUpdate: Sequence[NetworkInterfaceTypeDef] = ...,  # (3)
    networkInterfacesToRemove: Sequence[str] = ...,
    status: ManifestStatusType = ...,  # (5)
) -> UpdateDecoderManifestResponseTypeDef:  # (6)
    ...
  1. See SignalDecoderTypeDef
  2. See SignalDecoderTypeDef
  3. See NetworkInterfaceTypeDef
  4. See NetworkInterfaceTypeDef
  5. See ManifestStatusType
  6. See UpdateDecoderManifestResponseTypeDef
Usage example with kwargs
kwargs: UpdateDecoderManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.update_decoder_manifest(**kwargs)
  1. See UpdateDecoderManifestRequestRequestTypeDef

update_fleet

Updates the description of an existing fleet.

Type annotations and code completion for boto3.client("iotfleetwise").update_fleet method. boto3 documentation

Method definition
def update_fleet(
    self,
    *,
    fleetId: str,
    description: str = ...,
) -> UpdateFleetResponseTypeDef:  # (1)
    ...
  1. See UpdateFleetResponseTypeDef
Usage example with kwargs
kwargs: UpdateFleetRequestRequestTypeDef = {  # (1)
    "fleetId": ...,
}

parent.update_fleet(**kwargs)
  1. See UpdateFleetRequestRequestTypeDef

update_model_manifest

Updates a vehicle model (model manifest).

Type annotations and code completion for boto3.client("iotfleetwise").update_model_manifest method. boto3 documentation

Method definition
def update_model_manifest(
    self,
    *,
    name: str,
    description: str = ...,
    nodesToAdd: Sequence[str] = ...,
    nodesToRemove: Sequence[str] = ...,
    status: ManifestStatusType = ...,  # (1)
) -> UpdateModelManifestResponseTypeDef:  # (2)
    ...
  1. See ManifestStatusType
  2. See UpdateModelManifestResponseTypeDef
Usage example with kwargs
kwargs: UpdateModelManifestRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.update_model_manifest(**kwargs)
  1. See UpdateModelManifestRequestRequestTypeDef

update_signal_catalog

Updates a signal catalog.

Type annotations and code completion for boto3.client("iotfleetwise").update_signal_catalog method. boto3 documentation

Method definition
def update_signal_catalog(
    self,
    *,
    name: str,
    description: str = ...,
    nodesToAdd: Sequence[NodeTypeDef] = ...,  # (1)
    nodesToUpdate: Sequence[NodeTypeDef] = ...,  # (1)
    nodesToRemove: Sequence[str] = ...,
) -> UpdateSignalCatalogResponseTypeDef:  # (3)
    ...
  1. See NodeTypeDef
  2. See NodeTypeDef
  3. See UpdateSignalCatalogResponseTypeDef
Usage example with kwargs
kwargs: UpdateSignalCatalogRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.update_signal_catalog(**kwargs)
  1. See UpdateSignalCatalogRequestRequestTypeDef

update_vehicle

Updates a vehicle.

Type annotations and code completion for boto3.client("iotfleetwise").update_vehicle method. boto3 documentation

Method definition
def update_vehicle(
    self,
    *,
    vehicleName: str,
    modelManifestArn: str = ...,
    decoderManifestArn: str = ...,
    attributes: Mapping[str, str] = ...,
    attributeUpdateMode: UpdateModeType = ...,  # (1)
) -> UpdateVehicleResponseTypeDef:  # (2)
    ...
  1. See UpdateModeType
  2. See UpdateVehicleResponseTypeDef
Usage example with kwargs
kwargs: UpdateVehicleRequestRequestTypeDef = {  # (1)
    "vehicleName": ...,
}

parent.update_vehicle(**kwargs)
  1. See UpdateVehicleRequestRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("iotfleetwise").get_paginator method with overloads.