[][src]Struct rusoto_servicecatalog::RecordDetail

pub struct RecordDetail {
    pub created_time: Option<f64>,
    pub path_id: Option<String>,
    pub product_id: Option<String>,
    pub provisioned_product_id: Option<String>,
    pub provisioned_product_name: Option<String>,
    pub provisioned_product_type: Option<String>,
    pub provisioning_artifact_id: Option<String>,
    pub record_errors: Option<Vec<RecordError>>,
    pub record_id: Option<String>,
    pub record_tags: Option<Vec<RecordTag>>,
    pub record_type: Option<String>,
    pub status: Option<String>,
    pub updated_time: Option<f64>,
}

Information about a request operation.

Fields

The UTC time stamp of the creation time.

The path identifier.

The product identifier.

The identifier of the provisioned product.

The user-friendly name of the provisioned product.

The type of provisioned product. The supported value is CFN_STACK.

The identifier of the provisioning artifact.

The errors that occurred.

The identifier of the record.

One or more tags.

The record type.

  • PROVISIONPRODUCT

  • UPDATEPROVISIONEDPRODUCT

  • TERMINATEPROVISIONED_PRODUCT

The status of the provisioned product.

  • CREATED - The request was created but the operation has not started.

  • INPROGRESS - The requested operation is in progress.

  • INPROGRESSINERROR - The provisioned product is under change but the requested operation failed and some remediation is occurring. For example, a rollback.

  • SUCCEEDED - The requested operation has successfully completed.

  • FAILED - The requested operation has unsuccessfully completed. Investigate using the error messages returned.

The time when the record was last updated.

Trait Implementations

impl Clone for RecordDetail
[src]

Performs copy-assignment from source. Read more

impl Default for RecordDetail
[src]

impl PartialEq<RecordDetail> for RecordDetail
[src]

impl Debug for RecordDetail
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T