#[non_exhaustive]pub struct SimulationApplicationConfigBuilder { /* private fields */ }
Expand description
A builder for SimulationApplicationConfig
.
Implementations§
source§impl SimulationApplicationConfigBuilder
impl SimulationApplicationConfigBuilder
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.
This field is required.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 application_version(self, input: impl Into<String>) -> Self
pub fn application_version(self, input: impl Into<String>) -> Self
The version of the simulation application.
sourcepub fn set_application_version(self, input: Option<String>) -> Self
pub fn set_application_version(self, input: Option<String>) -> Self
The version of the simulation application.
sourcepub fn get_application_version(&self) -> &Option<String>
pub fn get_application_version(&self) -> &Option<String>
The version of the simulation application.
sourcepub fn launch_config(self, input: LaunchConfig) -> Self
pub fn launch_config(self, input: LaunchConfig) -> Self
The launch configuration for the simulation application.
This field is required.sourcepub fn set_launch_config(self, input: Option<LaunchConfig>) -> Self
pub fn set_launch_config(self, input: Option<LaunchConfig>) -> Self
The launch configuration for the simulation application.
sourcepub fn get_launch_config(&self) -> &Option<LaunchConfig>
pub fn get_launch_config(&self) -> &Option<LaunchConfig>
The launch configuration for the simulation application.
sourcepub fn upload_configurations(self, input: UploadConfiguration) -> Self
pub fn upload_configurations(self, input: UploadConfiguration) -> Self
Appends an item to upload_configurations
.
To override the contents of this collection use set_upload_configurations
.
Information about upload configurations for the simulation application.
sourcepub fn set_upload_configurations(
self,
input: Option<Vec<UploadConfiguration>>
) -> Self
pub fn set_upload_configurations( self, input: Option<Vec<UploadConfiguration>> ) -> Self
Information about upload configurations for the simulation application.
sourcepub fn get_upload_configurations(&self) -> &Option<Vec<UploadConfiguration>>
pub fn get_upload_configurations(&self) -> &Option<Vec<UploadConfiguration>>
Information about upload configurations for the simulation application.
sourcepub fn world_configs(self, input: WorldConfig) -> Self
pub fn world_configs(self, input: WorldConfig) -> Self
Appends an item to world_configs
.
To override the contents of this collection use set_world_configs
.
A list of world configurations.
sourcepub fn set_world_configs(self, input: Option<Vec<WorldConfig>>) -> Self
pub fn set_world_configs(self, input: Option<Vec<WorldConfig>>) -> Self
A list of world configurations.
sourcepub fn get_world_configs(&self) -> &Option<Vec<WorldConfig>>
pub fn get_world_configs(&self) -> &Option<Vec<WorldConfig>>
A list of world configurations.
sourcepub fn use_default_upload_configurations(self, input: bool) -> Self
👎Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html.
pub fn use_default_upload_configurations(self, input: bool) -> Self
A Boolean indicating whether to use default upload configurations. By default, .ros
and .gazebo
files are uploaded when the application terminates and all ROS topics will be recorded.
If you set this value, you must specify an outputLocation
.
This API is no longer supported and will throw an error if used.
sourcepub fn set_use_default_upload_configurations(self, input: Option<bool>) -> Self
👎Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html.
pub fn set_use_default_upload_configurations(self, input: Option<bool>) -> Self
A Boolean indicating whether to use default upload configurations. By default, .ros
and .gazebo
files are uploaded when the application terminates and all ROS topics will be recorded.
If you set this value, you must specify an outputLocation
.
This API is no longer supported and will throw an error if used.
sourcepub fn get_use_default_upload_configurations(&self) -> &Option<bool>
👎Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html.
pub fn get_use_default_upload_configurations(&self) -> &Option<bool>
A Boolean indicating whether to use default upload configurations. By default, .ros
and .gazebo
files are uploaded when the application terminates and all ROS topics will be recorded.
If you set this value, you must specify an outputLocation
.
This API is no longer supported and will throw an error if used.
sourcepub fn tools(self, input: Tool) -> Self
pub fn tools(self, input: Tool) -> Self
Appends an item to tools
.
To override the contents of this collection use set_tools
.
Information about tools configured for the simulation application.
sourcepub fn set_tools(self, input: Option<Vec<Tool>>) -> Self
pub fn set_tools(self, input: Option<Vec<Tool>>) -> Self
Information about tools configured for the simulation application.
sourcepub fn get_tools(&self) -> &Option<Vec<Tool>>
pub fn get_tools(&self) -> &Option<Vec<Tool>>
Information about tools configured for the simulation application.
sourcepub fn use_default_tools(self, input: bool) -> Self
👎Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html.
pub fn use_default_tools(self, input: bool) -> Self
A Boolean indicating whether to use default simulation application tools. The default tools are rviz, rqt, terminal and rosbag record. The default is False
.
This API is no longer supported and will throw an error if used.
sourcepub fn set_use_default_tools(self, input: Option<bool>) -> Self
👎Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html.
pub fn set_use_default_tools(self, input: Option<bool>) -> Self
A Boolean indicating whether to use default simulation application tools. The default tools are rviz, rqt, terminal and rosbag record. The default is False
.
This API is no longer supported and will throw an error if used.
sourcepub fn get_use_default_tools(&self) -> &Option<bool>
👎Deprecated: AWS RoboMaker is ending support for ROS software suite. For additional information, see https://docs.aws.amazon.com/robomaker/latest/dg/software-support-policy.html.
pub fn get_use_default_tools(&self) -> &Option<bool>
A Boolean indicating whether to use default simulation application tools. The default tools are rviz, rqt, terminal and rosbag record. The default is False
.
This API is no longer supported and will throw an error if used.
sourcepub fn build(self) -> Result<SimulationApplicationConfig, BuildError>
pub fn build(self) -> Result<SimulationApplicationConfig, BuildError>
Consumes the builder and constructs a SimulationApplicationConfig
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for SimulationApplicationConfigBuilder
impl Clone for SimulationApplicationConfigBuilder
source§fn clone(&self) -> SimulationApplicationConfigBuilder
fn clone(&self) -> SimulationApplicationConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SimulationApplicationConfigBuilder
impl Default for SimulationApplicationConfigBuilder
source§fn default() -> SimulationApplicationConfigBuilder
fn default() -> SimulationApplicationConfigBuilder
source§impl PartialEq for SimulationApplicationConfigBuilder
impl PartialEq for SimulationApplicationConfigBuilder
source§fn eq(&self, other: &SimulationApplicationConfigBuilder) -> bool
fn eq(&self, other: &SimulationApplicationConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.