interface RobotSoftwareSuiteProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RoboMaker.CfnRobotApplicationPropsMixin.RobotSoftwareSuiteProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrobomaker#CfnRobotApplicationPropsMixin_RobotSoftwareSuiteProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.robomaker.CfnRobotApplicationPropsMixin.RobotSoftwareSuiteProperty |
Python | aws_cdk.cfn_property_mixins.aws_robomaker.CfnRobotApplicationPropsMixin.RobotSoftwareSuiteProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_robomaker » CfnRobotApplicationPropsMixin » RobotSoftwareSuiteProperty |
Information about a robot software suite.
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 robotSoftwareSuiteProperty: robomaker.CfnRobotApplicationPropsMixin.RobotSoftwareSuiteProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the robot software suite. |
| version? | string | The version of the robot software suite. |
name?
Type:
string
(optional)
The name of the robot software suite.
General is the only supported value.
version?
Type:
string
(optional)
The version of the robot software suite.
Not applicable for General software suite.

.NET
Go
Java
Python
TypeScript