Struct rusoto_ec2::DescribeInstanceCreditSpecificationsRequest [] [src]

pub struct DescribeInstanceCreditSpecificationsRequest {
    pub dry_run: Option<bool>,
    pub filters: Option<Vec<Filter>>,
    pub instance_ids: Option<Vec<String>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

One or more filters.

  • instance-id - The ID of the instance.

One or more instance IDs.

Default: Describes all your instances.

Constraints: Maximum 1000 explicitly specified instance IDs.

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned NextToken value. This value can be between 5 and 1000. You cannot specify this parameter and the instance IDs parameter in the same call.

The token to retrieve the next page of results.

Trait Implementations

impl Default for DescribeInstanceCreditSpecificationsRequest
[src]

[src]

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

impl Debug for DescribeInstanceCreditSpecificationsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeInstanceCreditSpecificationsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations