Table of Contents

Interface ICfnTypeActivationProps

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Properties for defining a CfnTypeActivation.

public interface ICfnTypeActivationProps

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK;
             var cfnTypeActivationProps = new CfnTypeActivationProps {
                 AutoUpdate = false,
                 ExecutionRoleArn = "executionRoleArn",
                 LoggingConfig = new LoggingConfigProperty {
                     LogGroupName = "logGroupName",
                     LogRoleArn = "logRoleArn"
                 },
                 MajorVersion = "majorVersion",
                 PublicTypeArn = "publicTypeArn",
                 PublisherId = "publisherId",
                 Type = "type",
                 TypeName = "typeName",
                 TypeNameAlias = "typeNameAlias",
                 VersionBump = "versionBump"
             };

Remarks

Properties

AutoUpdate

Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher.

object? AutoUpdate { get; }

Property Value

object

Remarks

ExecutionRoleArn

The name of the IAM execution role to use to activate the extension.

string? ExecutionRoleArn { get; }

Property Value

string

Remarks

LoggingConfig

Specifies logging configuration information for an extension.

object? LoggingConfig { get; }

Property Value

object

Remarks

MajorVersion

The major version of this extension you want to activate, if multiple major versions are available.

string? MajorVersion { get; }

Property Value

string

Remarks

The default is the latest major version. CloudFormation uses the latest available minor version of the major version selected.

You can specify MajorVersion or VersionBump , but not both.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.html#cfn-cloudformation-typeactivation-majorversion

PublicTypeArn

The Amazon Resource Number (ARN) of the public extension.

string? PublicTypeArn { get; }

Property Value

string

Remarks

PublisherId

The ID of the extension publisher.

string? PublisherId { get; }

Property Value

string

Remarks

Type

The extension type.

string? Type { get; }

Property Value

string

Remarks

TypeName

The name of the extension.

string? TypeName { get; }

Property Value

string

Remarks

TypeNameAlias

An alias to assign to the public extension, in this account and Region.

string? TypeNameAlias { get; }

Property Value

string

Remarks

If you specify an alias for the extension, CloudFormation treats the alias as the extension type name within this account and Region. You must use the alias to refer to the extension in your templates, API calls, and CloudFormation console.

An extension alias must be unique within a given account and Region. You can activate the same public resource multiple times in the same account and Region, using different type name aliases.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.html#cfn-cloudformation-typeactivation-typenamealias

VersionBump

Manually updates a previously-activated type to a new major or minor version, if available.

string? VersionBump { get; }

Property Value

string

Remarks