Interface CfnRobotProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRobotProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:26.183Z")
@Stability(Stable)
public interface CfnRobotProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.robomaker.*; CfnRobotProps cfnRobotProps = CfnRobotProps.builder() .architecture("architecture") .greengrassGroupId("greengrassGroupId") // the properties below are optional .fleet("fleet") .name("name") .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRobotProps
static final class
An implementation forCfnRobotProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRobotProps.Builder
builder()
The architecture of the robot.default String
getFleet()
The Amazon Resource Name (ARN) of the fleet to which the robot will be registered.The Greengrass group associated with the robot.default String
getName()
The name of the robot.getTags()
A map that contains tag keys and tag values that are attached to the robot.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArchitecture
The architecture of the robot.- See Also:
-
getGreengrassGroupId
The Greengrass group associated with the robot.- See Also:
-
getFleet
The Amazon Resource Name (ARN) of the fleet to which the robot will be registered.- See Also:
-
getName
The name of the robot.- See Also:
-
getTags
A map that contains tag keys and tag values that are attached to the robot.- See Also:
-
builder
- Returns:
- a
CfnRobotProps.Builder
ofCfnRobotProps
-