aws-cdk-lib.aws_iotfleetwise.CfnFleetProps

interface CfnFleetProps

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnFleetProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnFleetProps
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnFleetProps
Pythonaws_cdk.aws_iotfleetwise.CfnFleetProps
TypeScript aws-cdk-lib » aws_iotfleetwise » CfnFleetProps

Properties for defining a CfnFleet.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const cfnFleetProps: iotfleetwise.CfnFleetProps = {
  id: 'id',
  signalCatalogArn: 'signalCatalogArn',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
idstringThe unique ID of the fleet.
signalCatalogArnstringThe ARN of the signal catalog associated with the fleet.
description?string(Optional) A brief description of the fleet.
tags?CfnTag[](Optional) Metadata that can be used to manage the fleet.

id

Type: string

The unique ID of the fleet.


signalCatalogArn

Type: string

The ARN of the signal catalog associated with the fleet.


description?

Type: string (optional)

(Optional) A brief description of the fleet.


tags?

Type: CfnTag[] (optional)

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