[][src]Struct rusoto_compute_optimizer::S3DestinationConfig

pub struct S3DestinationConfig {
    pub bucket: Option<String>,
    pub key_prefix: Option<String>,
}

Describes the destination Amazon Simple Storage Service (Amazon S3) bucket name and key prefix for a recommendations export job.

You must create the destination Amazon S3 bucket for your recommendations export before you create the export job. Compute Optimizer does not create the S3 bucket for you. After you create the S3 bucket, ensure that it has the required permission policy to allow Compute Optimizer to write the export file to it. If you plan to specify an object prefix when you create the export job, you must include the object prefix in the policy that you add to the S3 bucket. For more information, see Amazon S3 Bucket Policy for Compute Optimizer in the Compute Optimizer user guide.

Fields

bucket: Option<String>

The name of the Amazon S3 bucket to use as the destination for an export job.

key_prefix: Option<String>

The Amazon S3 bucket prefix for an export job.

Trait Implementations

impl Clone for S3DestinationConfig[src]

impl Debug for S3DestinationConfig[src]

impl Default for S3DestinationConfig[src]

impl PartialEq<S3DestinationConfig> for S3DestinationConfig[src]

impl Serialize for S3DestinationConfig[src]

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