Struct rusoto_mgh::ListCreatedArtifactsRequest[][src]

pub struct ListCreatedArtifactsRequest {
    pub max_results: Option<i64>,
    pub migration_task_name: String,
    pub next_token: Option<String>,
    pub progress_update_stream: String,
}

Fields

Maximum number of results to be returned per page.

Unique identifier that references the migration task.

If a NextToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in NextToken.

The name of the ProgressUpdateStream.

Trait Implementations

impl Default for ListCreatedArtifactsRequest
[src]

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

impl Debug for ListCreatedArtifactsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListCreatedArtifactsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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