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