CfnRobotProps

class aws_cdk.aws_robomaker.CfnRobotProps(*, architecture, greengrass_group_id, fleet=None, name=None, tags=None)

Bases: object

Properties for defining a CfnRobot.

Parameters:
  • architecture (str) – The architecture of the robot.

  • greengrass_group_id (str) – The Greengrass group associated with the robot.

  • fleet (Optional[str]) – The Amazon Resource Name (ARN) of the fleet to which the robot will be registered.

  • name (Optional[str]) – The name of the robot.

  • tags (Optional[Mapping[str, str]]) – A map that contains tag keys and tag values that are attached to the robot.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_robomaker as robomaker

cfn_robot_props = robomaker.CfnRobotProps(
    architecture="architecture",
    greengrass_group_id="greengrassGroupId",

    # the properties below are optional
    fleet="fleet",
    name="name",
    tags={
        "tags_key": "tags"
    }
)

Attributes

architecture

The architecture of the robot.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-architecture

fleet

The Amazon Resource Name (ARN) of the fleet to which the robot will be registered.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-fleet

greengrass_group_id

The Greengrass group associated with the robot.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-greengrassgroupid

name

The name of the robot.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-name

tags

A map that contains tag keys and tag values that are attached to the robot.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#cfn-robomaker-robot-tags