Struct rusoto_ec2::DeleteLaunchTemplateVersionsResponseErrorItem[][src]

pub struct DeleteLaunchTemplateVersionsResponseErrorItem {
    pub launch_template_id: Option<String>,
    pub launch_template_name: Option<String>,
    pub response_error: Option<ResponseError>,
    pub version_number: Option<i64>,
}

Describes a launch template version that could not be deleted.

Fields

The ID of the launch template.

The name of the launch template.

Information about the error.

The version number of the launch template.

Trait Implementations

impl Default for DeleteLaunchTemplateVersionsResponseErrorItem
[src]

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

impl Debug for DeleteLaunchTemplateVersionsResponseErrorItem
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteLaunchTemplateVersionsResponseErrorItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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