#[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
source§fn eq(&self, other: &DescribeProtectionInput) -> bool
fn eq(&self, other: &DescribeProtectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.