#[non_exhaustive]pub struct DeploymentApplicationConfigBuilder { /* private fields */ }Expand description
A builder for DeploymentApplicationConfig.
Implementations§
source§impl DeploymentApplicationConfigBuilder
impl DeploymentApplicationConfigBuilder
sourcepub fn application(self, input: impl Into<String>) -> Self
pub fn application(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the robot application.
sourcepub fn set_application(self, input: Option<String>) -> Self
pub fn set_application(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the robot application.
sourcepub fn get_application(&self) -> &Option<String>
pub fn get_application(&self) -> &Option<String>
The Amazon Resource Name (ARN) of 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 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 application.
sourcepub fn get_application_version(&self) -> &Option<String>
pub fn get_application_version(&self) -> &Option<String>
The version of the application.
sourcepub fn launch_config(self, input: DeploymentLaunchConfig) -> Self
pub fn launch_config(self, input: DeploymentLaunchConfig) -> Self
The launch configuration.
sourcepub fn set_launch_config(self, input: Option<DeploymentLaunchConfig>) -> Self
pub fn set_launch_config(self, input: Option<DeploymentLaunchConfig>) -> Self
The launch configuration.
sourcepub fn get_launch_config(&self) -> &Option<DeploymentLaunchConfig>
pub fn get_launch_config(&self) -> &Option<DeploymentLaunchConfig>
The launch configuration.
sourcepub fn build(self) -> DeploymentApplicationConfig
pub fn build(self) -> DeploymentApplicationConfig
Consumes the builder and constructs a DeploymentApplicationConfig.
Trait Implementations§
source§impl Clone for DeploymentApplicationConfigBuilder
impl Clone for DeploymentApplicationConfigBuilder
source§fn clone(&self) -> DeploymentApplicationConfigBuilder
fn clone(&self) -> DeploymentApplicationConfigBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for DeploymentApplicationConfigBuilder
impl Default for DeploymentApplicationConfigBuilder
source§fn default() -> DeploymentApplicationConfigBuilder
fn default() -> DeploymentApplicationConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeploymentApplicationConfigBuilder
impl PartialEq for DeploymentApplicationConfigBuilder
source§fn eq(&self, other: &DeploymentApplicationConfigBuilder) -> bool
fn eq(&self, other: &DeploymentApplicationConfigBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeploymentApplicationConfigBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeploymentApplicationConfigBuilder
impl Send for DeploymentApplicationConfigBuilder
impl Sync for DeploymentApplicationConfigBuilder
impl Unpin for DeploymentApplicationConfigBuilder
impl UnwindSafe for DeploymentApplicationConfigBuilder
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
Mutably borrows from an owned value. Read more