[][src]Struct rusoto_appconfig::CreateHostedConfigurationVersionRequest

pub struct CreateHostedConfigurationVersionRequest {
    pub application_id: String,
    pub configuration_profile_id: String,
    pub content: Bytes,
    pub content_type: String,
    pub description: Option<String>,
    pub latest_version_number: Option<i64>,
}

Fields

application_id: String

The application ID.

configuration_profile_id: String

The configuration profile ID.

content: Bytes

The content of the configuration or the configuration data.

content_type: String

A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

description: Option<String>

A description of the configuration.

latest_version_number: Option<i64>

An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version of the latest hosted configuration version.

Trait Implementations

impl Clone for CreateHostedConfigurationVersionRequest[src]

impl Debug for CreateHostedConfigurationVersionRequest[src]

impl Default for CreateHostedConfigurationVersionRequest[src]

impl PartialEq<CreateHostedConfigurationVersionRequest> for CreateHostedConfigurationVersionRequest[src]

impl Serialize for CreateHostedConfigurationVersionRequest[src]

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