[][src]Struct rusoto_guardduty::S3BucketDetail

pub struct S3BucketDetail {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub default_server_side_encryption: Option<DefaultServerSideEncryption>,
    pub name: Option<String>,
    pub owner: Option<Owner>,
    pub public_access: Option<PublicAccess>,
    pub tags: Option<Vec<Tag>>,
    pub type_: Option<String>,
}

Contains information on the S3 bucket.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the S3 bucket.

created_at: Option<f64>

The date and time the bucket was created at.

default_server_side_encryption: Option<DefaultServerSideEncryption>

Describes the server side encryption method used in the S3 bucket.

name: Option<String>

The name of the S3 bucket.

owner: Option<Owner>

The owner of the S3 bucket.

public_access: Option<PublicAccess>

Describes the public access policies that apply to the S3 bucket.

tags: Option<Vec<Tag>>

All tags attached to the S3 bucket

type_: Option<String>

Describes whether the bucket is a source or destination bucket.

Trait Implementations

impl Clone for S3BucketDetail[src]

impl Debug for S3BucketDetail[src]

impl Default for S3BucketDetail[src]

impl<'de> Deserialize<'de> for S3BucketDetail[src]

impl PartialEq<S3BucketDetail> for S3BucketDetail[src]

impl StructuralPartialEq for S3BucketDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.