[][src]Struct rusoto_sagemaker::DescribeProjectOutput

pub struct DescribeProjectOutput {
    pub created_by: Option<UserContext>,
    pub creation_time: f64,
    pub project_arn: String,
    pub project_description: Option<String>,
    pub project_id: String,
    pub project_name: String,
    pub project_status: String,
    pub service_catalog_provisioned_product_details: Option<ServiceCatalogProvisionedProductDetails>,
    pub service_catalog_provisioning_details: ServiceCatalogProvisioningDetails,
}

Fields

created_by: Option<UserContext>creation_time: f64

The time when the project was created.

project_arn: String

The Amazon Resource Name (ARN) of the project.

project_description: Option<String>

The description of the project.

project_id: String

The ID of the project.

project_name: String

The name of the project.

project_status: String

The status of the project.

service_catalog_provisioned_product_details: Option<ServiceCatalogProvisionedProductDetails>

Information about a provisioned service catalog product.

service_catalog_provisioning_details: ServiceCatalogProvisioningDetails

Information used to provision a service catalog product. For information, see What is AWS Service Catalog.

Trait Implementations

impl Clone for DescribeProjectOutput[src]

impl Debug for DescribeProjectOutput[src]

impl Default for DescribeProjectOutput[src]

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

impl PartialEq<DescribeProjectOutput> for DescribeProjectOutput[src]

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