CfnFleetMixinProps
- class aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnFleetMixinProps(*, description=None, id=None, signal_catalog_arn=None, tags=None)
Bases:
objectProperties for CfnFleetPropsMixin.
- Parameters:
description (
Optional[str]) – A brief description of the fleet.id (
Optional[str]) – The unique ID of the fleet.signal_catalog_arn (
Optional[str]) – The ARN of the signal catalog associated with the fleet.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata that can be used to manage the fleet.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_iotfleetwise import mixins as iotfleetwise_mixins cfn_fleet_mixin_props = iotfleetwise_mixins.CfnFleetMixinProps( description="description", id="id", signal_catalog_arn="signalCatalogArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A brief description of the fleet.
- id
The unique ID of the fleet.
- signal_catalog_arn
The ARN of the signal catalog associated with the fleet.
- tags
Metadata that can be used to manage the fleet.