Struct rusoto_ec2::DescribeLaunchTemplateVersionsRequest [] [src]

pub struct DescribeLaunchTemplateVersionsRequest {
    pub dry_run: Option<bool>,
    pub filters: Option<Vec<Filter>>,
    pub launch_template_id: Option<String>,
    pub launch_template_name: Option<String>,
    pub max_results: Option<i64>,
    pub max_version: Option<String>,
    pub min_version: Option<String>,
    pub next_token: Option<String>,
    pub versions: Option<Vec<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 version was created.

  • ebs-optimized - A boolean that indicates whether the instance is optimized for Amazon EBS I/O.

  • iam-instance-profile - The ARN of the IAM instance profile.

  • image-id - The ID of the AMI.

  • instance-type - The instance type.

  • is-default-version - A boolean that indicates whether the launch template version is the default version.

  • kernel-id - The kernel ID.

  • ram-disk-id - The RAM disk ID.

The ID of the launch template. You must specify either the launch template ID or launch template name in the request.

The name of the launch template. You must specify either the launch template ID or launch template name in the request.

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 version number up to which to describe launch template versions.

The version number after which to describe launch template versions.

The token to request the next page of results.

One or more versions of the launch template.

Trait Implementations

impl Default for DescribeLaunchTemplateVersionsRequest
[src]

[src]

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

impl Debug for DescribeLaunchTemplateVersionsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeLaunchTemplateVersionsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations