interface CfnFleetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RoboMaker.Mixins.CfnFleetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrobomaker/mixins#CfnFleetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.robomaker.mixins.CfnFleetMixinProps |
Python | aws_cdk.mixins_preview.aws_robomaker.mixins.CfnFleetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_robomaker » mixins » CfnFleetMixinProps |
Properties for CfnFleetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-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 robomaker_mixins } from '@aws-cdk/mixins-preview/aws-robomaker';
const cfnFleetMixinProps: robomaker_mixins.CfnFleetMixinProps = {
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the fleet. |
| tags? | { [string]: string } | The list of all tags added to the fleet. |
name?
Type:
string
(optional)
The name of the fleet.
tags?
Type:
{ [string]: string }
(optional)
The list of all tags added to the fleet.

.NET
Go
Java
Python
TypeScript