#[non_exhaustive]pub struct GetPatchBaselineInput {
pub baseline_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.baseline_id: Option<String>
The ID of the patch baseline to retrieve.
To retrieve information about an Amazon Web Services managed patch baseline, specify the full Amazon Resource Name (ARN) of the baseline. For example, for the baseline AWS-AmazonLinuxDefaultPatchBaseline
, specify arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0e392de35e7c563b7
instead of pb-0e392de35e7c563b7
.
Implementations§
source§impl GetPatchBaselineInput
impl GetPatchBaselineInput
sourcepub fn baseline_id(&self) -> Option<&str>
pub fn baseline_id(&self) -> Option<&str>
The ID of the patch baseline to retrieve.
To retrieve information about an Amazon Web Services managed patch baseline, specify the full Amazon Resource Name (ARN) of the baseline. For example, for the baseline AWS-AmazonLinuxDefaultPatchBaseline
, specify arn:aws:ssm:us-east-2:733109147000:patchbaseline/pb-0e392de35e7c563b7
instead of pb-0e392de35e7c563b7
.
source§impl GetPatchBaselineInput
impl GetPatchBaselineInput
sourcepub fn builder() -> GetPatchBaselineInputBuilder
pub fn builder() -> GetPatchBaselineInputBuilder
Creates a new builder-style object to manufacture GetPatchBaselineInput
.
Trait Implementations§
source§impl Clone for GetPatchBaselineInput
impl Clone for GetPatchBaselineInput
source§fn clone(&self) -> GetPatchBaselineInput
fn clone(&self) -> GetPatchBaselineInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetPatchBaselineInput
impl Debug for GetPatchBaselineInput
source§impl PartialEq for GetPatchBaselineInput
impl PartialEq for GetPatchBaselineInput
source§fn eq(&self, other: &GetPatchBaselineInput) -> bool
fn eq(&self, other: &GetPatchBaselineInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetPatchBaselineInput
Auto Trait Implementations§
impl Freeze for GetPatchBaselineInput
impl RefUnwindSafe for GetPatchBaselineInput
impl Send for GetPatchBaselineInput
impl Sync for GetPatchBaselineInput
impl Unpin for GetPatchBaselineInput
impl UnwindSafe for GetPatchBaselineInput
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