#[non_exhaustive]pub struct UpdateResourceProfileInput {
pub resource_arn: Option<String>,
pub sensitivity_score_override: Option<i32>,
}
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.resource_arn: Option<String>
The Amazon Resource Name (ARN) of the S3 bucket that the request applies to.
sensitivity_score_override: Option<i32>
The new sensitivity score for the bucket. Valid values are: 100, assign the maximum score and apply the Sensitive label to the bucket; and, null (empty), assign a score that Amazon Macie calculates automatically after you submit the request.
Implementations§
source§impl UpdateResourceProfileInput
impl UpdateResourceProfileInput
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 sensitivity_score_override(&self) -> Option<i32>
pub fn sensitivity_score_override(&self) -> Option<i32>
The new sensitivity score for the bucket. Valid values are: 100, assign the maximum score and apply the Sensitive label to the bucket; and, null (empty), assign a score that Amazon Macie calculates automatically after you submit the request.
source§impl UpdateResourceProfileInput
impl UpdateResourceProfileInput
sourcepub fn builder() -> UpdateResourceProfileInputBuilder
pub fn builder() -> UpdateResourceProfileInputBuilder
Creates a new builder-style object to manufacture UpdateResourceProfileInput
.
Trait Implementations§
source§impl Clone for UpdateResourceProfileInput
impl Clone for UpdateResourceProfileInput
source§fn clone(&self) -> UpdateResourceProfileInput
fn clone(&self) -> UpdateResourceProfileInput
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 UpdateResourceProfileInput
impl Debug for UpdateResourceProfileInput
source§impl PartialEq for UpdateResourceProfileInput
impl PartialEq for UpdateResourceProfileInput
source§fn eq(&self, other: &UpdateResourceProfileInput) -> bool
fn eq(&self, other: &UpdateResourceProfileInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateResourceProfileInput
Auto Trait Implementations§
impl Freeze for UpdateResourceProfileInput
impl RefUnwindSafe for UpdateResourceProfileInput
impl Send for UpdateResourceProfileInput
impl Sync for UpdateResourceProfileInput
impl Unpin for UpdateResourceProfileInput
impl UnwindSafe for UpdateResourceProfileInput
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.