Show / Hide Table of Contents

Interface ICfnTypeActivationProps

Properties for defining a CfnTypeActivation.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public interface ICfnTypeActivationProps
Syntax (vb)
Public Interface ICfnTypeActivationProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-typeactivation.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;
CfnTypeActivationProps 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"
};

Synopsis

Properties

AutoUpdate

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

ExecutionRoleArn

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

LoggingConfig

Specifies logging configuration information for an extension.

MajorVersion

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

PublicTypeArn

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

PublisherId

The ID of the extension publisher.

Type

The extension type.

TypeName

The name of the extension.

TypeNameAlias

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

VersionBump

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

Properties

AutoUpdate

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

virtual object AutoUpdate { get; }
Property Value

System.Object

Remarks

Major versions released by the publisher must be manually updated.

The default is true .

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

ExecutionRoleArn

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

virtual string ExecutionRoleArn { get; }
Property Value

System.String

Remarks

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

LoggingConfig

Specifies logging configuration information for an extension.

virtual object LoggingConfig { get; }
Property Value

System.Object

Remarks

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

MajorVersion

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

virtual string MajorVersion { get; }
Property Value

System.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.

virtual string PublicTypeArn { get; }
Property Value

System.String

Remarks

Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .

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

PublisherId

The ID of the extension publisher.

virtual string PublisherId { get; }
Property Value

System.String

Remarks

Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .

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

Type

The extension type.

virtual string Type { get; }
Property Value

System.String

Remarks

Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .

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

TypeName

The name of the extension.

virtual string TypeName { get; }
Property Value

System.String

Remarks

Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .

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

TypeNameAlias

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

virtual string TypeNameAlias { get; }
Property Value

System.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.

virtual string VersionBump { get; }
Property Value

System.String

Remarks

You can also use this parameter to update the value of AutoUpdate .

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

    Back to top Generated by DocFX