[][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

created_time: Option<f64>

The UTC time stamp of the creation time.

path_id: Option<String>

The path identifier.

product_id: Option<String>

The product identifier.

provisioned_product_id: Option<String>

The identifier of the provisioned product.

provisioned_product_name: Option<String>

The user-friendly name of the provisioned product.

provisioned_product_type: Option<String>

The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.

provisioning_artifact_id: Option<String>

The identifier of the provisioning artifact.

record_errors: Option<Vec<RecordError>>

The errors that occurred.

record_id: Option<String>

The identifier of the record.

record_tags: Option<Vec<RecordTag>>

One or more tags.

record_type: Option<String>

The record type.

  • PROVISIONPRODUCT

  • UPDATEPROVISIONEDPRODUCT

  • TERMINATEPROVISIONED_PRODUCT

status: Option<String>

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.

updated_time: Option<f64>

The time when the record was last updated.

Trait Implementations

impl Clone for RecordDetail[src]

impl Debug for RecordDetail[src]

impl Default for RecordDetail[src]

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

impl PartialEq<RecordDetail> for RecordDetail[src]

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