Struct aws_sdk_resiliencehub::operation::put_draft_app_version_template::builders::PutDraftAppVersionTemplateOutputBuilder
source · #[non_exhaustive]pub struct PutDraftAppVersionTemplateOutputBuilder { /* private fields */ }Expand description
A builder for PutDraftAppVersionTemplateOutput.
Implementations§
source§impl PutDraftAppVersionTemplateOutputBuilder
impl PutDraftAppVersionTemplateOutputBuilder
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
The version of the application.
sourcepub fn set_app_version(self, input: Option<String>) -> Self
pub fn set_app_version(self, input: Option<String>) -> Self
The version of the application.
sourcepub fn get_app_version(&self) -> &Option<String>
pub fn get_app_version(&self) -> &Option<String>
The version of the application.
sourcepub fn build(self) -> PutDraftAppVersionTemplateOutput
pub fn build(self) -> PutDraftAppVersionTemplateOutput
Consumes the builder and constructs a PutDraftAppVersionTemplateOutput.
Trait Implementations§
source§impl Clone for PutDraftAppVersionTemplateOutputBuilder
impl Clone for PutDraftAppVersionTemplateOutputBuilder
source§fn clone(&self) -> PutDraftAppVersionTemplateOutputBuilder
fn clone(&self) -> PutDraftAppVersionTemplateOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for PutDraftAppVersionTemplateOutputBuilder
impl Default for PutDraftAppVersionTemplateOutputBuilder
source§fn default() -> PutDraftAppVersionTemplateOutputBuilder
fn default() -> PutDraftAppVersionTemplateOutputBuilder
source§impl PartialEq for PutDraftAppVersionTemplateOutputBuilder
impl PartialEq for PutDraftAppVersionTemplateOutputBuilder
source§fn eq(&self, other: &PutDraftAppVersionTemplateOutputBuilder) -> bool
fn eq(&self, other: &PutDraftAppVersionTemplateOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PutDraftAppVersionTemplateOutputBuilder
Auto Trait Implementations§
impl Freeze for PutDraftAppVersionTemplateOutputBuilder
impl RefUnwindSafe for PutDraftAppVersionTemplateOutputBuilder
impl Send for PutDraftAppVersionTemplateOutputBuilder
impl Sync for PutDraftAppVersionTemplateOutputBuilder
impl Unpin for PutDraftAppVersionTemplateOutputBuilder
impl UnwindSafe for PutDraftAppVersionTemplateOutputBuilder
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