[][src]Struct rusoto_ec2::S3Storage

pub struct S3Storage {
    pub aws_access_key_id: Option<String>,
    pub bucket: Option<String>,
    pub prefix: Option<String>,
    pub upload_policy: Option<Bytes>,
    pub upload_policy_signature: Option<String>,
}

Describes the storage parameters for S3 and S3 buckets for an instance store-backed AMI.

Fields

aws_access_key_id: Option<String>

The access key ID of the owner of the bucket. Before you specify a value for your access key ID, review and follow the guidance in Best Practices for Managing AWS Access Keys.

bucket: Option<String>

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

prefix: Option<String>

The beginning of the file name of the AMI.

upload_policy: Option<Bytes>

An Amazon S3 upload policy that gives Amazon EC2 permission to upload items into Amazon S3 on your behalf.

upload_policy_signature: Option<String>

The signature of the JSON document.

Trait Implementations

impl Clone for S3Storage[src]

impl Debug for S3Storage[src]

impl Default for S3Storage[src]

impl PartialEq<S3Storage> for S3Storage[src]

impl StructuralPartialEq for S3Storage[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> From<T> for T[src]

impl<T> Instrument 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.