Struct aws_sdk_robomaker::operation::create_simulation_application::builders::CreateSimulationApplicationInputBuilder
source · #[non_exhaustive]pub struct CreateSimulationApplicationInputBuilder { /* private fields */ }Expand description
A builder for CreateSimulationApplicationInput.
Implementations§
source§impl CreateSimulationApplicationInputBuilder
impl CreateSimulationApplicationInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the simulation application.
This field is required.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.
This field is required.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
The robot software suite (ROS distribution) used by the simulation application.
This field is required.sourcepub fn set_robot_software_suite(self, input: Option<RobotSoftwareSuite>) -> Self
pub fn set_robot_software_suite(self, input: Option<RobotSoftwareSuite>) -> Self
The robot software suite (ROS distribution) used by the simulation application.
sourcepub fn get_robot_software_suite(&self) -> &Option<RobotSoftwareSuite>
pub fn get_robot_software_suite(&self) -> &Option<RobotSoftwareSuite>
The robot software suite (ROS distribution) used by the simulation application.
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.
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 simulation application.
A map that contains tag keys and tag values that are attached to the simulation application.
A map that contains tag keys and tag values that are attached to the simulation application.
sourcepub fn environment(self, input: Environment) -> Self
pub fn environment(self, input: Environment) -> Self
The object that contains the Docker image URI used to create 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 used to create 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 used to create your simulation application.
sourcepub fn build(self) -> Result<CreateSimulationApplicationInput, BuildError>
pub fn build(self) -> Result<CreateSimulationApplicationInput, BuildError>
Consumes the builder and constructs a CreateSimulationApplicationInput.
source§impl CreateSimulationApplicationInputBuilder
impl CreateSimulationApplicationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateSimulationApplicationOutput, SdkError<CreateSimulationApplicationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateSimulationApplicationOutput, SdkError<CreateSimulationApplicationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateSimulationApplicationInputBuilder
impl Clone for CreateSimulationApplicationInputBuilder
source§fn clone(&self) -> CreateSimulationApplicationInputBuilder
fn clone(&self) -> CreateSimulationApplicationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateSimulationApplicationInputBuilder
impl Default for CreateSimulationApplicationInputBuilder
source§fn default() -> CreateSimulationApplicationInputBuilder
fn default() -> CreateSimulationApplicationInputBuilder
source§impl PartialEq for CreateSimulationApplicationInputBuilder
impl PartialEq for CreateSimulationApplicationInputBuilder
source§fn eq(&self, other: &CreateSimulationApplicationInputBuilder) -> bool
fn eq(&self, other: &CreateSimulationApplicationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateSimulationApplicationInputBuilder
Auto Trait Implementations§
impl Freeze for CreateSimulationApplicationInputBuilder
impl RefUnwindSafe for CreateSimulationApplicationInputBuilder
impl Send for CreateSimulationApplicationInputBuilder
impl Sync for CreateSimulationApplicationInputBuilder
impl Unpin for CreateSimulationApplicationInputBuilder
impl UnwindSafe for CreateSimulationApplicationInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more