Struct aws_sdk_resiliencehub::operation::update_app_version::builders::UpdateAppVersionOutputBuilder
source · #[non_exhaustive]pub struct UpdateAppVersionOutputBuilder { /* private fields */ }Expand description
A builder for UpdateAppVersionOutput.
Implementations§
source§impl UpdateAppVersionOutputBuilder
impl UpdateAppVersionOutputBuilder
sourcepub fn app_arn(self, input: impl Into<String>) -> Self
pub fn app_arn(self, input: impl Into<String>) -> Self
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
sourcepub fn set_app_arn(self, input: Option<String>) -> Self
pub fn set_app_arn(self, input: Option<String>) -> Self
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
sourcepub fn get_app_arn(&self) -> &Option<String>
pub fn get_app_arn(&self) -> &Option<String>
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
sourcepub fn app_version(self, input: impl Into<String>) -> Self
pub fn app_version(self, input: impl Into<String>) -> Self
Resilience Hub application version.
This field is required.sourcepub fn set_app_version(self, input: Option<String>) -> Self
pub fn set_app_version(self, input: Option<String>) -> Self
Resilience Hub application version.
sourcepub fn get_app_version(&self) -> &Option<String>
pub fn get_app_version(&self) -> &Option<String>
Resilience Hub application version.
sourcepub fn additional_info(self, k: impl Into<String>, v: Vec<String>) -> Self
pub fn additional_info(self, k: impl Into<String>, v: Vec<String>) -> Self
Adds a key-value pair to additional_info.
To override the contents of this collection use set_additional_info.
Additional configuration parameters for an Resilience Hub application. If you want to implement additionalInfo through the Resilience Hub console rather than using an API call, see Configure the application configuration parameters.
Currently, this parameter supports only failover region and account.
sourcepub fn set_additional_info(
self,
input: Option<HashMap<String, Vec<String>>>
) -> Self
pub fn set_additional_info( self, input: Option<HashMap<String, Vec<String>>> ) -> Self
Additional configuration parameters for an Resilience Hub application. If you want to implement additionalInfo through the Resilience Hub console rather than using an API call, see Configure the application configuration parameters.
Currently, this parameter supports only failover region and account.
sourcepub fn get_additional_info(&self) -> &Option<HashMap<String, Vec<String>>>
pub fn get_additional_info(&self) -> &Option<HashMap<String, Vec<String>>>
Additional configuration parameters for an Resilience Hub application. If you want to implement additionalInfo through the Resilience Hub console rather than using an API call, see Configure the application configuration parameters.
Currently, this parameter supports only failover region and account.
sourcepub fn build(self) -> Result<UpdateAppVersionOutput, BuildError>
pub fn build(self) -> Result<UpdateAppVersionOutput, BuildError>
Consumes the builder and constructs a UpdateAppVersionOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for UpdateAppVersionOutputBuilder
impl Clone for UpdateAppVersionOutputBuilder
source§fn clone(&self) -> UpdateAppVersionOutputBuilder
fn clone(&self) -> UpdateAppVersionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateAppVersionOutputBuilder
impl Default for UpdateAppVersionOutputBuilder
source§fn default() -> UpdateAppVersionOutputBuilder
fn default() -> UpdateAppVersionOutputBuilder
source§impl PartialEq for UpdateAppVersionOutputBuilder
impl PartialEq for UpdateAppVersionOutputBuilder
source§fn eq(&self, other: &UpdateAppVersionOutputBuilder) -> bool
fn eq(&self, other: &UpdateAppVersionOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAppVersionOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateAppVersionOutputBuilder
impl RefUnwindSafe for UpdateAppVersionOutputBuilder
impl Send for UpdateAppVersionOutputBuilder
impl Sync for UpdateAppVersionOutputBuilder
impl Unpin for UpdateAppVersionOutputBuilder
impl UnwindSafe for UpdateAppVersionOutputBuilder
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