batch_create_vehicle
(**kwargs)¶Creates a group, or batch, of vehicles.
Note
You must specify a decoder manifest and a vehicle model (model manifest) for each vehicle.
For more information, see Create multiple vehicles (AWS CLI) in the Amazon Web Services IoT FleetWise Developer Guide .
See also: AWS API Documentation
Request Syntax
response = client.batch_create_vehicle(
vehicles=[
{
'vehicleName': 'string',
'modelManifestArn': 'string',
'decoderManifestArn': 'string',
'attributes': {
'string': 'string'
},
'associationBehavior': 'CreateIotThing'|'ValidateIotThingExists',
'tags': [
{
'Key': 'string',
'Value': 'string'
},
]
},
]
)
[REQUIRED]
A list of information about each vehicle to create. For more information, see the API data type.
Information about the vehicle to create.
The unique ID of the vehicle to create.
The ARN of the vehicle model (model manifest) to create the vehicle from.
The Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.
Static information about a vehicle in a key-value pair. For example: "engine Type"
: "v6"
An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.
Metadata which can be used to manage the vehicle.
A set of key/value pairs that are used to manage the resource.
The tag's key.
The tag's value.
{
'vehicles': [
{
'vehicleName': 'string',
'arn': 'string',
'thingArn': 'string'
},
],
'errors': [
{
'vehicleName': 'string',
'code': 'string',
'message': 'string'
},
]
}
Response Structure
A list of information about a batch of created vehicles. For more information, see the API data type.
Information about a created vehicle.
The unique ID of the vehicle to create.
The ARN of the created vehicle.
The ARN of a created or validated Amazon Web Services IoT thing.
A list of information about creation errors, or an empty list if there aren't any errors.
An HTTP error resulting from creating a vehicle.
The ID of the vehicle with the error.
An HTTP error code.
A description of the HTTP error.
Exceptions
IoTFleetWise.Client.exceptions.InternalServerException
IoTFleetWise.Client.exceptions.LimitExceededException
IoTFleetWise.Client.exceptions.ThrottlingException
IoTFleetWise.Client.exceptions.ValidationException
IoTFleetWise.Client.exceptions.AccessDeniedException