interface CfnRobotApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RoboMaker.CfnRobotApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrobomaker#CfnRobotApplicationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.robomaker.CfnRobotApplicationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_robomaker.CfnRobotApplicationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_robomaker » CfnRobotApplicationMixinProps |
Properties for CfnRobotApplicationPropsMixin.
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 cfnRobotApplicationMixinProps: robomaker.CfnRobotApplicationMixinProps = {
currentRevisionId: 'currentRevisionId',
environment: 'environment',
name: 'name',
robotSoftwareSuite: {
name: 'name',
version: 'version',
},
sources: [{
architecture: 'architecture',
s3Bucket: 's3Bucket',
s3Key: 's3Key',
}],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| current | string | The current revision id. |
| environment? | string | The environment of the robot application. |
| name? | string | The name of the robot application. |
| robot | IResolvable | Robot | The robot software suite used by the robot application. |
| sources? | IResolvable | (IResolvable | Source)[] | The sources of the robot application. |
| tags? | { [string]: string } | A map that contains tag keys and tag values that are attached to the robot application. |
currentRevisionId?
Type:
string
(optional)
The current revision id.
environment?
Type:
string
(optional)
The environment of the robot application.
name?
Type:
string
(optional)
The name of the robot application.
robotSoftwareSuite?
Type:
IResolvable | Robot
(optional)
The robot software suite used by the robot application.
sources?
Type:
IResolvable | (IResolvable | Source)[]
(optional)
The sources of the robot application.
tags?
Type:
{ [string]: string }
(optional)
A map that contains tag keys and tag values that are attached to the robot application.

.NET
Go
Java
Python
TypeScript