[][src]Struct rusoto_lightsail::CreateContainerServiceDeploymentRequest

pub struct CreateContainerServiceDeploymentRequest {
    pub containers: Option<HashMap<String, Container>>,
    pub public_endpoint: Option<EndpointRequest>,
    pub service_name: String,
}

Fields

containers: Option<HashMap<String, Container>>

An object that describes the settings of the containers that will be launched on the container service.

public_endpoint: Option<EndpointRequest>

An object that describes the settings of the public endpoint for the container service.

service_name: String

The name of the container service for which to create the deployment.

Trait Implementations

impl Clone for CreateContainerServiceDeploymentRequest[src]

impl Debug for CreateContainerServiceDeploymentRequest[src]

impl Default for CreateContainerServiceDeploymentRequest[src]

impl PartialEq<CreateContainerServiceDeploymentRequest> for CreateContainerServiceDeploymentRequest[src]

impl Serialize for CreateContainerServiceDeploymentRequest[src]

impl StructuralPartialEq for CreateContainerServiceDeploymentRequest[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, 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.