[][src]Struct rusoto_appconfig::HostedConfigurationVersionSummary

pub struct HostedConfigurationVersionSummary {
    pub application_id: Option<String>,
    pub configuration_profile_id: Option<String>,
    pub content_type: Option<String>,
    pub description: Option<String>,
    pub version_number: Option<i64>,
}

Information about the configuration.

Fields

application_id: Option<String>

The application ID.

configuration_profile_id: Option<String>

The configuration profile ID.

content_type: Option<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.

version_number: Option<i64>

The configuration version.

Trait Implementations

impl Clone for HostedConfigurationVersionSummary[src]

impl Debug for HostedConfigurationVersionSummary[src]

impl Default for HostedConfigurationVersionSummary[src]

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

impl PartialEq<HostedConfigurationVersionSummary> for HostedConfigurationVersionSummary[src]

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