[][src]Struct rusoto_sagemaker::CreateProjectInput

pub struct CreateProjectInput {
    pub project_description: Option<String>,
    pub project_name: String,
    pub service_catalog_provisioning_details: ServiceCatalogProvisioningDetails,
    pub tags: Option<Vec<Tag>>,
}

Fields

project_description: Option<String>

A description for the project.

project_name: String

The name of the project.

service_catalog_provisioning_details: ServiceCatalogProvisioningDetails

The product ID and provisioning artifact ID to provision a service catalog. For information, see What is AWS Service Catalog.

tags: Option<Vec<Tag>>

An array of key-value pairs that you want to use to organize and track your AWS resource costs. For more information, see Tagging AWS resources in the AWS General Reference Guide.

Trait Implementations

impl Clone for CreateProjectInput[src]

impl Debug for CreateProjectInput[src]

impl Default for CreateProjectInput[src]

impl PartialEq<CreateProjectInput> for CreateProjectInput[src]

impl Serialize for CreateProjectInput[src]

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