aws-cdk-lib.aws_robomaker.CfnRobotProps

interface CfnRobotProps

LanguageType name
.NETAmazon.CDK.AWS.RoboMaker.CfnRobotProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrobomaker#CfnRobotProps
Javasoftware.amazon.awscdk.services.robomaker.CfnRobotProps
Pythonaws_cdk.aws_robomaker.CfnRobotProps
TypeScript aws-cdk-lib » 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 { aws_robomaker as robomaker } from 'aws-cdk-lib';
const cfnRobotProps: robomaker.CfnRobotProps = {
  architecture: 'architecture',
  greengrassGroupId: 'greengrassGroupId',

  // the properties below are optional
  fleet: 'fleet',
  name: 'name',
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
architecturestringThe architecture of the robot.
greengrassGroupIdstringThe Greengrass group associated with the robot.
fleet?stringThe Amazon Resource Name (ARN) of the fleet to which the robot will be registered.
name?stringThe 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.