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.
- Link:
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. import aws_cdk.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.
- fleet
The Amazon Resource Name (ARN) of the fleet to which the robot will be registered.
- greengrass_group_id
The Greengrass group associated with the robot.
- name
The name of the robot.
- tags
A map that contains tag keys and tag values that are attached to the robot.