Show / Hide Table of Contents

Interface CfnCloudFormationProduct.IProvisioningArtifactPropertiesProperty

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

Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCloudFormationProduct.IProvisioningArtifactPropertiesProperty
Syntax (vb)
Public Interface CfnCloudFormationProduct.IProvisioningArtifactPropertiesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Servicecatalog;

             var info;

             var provisioningArtifactPropertiesProperty = new ProvisioningArtifactPropertiesProperty {
                 Info = info,

                 // the properties below are optional
                 Description = "description",
                 DisableTemplateValidation = false,
                 Name = "name",
                 Type = "type"
             };

Synopsis

Properties

Description

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

DisableTemplateValidation

If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.

Info

Specify the template source with one of the following options, but not both.

Name

The name of the provisioning artifact (for example, v1 v2beta).

Type

The type of provisioning artifact.

Properties

Description

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

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-description

DisableTemplateValidation

If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.

object? DisableTemplateValidation { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-disabletemplatevalidation

Info

Specify the template source with one of the following options, but not both.

object Info { get; }
Property Value

object

Remarks

Keys accepted: [ LoadTemplateFromURL , ImportFromPhysicalId ]

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

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

ImportFromPhysicalId : The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: “arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-info

Name

The name of the provisioning artifact (for example, v1 v2beta).

string? Name { get; }
Property Value

string

Remarks

No spaces are allowed.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-name

Type

The type of provisioning artifact.

string? Type { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-type

    Back to top Generated by DocFX