[][src]Struct rusoto_eks::LaunchTemplateSpecification

pub struct LaunchTemplateSpecification {
    pub id: Option<String>,
    pub name: Option<String>,
    pub version: Option<String>,
}

An object representing a node group launch template specification. The launch template cannot include SubnetId , IamInstanceProfile , RequestSpotInstances , HibernationOptions , or TerminateInstances , or the node group deployment or update will fail. For more information about launch templates, see CreateLaunchTemplate in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

Specify either name or id, but not both.

Fields

id: Option<String>

The ID of the launch template.

name: Option<String>

The name of the launch template.

version: Option<String>

The version of the launch template to use. If no version is specified, then the template's default version is used.

Trait Implementations

impl Clone for LaunchTemplateSpecification[src]

impl Debug for LaunchTemplateSpecification[src]

impl Default for LaunchTemplateSpecification[src]

impl<'de> Deserialize<'de> for LaunchTemplateSpecification[src]

impl PartialEq<LaunchTemplateSpecification> for LaunchTemplateSpecification[src]

impl Serialize for LaunchTemplateSpecification[src]

impl StructuralPartialEq for LaunchTemplateSpecification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.