Struct aws_sdk_securityhub::model::AwsS3BucketDetails
source · [−]#[non_exhaustive]pub struct AwsS3BucketDetails { /* private fields */ }
Expand description
The details of an Amazon S3 bucket.
Implementations
sourceimpl AwsS3BucketDetails
impl AwsS3BucketDetails
sourcepub fn owner_name(&self) -> Option<&str>
pub fn owner_name(&self) -> Option<&str>
The display name of the owner of the S3 bucket.
sourcepub fn owner_account_id(&self) -> Option<&str>
pub fn owner_account_id(&self) -> Option<&str>
The Amazon Web Services account identifier of the account that owns the S3 bucket.
sourcepub fn created_at(&self) -> Option<&str>
pub fn created_at(&self) -> Option<&str>
Indicates when the S3 bucket was created.
Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
sourcepub fn server_side_encryption_configuration(
&self
) -> Option<&AwsS3BucketServerSideEncryptionConfiguration>
pub fn server_side_encryption_configuration(
&self
) -> Option<&AwsS3BucketServerSideEncryptionConfiguration>
The encryption rules that are applied to the S3 bucket.
sourcepub fn bucket_lifecycle_configuration(
&self
) -> Option<&AwsS3BucketBucketLifecycleConfigurationDetails>
pub fn bucket_lifecycle_configuration(
&self
) -> Option<&AwsS3BucketBucketLifecycleConfigurationDetails>
The lifecycle configuration for objects in the S3 bucket.
sourcepub fn public_access_block_configuration(
&self
) -> Option<&AwsS3AccountPublicAccessBlockDetails>
pub fn public_access_block_configuration(
&self
) -> Option<&AwsS3AccountPublicAccessBlockDetails>
Provides information about the Amazon S3 Public Access Block configuration for the S3 bucket.
sourcepub fn access_control_list(&self) -> Option<&str>
pub fn access_control_list(&self) -> Option<&str>
The access control list for the S3 bucket.
sourcepub fn bucket_logging_configuration(
&self
) -> Option<&AwsS3BucketLoggingConfiguration>
pub fn bucket_logging_configuration(
&self
) -> Option<&AwsS3BucketLoggingConfiguration>
The logging configuration for the S3 bucket.
sourcepub fn bucket_website_configuration(
&self
) -> Option<&AwsS3BucketWebsiteConfiguration>
pub fn bucket_website_configuration(
&self
) -> Option<&AwsS3BucketWebsiteConfiguration>
The website configuration parameters for the S3 bucket.
sourcepub fn bucket_notification_configuration(
&self
) -> Option<&AwsS3BucketNotificationConfiguration>
pub fn bucket_notification_configuration(
&self
) -> Option<&AwsS3BucketNotificationConfiguration>
The notification configuration for the S3 bucket.
sourcepub fn bucket_versioning_configuration(
&self
) -> Option<&AwsS3BucketBucketVersioningConfiguration>
pub fn bucket_versioning_configuration(
&self
) -> Option<&AwsS3BucketBucketVersioningConfiguration>
The versioning state of an S3 bucket.
sourceimpl AwsS3BucketDetails
impl AwsS3BucketDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AwsS3BucketDetails
.
Trait Implementations
sourceimpl Clone for AwsS3BucketDetails
impl Clone for AwsS3BucketDetails
sourcefn clone(&self) -> AwsS3BucketDetails
fn clone(&self) -> AwsS3BucketDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AwsS3BucketDetails
impl Debug for AwsS3BucketDetails
sourceimpl PartialEq<AwsS3BucketDetails> for AwsS3BucketDetails
impl PartialEq<AwsS3BucketDetails> for AwsS3BucketDetails
sourcefn eq(&self, other: &AwsS3BucketDetails) -> bool
fn eq(&self, other: &AwsS3BucketDetails) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AwsS3BucketDetails) -> bool
fn ne(&self, other: &AwsS3BucketDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for AwsS3BucketDetails
Auto Trait Implementations
impl RefUnwindSafe for AwsS3BucketDetails
impl Send for AwsS3BucketDetails
impl Sync for AwsS3BucketDetails
impl Unpin for AwsS3BucketDetails
impl UnwindSafe for AwsS3BucketDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more