interface CfnRobotProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.RoboMaker.CfnRobotProps | 
  Java | software.amazon.awscdk.services.robomaker.CfnRobotProps | 
  Python | aws_cdk.aws_robomaker.CfnRobotProps | 
  TypeScript  | @aws-cdk/aws-robomaker » CfnRobotProps | 
Properties for defining a CfnRobot.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as robomaker from '@aws-cdk/aws-robomaker';
const cfnRobotProps: robomaker.CfnRobotProps = {
  architecture: 'architecture',
  greengrassGroupId: 'greengrassGroupId',
  // the properties below are optional
  fleet: 'fleet',
  name: 'name',
  tags: {
    tagsKey: 'tags',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| architecture | string | The architecture of the robot. | 
| greengrass | string | The Greengrass group associated with the robot. | 
| fleet? | string | The Amazon Resource Name (ARN) of the fleet to which the robot will be registered. | 
| name? | string | The name of the robot. | 
| tags? | { [string]: string } | A map that contains tag keys and tag values that are attached to the robot. | 
architecture
Type:
string
The architecture of the robot.
greengrassGroupId
Type:
string
The Greengrass group associated with the robot.
fleet?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the fleet to which the robot will be registered.
name?
Type:
string
(optional)
The name of the robot.
tags?
Type:
{ [string]: string }
(optional)
A map that contains tag keys and tag values that are attached to the robot.

 .NET
 Java
 Python
 TypeScript