[][src]Struct rusoto_marketplace_catalog::DescribeChangeSetResponse

pub struct DescribeChangeSetResponse {
    pub change_set: Option<Vec<ChangeSummary>>,
    pub change_set_arn: Option<String>,
    pub change_set_id: Option<String>,
    pub change_set_name: Option<String>,
    pub end_time: Option<String>,
    pub failure_description: Option<String>,
    pub start_time: Option<String>,
    pub status: Option<String>,
}

Fields

change_set: Option<Vec<ChangeSummary>>

An array of ChangeSummary objects.

change_set_arn: Option<String>

The ARN associated with the unique identifier for the change set referenced in this request.

change_set_id: Option<String>

Required. The unique identifier for the change set referenced in this request.

change_set_name: Option<String>

The optional name provided in the StartChangeSet request. If you do not provide a name, one is set by default.

end_time: Option<String>

The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request transitioned to a terminal state. The change cannot transition to a different state. Null if the request is not in a terminal state.

failure_description: Option<String>

Returned if there is a failure on the change set, but that failure is not related to any of the changes in the request.

start_time: Option<String>

The date and time, in ISO 8601 format (2018-02-27T13:45:22Z), the request started.

status: Option<String>

The status of the change request.

Trait Implementations

impl Clone for DescribeChangeSetResponse[src]

impl Debug for DescribeChangeSetResponse[src]

impl Default for DescribeChangeSetResponse[src]

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

impl PartialEq<DescribeChangeSetResponse> for DescribeChangeSetResponse[src]

impl StructuralPartialEq for DescribeChangeSetResponse[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, 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> Sealed<T> for T where
    T: ?Sized

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.