#[non_exhaustive]pub struct RobotApplicationConfigBuilder { /* private fields */ }
Expand description
A builder for RobotApplicationConfig
.
Implementations§
source§impl RobotApplicationConfigBuilder
impl RobotApplicationConfigBuilder
sourcepub fn application(self, input: impl Into<String>) -> Self
pub fn application(self, input: impl Into<String>) -> Self
The application information for the robot 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 robot application.
sourcepub fn get_application(&self) -> &Option<String>
pub fn get_application(&self) -> &Option<String>
The application information for the robot 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 robot 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 robot application.
sourcepub fn get_application_version(&self) -> &Option<String>
pub fn get_application_version(&self) -> &Option<String>
The version of the robot application.
sourcepub fn launch_config(self, input: LaunchConfig) -> Self
pub fn launch_config(self, input: LaunchConfig) -> Self
The launch configuration for the robot 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 robot application.
sourcepub fn get_launch_config(&self) -> &Option<LaunchConfig>
pub fn get_launch_config(&self) -> &Option<LaunchConfig>
The launch configuration for the robot 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
.
The upload configurations for the robot application.
sourcepub fn set_upload_configurations(
self,
input: Option<Vec<UploadConfiguration>>
) -> Self
pub fn set_upload_configurations( self, input: Option<Vec<UploadConfiguration>> ) -> Self
The upload configurations for the robot application.
sourcepub fn get_upload_configurations(&self) -> &Option<Vec<UploadConfiguration>>
pub fn get_upload_configurations(&self) -> &Option<Vec<UploadConfiguration>>
The upload configurations for the robot application.
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 robot 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 robot application.
sourcepub fn get_tools(&self) -> &Option<Vec<Tool>>
pub fn get_tools(&self) -> &Option<Vec<Tool>>
Information about tools configured for the robot 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 robot 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 robot 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 robot 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<RobotApplicationConfig, BuildError>
pub fn build(self) -> Result<RobotApplicationConfig, BuildError>
Consumes the builder and constructs a RobotApplicationConfig
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RobotApplicationConfigBuilder
impl Clone for RobotApplicationConfigBuilder
source§fn clone(&self) -> RobotApplicationConfigBuilder
fn clone(&self) -> RobotApplicationConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for RobotApplicationConfigBuilder
impl Default for RobotApplicationConfigBuilder
source§fn default() -> RobotApplicationConfigBuilder
fn default() -> RobotApplicationConfigBuilder
source§impl PartialEq for RobotApplicationConfigBuilder
impl PartialEq for RobotApplicationConfigBuilder
source§fn eq(&self, other: &RobotApplicationConfigBuilder) -> bool
fn eq(&self, other: &RobotApplicationConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.