Struct aws_sdk_macie2::operation::update_resource_profile_detections::UpdateResourceProfileDetectionsInput
source · #[non_exhaustive]pub struct UpdateResourceProfileDetectionsInput {
pub resource_arn: Option<String>,
pub suppress_data_identifiers: Option<Vec<SuppressDataIdentifier>>,
}
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.resource_arn: Option<String>
The Amazon Resource Name (ARN) of the S3 bucket that the request applies to.
suppress_data_identifiers: Option<Vec<SuppressDataIdentifier>>
An array of objects, one for each custom data identifier or managed data identifier that detected the type of sensitive data to start excluding or including in the bucket's score. To start including all sensitive data types in the score, don't specify any values for this array.
Implementations§
source§impl UpdateResourceProfileDetectionsInput
impl UpdateResourceProfileDetectionsInput
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the S3 bucket that the request applies to.
sourcepub fn suppress_data_identifiers(&self) -> &[SuppressDataIdentifier]
pub fn suppress_data_identifiers(&self) -> &[SuppressDataIdentifier]
An array of objects, one for each custom data identifier or managed data identifier that detected the type of sensitive data to start excluding or including in the bucket's score. To start including all sensitive data types in the score, don't specify any values for this array.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .suppress_data_identifiers.is_none()
.
source§impl UpdateResourceProfileDetectionsInput
impl UpdateResourceProfileDetectionsInput
sourcepub fn builder() -> UpdateResourceProfileDetectionsInputBuilder
pub fn builder() -> UpdateResourceProfileDetectionsInputBuilder
Creates a new builder-style object to manufacture UpdateResourceProfileDetectionsInput
.
Trait Implementations§
source§impl Clone for UpdateResourceProfileDetectionsInput
impl Clone for UpdateResourceProfileDetectionsInput
source§fn clone(&self) -> UpdateResourceProfileDetectionsInput
fn clone(&self) -> UpdateResourceProfileDetectionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateResourceProfileDetectionsInput
impl PartialEq for UpdateResourceProfileDetectionsInput
source§fn eq(&self, other: &UpdateResourceProfileDetectionsInput) -> bool
fn eq(&self, other: &UpdateResourceProfileDetectionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.