Show / Hide Table of Contents

Interface ICfnModuleVersionMixinProps

Properties for CfnModuleVersionPropsMixin.

Namespace: Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnModuleVersionMixinProps
Syntax (vb)
Public Interface ICfnModuleVersionMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.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.Mixins.Preview.AWS.CloudFormation.Mixins;

             var cfnModuleVersionMixinProps = new CfnModuleVersionMixinProps {
                 ModuleName = "moduleName",
                 ModulePackage = "modulePackage"
             };

Synopsis

Properties

ModuleName

The name of the module being registered.

ModulePackage

A URL to the S3 bucket for the package that contains the template fragment and schema files for the module version to register.

Properties

ModuleName

The name of the module being registered.

string? ModuleName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-modulename

ModulePackage

A URL to the S3 bucket for the package that contains the template fragment and schema files for the module version to register.

string? ModulePackage { get; }
Property Value

string

Remarks

For more information, see Module structure and requirements in the CloudFormation Command Line Interface (CLI) User Guide .

To register the module version, you must have <code>s3:GetObject</code> permissions to access the S3 objects.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-modulepackage

Back to top Generated by DocFX