Struct rusoto_ssm::S3OutputLocation[][src]

pub struct S3OutputLocation {
    pub output_s3_bucket_name: Option<String>,
    pub output_s3_key_prefix: Option<String>,
    pub output_s3_region: Option<String>,
}

An Amazon S3 bucket where you want to store the results of this request.

Fields

The name of the Amazon S3 bucket.

The Amazon S3 bucket subfolder.

(Deprecated) You can no longer specify this parameter. The system ignores it. Instead, Systems Manager automatically determines the Amazon S3 bucket region.

Trait Implementations

impl Default for S3OutputLocation
[src]

Returns the "default value" for a type. Read more

impl Debug for S3OutputLocation
[src]

Formats the value using the given formatter. Read more

impl Clone for S3OutputLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for S3OutputLocation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations