CfnFleetProps

class aws_cdk.aws_iotfleetwise.CfnFleetProps(*, id, signal_catalog_arn, description=None, tags=None)

Bases: object

Properties for defining a CfnFleet.

Parameters:
  • id (str) – The unique ID of the fleet.

  • signal_catalog_arn (str) – The ARN of the signal catalog associated with the fleet.

  • description (Optional[str]) – (Optional) A brief description of the fleet.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – (Optional) Metadata that can be used to manage the fleet.

Link:

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.
import aws_cdk.aws_iotfleetwise as iotfleetwise

cfn_fleet_props = iotfleetwise.CfnFleetProps(
    id="id",
    signal_catalog_arn="signalCatalogArn",

    # the properties below are optional
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

(Optional) A brief description of the fleet.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-description

id

The unique ID of the fleet.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-id

signal_catalog_arn

The ARN of the signal catalog associated with the fleet.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-signalcatalogarn

tags

(Optional) Metadata that can be used to manage the fleet.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html#cfn-iotfleetwise-fleet-tags