You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RoboMaker::Types::CreateRobotRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateRobotRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "Name", # required
  architecture: "X86_64", # required, accepts X86_64, ARM64, ARMHF
  greengrass_group_id: "Id", # required
  tags: {
    "TagKey" => "TagValue",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#architectureString

The target architecture of the robot.

Possible values:

  • X86_64
  • ARM64
  • ARMHF

Returns:

  • (String)

    The target architecture of the robot.

#greengrass_group_idString

The Greengrass group id.

Returns:

  • (String)

    The Greengrass group id.

#nameString

The name for the robot.

Returns:

  • (String)

    The name for the robot.

#tagsHash<String,String>

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

Returns:

  • (Hash<String,String>)

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