interface CfnFleetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnFleetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnFleetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnFleetMixinProps |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnFleetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnFleetMixinProps |
Properties for CfnFleetPropsMixin.
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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const cfnFleetMixinProps: iotfleetwise_mixins.CfnFleetMixinProps = {
description: 'description',
id: 'id',
signalCatalogArn: 'signalCatalogArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A brief description of the fleet. |
| id? | string | The unique ID of the fleet. |
| signal | string | The ARN of the signal catalog associated with the fleet. |
| tags? | Cfn[] | Metadata that can be used to manage the fleet. |
description?
Type:
string
(optional)
A brief description of the fleet.
id?
Type:
string
(optional)
The unique ID of the fleet.
signalCatalogArn?
Type:
string
(optional)
The ARN of the signal catalog associated with the fleet.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the fleet.

.NET
Go
Java
Python
TypeScript