[][src]Struct rusoto_servicecatalog::ProvisioningArtifactProperties

pub struct ProvisioningArtifactProperties {
    pub description: Option<String>,
    pub info: HashMap<String, String>,
    pub name: Option<String>,
    pub type_: Option<String>,
}

Information about a provisioning artifact (also known as a version) for a product.

Fields

The description of the provisioning artifact, including how it differs from the previous provisioning artifact.

The URL of the CloudFormation template in Amazon S3. Specify the URL in JSON format as follows:

"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."

The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.

The type of provisioning artifact.

  • CLOUDFORMATIONTEMPLATE - AWS CloudFormation template

  • MARKETPLACEAMI - AWS Marketplace AMI

  • MARKETPLACECAR - AWS Marketplace Clusters and AWS Resources

Trait Implementations

impl PartialEq<ProvisioningArtifactProperties> for ProvisioningArtifactProperties
[src]

impl Default for ProvisioningArtifactProperties
[src]

impl Clone for ProvisioningArtifactProperties
[src]

Performs copy-assignment from source. Read more

impl Debug for ProvisioningArtifactProperties
[src]

impl Serialize for ProvisioningArtifactProperties
[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for 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> BorrowMut 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T