AWS Fundamentals Logo
AWS Fundamentals
AWS::RoboMaker::Robot

RoboMaker Robot

AWS::RoboMaker::Robot resource creates an AWS RoboMaker Robot.

Properties

5 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Architecture
string
RequiredCreate-only
GreengrassGroupId
string
RequiredCreate-only
Fleet
string
Create-only
Name
string
Create-only
Tags
Tags

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::RoboMaker::Robot

Resources:
  MyResource:
    Type: AWS::RoboMaker::Robot
    Properties:
      GreengrassGroupId: "my-greengrassgroupid"
      Architecture: "X86_64"
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

robomaker:CreateRobotrobomaker:RegisterRobot

read

robomaker:DescribeRobot

delete

robomaker:DescribeRobotrobomaker:DeleteRobotrobomaker:DeregisterRobot

list

robomaker:ListRobots

update

robomaker:TagResourcerobomaker:UntagResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceRoboMaker
Properties6
Required2
TaggingNot supported
Primary IDArn

Supported Operations

CreateReadDeleteListUpdate

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

GreengrassGroupIdNameArchitectureFleet

External Links