Struct rusoto_elastictranscoder::TestRoleRequest[][src]

pub struct TestRoleRequest {
    pub input_bucket: String,
    pub output_bucket: String,
    pub role: String,
    pub topics: Vec<String>,
}

The TestRoleRequest structure.

Fields

The Amazon S3 bucket that contains media files to be transcoded. The action attempts to read from this bucket.

The Amazon S3 bucket that Elastic Transcoder writes transcoded media files to. The action attempts to read from this bucket.

The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder to test.

The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) topics that you want the action to send a test notification to.

Trait Implementations

impl Default for TestRoleRequest
[src]

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

impl Debug for TestRoleRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for TestRoleRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TestRoleRequest
[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