Struct aws_sdk_ssm::operation::get_ops_item::GetOpsItemInput
source · #[non_exhaustive]pub struct GetOpsItemInput {
pub ops_item_id: Option<String>,
pub ops_item_arn: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ops_item_id: Option<String>
The ID of the OpsItem that you want to get.
ops_item_arn: Option<String>
The OpsItem Amazon Resource Name (ARN).
Implementations§
source§impl GetOpsItemInput
impl GetOpsItemInput
sourcepub fn ops_item_id(&self) -> Option<&str>
pub fn ops_item_id(&self) -> Option<&str>
The ID of the OpsItem that you want to get.
sourcepub fn ops_item_arn(&self) -> Option<&str>
pub fn ops_item_arn(&self) -> Option<&str>
The OpsItem Amazon Resource Name (ARN).
source§impl GetOpsItemInput
impl GetOpsItemInput
sourcepub fn builder() -> GetOpsItemInputBuilder
pub fn builder() -> GetOpsItemInputBuilder
Creates a new builder-style object to manufacture GetOpsItemInput
.
Trait Implementations§
source§impl Clone for GetOpsItemInput
impl Clone for GetOpsItemInput
source§fn clone(&self) -> GetOpsItemInput
fn clone(&self) -> GetOpsItemInput
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 Debug for GetOpsItemInput
impl Debug for GetOpsItemInput
source§impl PartialEq for GetOpsItemInput
impl PartialEq for GetOpsItemInput
source§fn eq(&self, other: &GetOpsItemInput) -> bool
fn eq(&self, other: &GetOpsItemInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetOpsItemInput
Auto Trait Implementations§
impl Freeze for GetOpsItemInput
impl RefUnwindSafe for GetOpsItemInput
impl Send for GetOpsItemInput
impl Sync for GetOpsItemInput
impl Unpin for GetOpsItemInput
impl UnwindSafe for GetOpsItemInput
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
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>
Creates a shared type from an unshared type.