Struct rusoto_ec2::DescribeLaunchTemplatesRequest [] [src]

pub struct DescribeLaunchTemplatesRequest {
    pub dry_run: Option<bool>,
    pub filters: Option<Vec<Filter>>,
    pub launch_template_ids: Option<Vec<String>>,
    pub launch_template_names: 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.

  • create-time - The time the launch template was created.

  • launch-template-name - The name of the launch template.

One or more launch template IDs.

One or more launch template names.

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.

The token to request the next page of results.

Trait Implementations

impl Default for DescribeLaunchTemplatesRequest
[src]

[src]

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

impl Debug for DescribeLaunchTemplatesRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeLaunchTemplatesRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations