[][src]Struct rusoto_gamelift::LaunchTemplateSpecification

pub struct LaunchTemplateSpecification {
    pub launch_template_id: Option<String>,
    pub launch_template_name: Option<String>,
    pub version: Option<String>,
}

This data type is part of Amazon GameLift FleetIQ with game server groups, which is in preview release and is subject to change.

An EC2 launch template that contains configuration settings and game server code to be deployed to all instances in a game server group.

Fields

launch_template_id: Option<String>

A unique identifier for an existing EC2 launch template.

launch_template_name: Option<String>

A readable identifier for an existing EC2 launch template.

version: Option<String>

The version of the EC2 launch template to use. If no version is specified, the default version will be used. EC2 allows you to specify a default version for a launch template, if none is set, the default is the first version created.

Trait Implementations

impl Clone for LaunchTemplateSpecification[src]

impl Debug for LaunchTemplateSpecification[src]

impl Default 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> From<T> for T[src]

impl<T> Instrument 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.