[][src]Struct rusoto_compute_optimizer::ExportEC2InstanceRecommendationsRequest

pub struct ExportEC2InstanceRecommendationsRequest {
    pub account_ids: Option<Vec<String>>,
    pub fields_to_export: Option<Vec<String>>,
    pub file_format: Option<String>,
    pub filters: Option<Vec<Filter>>,
    pub include_member_accounts: Option<bool>,
    pub s_3_destination_config: S3DestinationConfig,
}

Fields

account_ids: Option<Vec<String>>

The IDs of the AWS accounts for which to export instance recommendations.

If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to export recommendations.

This parameter cannot be specified together with the include member accounts parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the include member accounts parameter, is omitted.

You can specify multiple account IDs per request.

fields_to_export: Option<Vec<String>>

The recommendations data to include in the export file.

file_format: Option<String>

The format of the export file.

The only export file format currently supported is Csv.

filters: Option<Vec<Filter>>

An array of objects that describe a filter to export a more specific set of instance recommendations.

include_member_accounts: Option<bool>

Indicates whether to include recommendations for resources in all member accounts of the organization if your account is the master account of an organization.

The member accounts must also be opted in to Compute Optimizer.

Recommendations for member accounts of the organization are not included in the export file if this parameter is omitted.

Recommendations for member accounts are not included in the export if this parameter, or the account IDs parameter, is omitted.

s_3_destination_config: S3DestinationConfig

An object to specify the destination Amazon Simple Storage Service (Amazon S3) bucket name and key prefix for the 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.

Trait Implementations

impl Clone for ExportEC2InstanceRecommendationsRequest[src]

impl Debug for ExportEC2InstanceRecommendationsRequest[src]

impl Default for ExportEC2InstanceRecommendationsRequest[src]

impl PartialEq<ExportEC2InstanceRecommendationsRequest> for ExportEC2InstanceRecommendationsRequest[src]

impl Serialize for ExportEC2InstanceRecommendationsRequest[src]

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