pub struct CreateRobotFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateRobot
.
Creates a robot.
This API is no longer supported and will throw an error if used.
Implementations§
source§impl CreateRobotFluentBuilder
impl CreateRobotFluentBuilder
sourcepub fn as_input(&self) -> &CreateRobotInputBuilder
pub fn as_input(&self) -> &CreateRobotInputBuilder
Access the CreateRobot as a reference.
sourcepub async fn send(
self
) -> Result<CreateRobotOutput, SdkError<CreateRobotError, HttpResponse>>
pub async fn send( self ) -> Result<CreateRobotOutput, SdkError<CreateRobotError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<CreateRobotOutput, CreateRobotError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateRobotOutput, CreateRobotError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn architecture(self, input: Architecture) -> Self
pub fn architecture(self, input: Architecture) -> Self
The target architecture of the robot.
sourcepub fn set_architecture(self, input: Option<Architecture>) -> Self
pub fn set_architecture(self, input: Option<Architecture>) -> Self
The target architecture of the robot.
sourcepub fn get_architecture(&self) -> &Option<Architecture>
pub fn get_architecture(&self) -> &Option<Architecture>
The target architecture of the robot.
sourcepub fn greengrass_group_id(self, input: impl Into<String>) -> Self
pub fn greengrass_group_id(self, input: impl Into<String>) -> Self
The Greengrass group id.
sourcepub fn set_greengrass_group_id(self, input: Option<String>) -> Self
pub fn set_greengrass_group_id(self, input: Option<String>) -> Self
The Greengrass group id.
sourcepub fn get_greengrass_group_id(&self) -> &Option<String>
pub fn get_greengrass_group_id(&self) -> &Option<String>
The Greengrass group id.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
A map that contains tag keys and tag values that are attached to the robot.
A map that contains tag keys and tag values that are attached to the robot.
A map that contains tag keys and tag values that are attached to the robot.
Trait Implementations§
source§impl Clone for CreateRobotFluentBuilder
impl Clone for CreateRobotFluentBuilder
source§fn clone(&self) -> CreateRobotFluentBuilder
fn clone(&self) -> CreateRobotFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more