Show / Hide Table of Contents

Class CloudFormationProductVersion

Properties of product version (also known as a provisioning artifact).

Inheritance
object
CloudFormationProductVersion
Implements
ICloudFormationProductVersion
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CloudFormationProductVersion : ICloudFormationProductVersion
Syntax (vb)
Public Class CloudFormationProductVersion Implements ICloudFormationProductVersion
Remarks

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;

            CloudFormationTemplate cloudFormationTemplate;

            var cloudFormationProductVersion = new CloudFormationProductVersion {
                CloudFormationTemplate = cloudFormationTemplate,

                // the properties below are optional
                Description = "description",
                ProductVersionName = "productVersionName",
                ValidateTemplate = false
            };

Synopsis

Constructors

CloudFormationProductVersion()

Properties of product version (also known as a provisioning artifact).

Properties

CloudFormationTemplate

The S3 template that points to the provisioning version template.

Description

The description of the product version.

ProductVersionName

The name of the product version.

ValidateTemplate

Whether the specified product template will be validated by CloudFormation.

Constructors

CloudFormationProductVersion()

Properties of product version (also known as a provisioning artifact).

public CloudFormationProductVersion()
Remarks

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;

            CloudFormationTemplate cloudFormationTemplate;

            var cloudFormationProductVersion = new CloudFormationProductVersion {
                CloudFormationTemplate = cloudFormationTemplate,

                // the properties below are optional
                Description = "description",
                ProductVersionName = "productVersionName",
                ValidateTemplate = false
            };

Properties

CloudFormationTemplate

The S3 template that points to the provisioning version template.

public CloudFormationTemplate CloudFormationTemplate { get; set; }
Property Value

CloudFormationTemplate

Remarks

ExampleMetadata: fixture=_generated

Description

The description of the product version.

public string? Description { get; set; }
Property Value

string

Remarks

Default: - No description provided

ProductVersionName

The name of the product version.

public string? ProductVersionName { get; set; }
Property Value

string

Remarks

Default: - No product version name provided

ValidateTemplate

Whether the specified product template will be validated by CloudFormation.

public bool? ValidateTemplate { get; set; }
Property Value

bool?

Remarks

If turned off, an invalid template configuration can be stored.

Default: true

Implements

ICloudFormationProductVersion
Back to top Generated by DocFX