Struct rusoto_cloudhsmv2::DescribeBackupsRequest [] [src]

pub struct DescribeBackupsRequest {
    pub filters: Option<HashMap<String, Vec<String>>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

One or more filters to limit the items returned in the response.

Use the backupIds filter to return only the specified backups. Specify backups by their backup identifier (ID).

Use the clusterIds filter to return only the backups for the specified clusters. Specify clusters by their cluster identifier (ID).

Use the states filter to return only backups that match the specified state.

The maximum number of backups to return in the response. When there are more backups than the number you specify, the response contains a NextToken value.

The NextToken value that you received in the previous response. Use this value to get more backups.

Trait Implementations

impl Default for DescribeBackupsRequest
[src]

[src]

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

impl Debug for DescribeBackupsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeBackupsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations