interface CfnFleetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnFleetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnFleetProps |
Java | software.amazon.awscdk.services.iotfleetwise.CfnFleetProps |
Python | aws_cdk.aws_iotfleetwise.CfnFleetProps |
TypeScript | aws-cdk-lib » aws_iotfleetwise » CfnFleetProps |
Properties for defining a CfnFleet.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-fleet.html
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
| Name | Type | Description |
|---|---|---|
| id | string | The unique ID of the fleet. |
| signal | string | The ARN of the signal catalog associated with the fleet. |
| description? | string | A brief description of the fleet. |
| tags? | Cfn[] | 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)
A brief description of the fleet.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the fleet.

.NET
Go
Java
Python
TypeScript