Show / Hide Table of Contents

Interface ICloudFormationTemplateConfig

Result of binding Template into a Product.

Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICloudFormationTemplateConfig
Syntax (vb)
Public Interface ICloudFormationTemplateConfig
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.S3;
            using Amazon.CDK.AWS.Servicecatalog;

            Bucket bucket;

            var cloudFormationTemplateConfig = new CloudFormationTemplateConfig {
                HttpUrl = "httpUrl",

                // the properties below are optional
                AssetBucket = bucket
            };

Synopsis

Properties

AssetBucket

The S3 bucket containing product stack assets.

HttpUrl

The http url of the template in S3.

Properties

AssetBucket

The S3 bucket containing product stack assets.

IBucket? AssetBucket { get; }
Property Value

IBucket

Remarks

Default: - None - no assets are used in this product

HttpUrl

The http url of the template in S3.

string HttpUrl { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX