[][src]Struct rusoto_appconfig::StartDeploymentRequest

pub struct StartDeploymentRequest {
    pub application_id: String,
    pub configuration_profile_id: String,
    pub configuration_version: String,
    pub deployment_strategy_id: String,
    pub description: Option<String>,
    pub environment_id: String,
    pub tags: Option<HashMap<String, String>>,
}

Fields

application_id: String

The application ID.

configuration_profile_id: String

The configuration profile ID.

configuration_version: String

The configuration version to deploy.

deployment_strategy_id: String

The deployment strategy ID.

description: Option<String>

A description of the deployment.

environment_id: String

The environment ID.

tags: Option<HashMap<String, String>>

Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

Trait Implementations

impl Clone for StartDeploymentRequest[src]

impl Debug for StartDeploymentRequest[src]

impl Default for StartDeploymentRequest[src]

impl PartialEq<StartDeploymentRequest> for StartDeploymentRequest[src]

impl Serialize for StartDeploymentRequest[src]

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