#[non_exhaustive]pub struct DescribeProtectionInput {
pub protection_id: Option<String>,
pub resource_arn: 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.protection_id: Option<String>
The unique identifier (ID) for the Protection
object to describe. You must provide either the ResourceArn
of the protected resource or the ProtectionID
of the protection, but not both.
resource_arn: Option<String>
The ARN (Amazon Resource Name) of the protected Amazon Web Services resource. You must provide either the ResourceArn
of the protected resource or the ProtectionID
of the protection, but not both.
Implementations§
source§impl DescribeProtectionInput
impl DescribeProtectionInput
sourcepub fn protection_id(&self) -> Option<&str>
pub fn protection_id(&self) -> Option<&str>
The unique identifier (ID) for the Protection
object to describe. You must provide either the ResourceArn
of the protected resource or the ProtectionID
of the protection, but not both.
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The ARN (Amazon Resource Name) of the protected Amazon Web Services resource. You must provide either the ResourceArn
of the protected resource or the ProtectionID
of the protection, but not both.
source§impl DescribeProtectionInput
impl DescribeProtectionInput
sourcepub fn builder() -> DescribeProtectionInputBuilder
pub fn builder() -> DescribeProtectionInputBuilder
Creates a new builder-style object to manufacture DescribeProtectionInput
.
Trait Implementations§
source§impl Clone for DescribeProtectionInput
impl Clone for DescribeProtectionInput
source§fn clone(&self) -> DescribeProtectionInput
fn clone(&self) -> DescribeProtectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeProtectionInput
impl Debug for DescribeProtectionInput
source§impl PartialEq for DescribeProtectionInput
impl PartialEq for DescribeProtectionInput
impl StructuralPartialEq for DescribeProtectionInput
Auto Trait Implementations§
impl Freeze for DescribeProtectionInput
impl RefUnwindSafe for DescribeProtectionInput
impl Send for DescribeProtectionInput
impl Sync for DescribeProtectionInput
impl Unpin for DescribeProtectionInput
impl UnwindSafe for DescribeProtectionInput
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