Struct aws_sdk_ssm::types::builders::OpsMetadataBuilder
source · #[non_exhaustive]pub struct OpsMetadataBuilder { /* private fields */ }
Expand description
A builder for OpsMetadata
.
Implementations§
source§impl OpsMetadataBuilder
impl OpsMetadataBuilder
sourcepub fn resource_id(self, input: impl Into<String>) -> Self
pub fn resource_id(self, input: impl Into<String>) -> Self
The ID of the Application Manager application.
sourcepub fn set_resource_id(self, input: Option<String>) -> Self
pub fn set_resource_id(self, input: Option<String>) -> Self
The ID of the Application Manager application.
sourcepub fn get_resource_id(&self) -> &Option<String>
pub fn get_resource_id(&self) -> &Option<String>
The ID of the Application Manager application.
sourcepub fn ops_metadata_arn(self, input: impl Into<String>) -> Self
pub fn ops_metadata_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.
sourcepub fn set_ops_metadata_arn(self, input: Option<String>) -> Self
pub fn set_ops_metadata_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.
sourcepub fn get_ops_metadata_arn(&self) -> &Option<String>
pub fn get_ops_metadata_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the OpsMetadata Object or blob.
sourcepub fn last_modified_date(self, input: DateTime) -> Self
pub fn last_modified_date(self, input: DateTime) -> Self
The date the OpsMetadata object was last updated.
sourcepub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
The date the OpsMetadata object was last updated.
sourcepub fn get_last_modified_date(&self) -> &Option<DateTime>
pub fn get_last_modified_date(&self) -> &Option<DateTime>
The date the OpsMetadata object was last updated.
sourcepub fn last_modified_user(self, input: impl Into<String>) -> Self
pub fn last_modified_user(self, input: impl Into<String>) -> Self
The user name who last updated the OpsMetadata object.
sourcepub fn set_last_modified_user(self, input: Option<String>) -> Self
pub fn set_last_modified_user(self, input: Option<String>) -> Self
The user name who last updated the OpsMetadata object.
sourcepub fn get_last_modified_user(&self) -> &Option<String>
pub fn get_last_modified_user(&self) -> &Option<String>
The user name who last updated the OpsMetadata object.
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The date the OpsMetadata objects was created.
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The date the OpsMetadata objects was created.
sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The date the OpsMetadata objects was created.
sourcepub fn build(self) -> OpsMetadata
pub fn build(self) -> OpsMetadata
Consumes the builder and constructs a OpsMetadata
.
Trait Implementations§
source§impl Clone for OpsMetadataBuilder
impl Clone for OpsMetadataBuilder
source§fn clone(&self) -> OpsMetadataBuilder
fn clone(&self) -> OpsMetadataBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OpsMetadataBuilder
impl Debug for OpsMetadataBuilder
source§impl Default for OpsMetadataBuilder
impl Default for OpsMetadataBuilder
source§fn default() -> OpsMetadataBuilder
fn default() -> OpsMetadataBuilder
source§impl PartialEq for OpsMetadataBuilder
impl PartialEq for OpsMetadataBuilder
impl StructuralPartialEq for OpsMetadataBuilder
Auto Trait Implementations§
impl Freeze for OpsMetadataBuilder
impl RefUnwindSafe for OpsMetadataBuilder
impl Send for OpsMetadataBuilder
impl Sync for OpsMetadataBuilder
impl Unpin for OpsMetadataBuilder
impl UnwindSafe for OpsMetadataBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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