[][src]Struct rusoto_securityhub::AwsS3ObjectDetails

pub struct AwsS3ObjectDetails {
    pub content_type: Option<String>,
    pub e_tag: Option<String>,
    pub last_modified: Option<String>,
    pub ssekms_key_id: Option<String>,
    pub server_side_encryption: Option<String>,
    pub version_id: Option<String>,
}

Details about an Amazon S3 object.

Fields

content_type: Option<String>

A standard MIME type describing the format of the object data.

e_tag: Option<String>

The opaque identifier assigned by a web server to a specific version of a resource found at a URL.

last_modified: Option<String>

Indicates when the object was last modified.

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.

ssekms_key_id: Option<String>

The identifier of the AWS Key Management Service (AWS KMS) symmetric customer managed customer master key (CMK) that was used for the object.

server_side_encryption: Option<String>

If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when storing this object in Amazon S3.

version_id: Option<String>

The version of the object.

Trait Implementations

impl Clone for AwsS3ObjectDetails[src]

impl Debug for AwsS3ObjectDetails[src]

impl Default for AwsS3ObjectDetails[src]

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

impl PartialEq<AwsS3ObjectDetails> for AwsS3ObjectDetails[src]

impl Serialize for AwsS3ObjectDetails[src]

impl StructuralPartialEq for AwsS3ObjectDetails[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.