interface CfnFleetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnFleetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnFleetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnFleetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnFleetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » 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 { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const cfnFleetMixinProps: iotfleetwise.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