Struct aws_sdk_robomaker::operation::update_simulation_application::builders::UpdateSimulationApplicationFluentBuilder
source · pub struct UpdateSimulationApplicationFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateSimulationApplication
.
Updates a simulation application.
Implementations§
source§impl UpdateSimulationApplicationFluentBuilder
impl UpdateSimulationApplicationFluentBuilder
sourcepub fn as_input(&self) -> &UpdateSimulationApplicationInputBuilder
pub fn as_input(&self) -> &UpdateSimulationApplicationInputBuilder
Access the UpdateSimulationApplication as a reference.
sourcepub async fn send(
self
) -> Result<UpdateSimulationApplicationOutput, SdkError<UpdateSimulationApplicationError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateSimulationApplicationOutput, SdkError<UpdateSimulationApplicationError, 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<UpdateSimulationApplicationOutput, UpdateSimulationApplicationError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateSimulationApplicationOutput, UpdateSimulationApplicationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn application(self, input: impl Into<String>) -> Self
pub fn application(self, input: impl Into<String>) -> Self
The application information for the simulation application.
sourcepub fn set_application(self, input: Option<String>) -> Self
pub fn set_application(self, input: Option<String>) -> Self
The application information for the simulation application.
sourcepub fn get_application(&self) -> &Option<String>
pub fn get_application(&self) -> &Option<String>
The application information for the simulation application.
sourcepub fn sources(self, input: SourceConfig) -> Self
pub fn sources(self, input: SourceConfig) -> Self
Appends an item to sources
.
To override the contents of this collection use set_sources
.
The sources of the simulation application.
sourcepub fn set_sources(self, input: Option<Vec<SourceConfig>>) -> Self
pub fn set_sources(self, input: Option<Vec<SourceConfig>>) -> Self
The sources of the simulation application.
sourcepub fn get_sources(&self) -> &Option<Vec<SourceConfig>>
pub fn get_sources(&self) -> &Option<Vec<SourceConfig>>
The sources of the simulation application.
sourcepub fn simulation_software_suite(self, input: SimulationSoftwareSuite) -> Self
pub fn simulation_software_suite(self, input: SimulationSoftwareSuite) -> Self
The simulation software suite used by the simulation application.
sourcepub fn set_simulation_software_suite(
self,
input: Option<SimulationSoftwareSuite>
) -> Self
pub fn set_simulation_software_suite( self, input: Option<SimulationSoftwareSuite> ) -> Self
The simulation software suite used by the simulation application.
sourcepub fn get_simulation_software_suite(&self) -> &Option<SimulationSoftwareSuite>
pub fn get_simulation_software_suite(&self) -> &Option<SimulationSoftwareSuite>
The simulation software suite used by the simulation application.
sourcepub fn robot_software_suite(self, input: RobotSoftwareSuite) -> Self
pub fn robot_software_suite(self, input: RobotSoftwareSuite) -> Self
Information about the robot software suite (ROS distribution).
sourcepub fn set_robot_software_suite(self, input: Option<RobotSoftwareSuite>) -> Self
pub fn set_robot_software_suite(self, input: Option<RobotSoftwareSuite>) -> Self
Information about the robot software suite (ROS distribution).
sourcepub fn get_robot_software_suite(&self) -> &Option<RobotSoftwareSuite>
pub fn get_robot_software_suite(&self) -> &Option<RobotSoftwareSuite>
Information about the robot software suite (ROS distribution).
sourcepub fn rendering_engine(self, input: RenderingEngine) -> Self
pub fn rendering_engine(self, input: RenderingEngine) -> Self
The rendering engine for the simulation application.
sourcepub fn set_rendering_engine(self, input: Option<RenderingEngine>) -> Self
pub fn set_rendering_engine(self, input: Option<RenderingEngine>) -> Self
The rendering engine for the simulation application.
sourcepub fn get_rendering_engine(&self) -> &Option<RenderingEngine>
pub fn get_rendering_engine(&self) -> &Option<RenderingEngine>
The rendering engine for the simulation application.
sourcepub fn current_revision_id(self, input: impl Into<String>) -> Self
pub fn current_revision_id(self, input: impl Into<String>) -> Self
The revision id for the robot application.
sourcepub fn set_current_revision_id(self, input: Option<String>) -> Self
pub fn set_current_revision_id(self, input: Option<String>) -> Self
The revision id for the robot application.
sourcepub fn get_current_revision_id(&self) -> &Option<String>
pub fn get_current_revision_id(&self) -> &Option<String>
The revision id for the robot application.
sourcepub fn environment(self, input: Environment) -> Self
pub fn environment(self, input: Environment) -> Self
The object that contains the Docker image URI for your simulation application.
sourcepub fn set_environment(self, input: Option<Environment>) -> Self
pub fn set_environment(self, input: Option<Environment>) -> Self
The object that contains the Docker image URI for your simulation application.
sourcepub fn get_environment(&self) -> &Option<Environment>
pub fn get_environment(&self) -> &Option<Environment>
The object that contains the Docker image URI for your simulation application.
Trait Implementations§
source§impl Clone for UpdateSimulationApplicationFluentBuilder
impl Clone for UpdateSimulationApplicationFluentBuilder
source§fn clone(&self) -> UpdateSimulationApplicationFluentBuilder
fn clone(&self) -> UpdateSimulationApplicationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more