Table of Contents

Class CfnTypeActivation

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

A CloudFormation AWS::CloudFormation::TypeActivation.

public class CfnTypeActivation : CfnResource, IConstruct, IConstruct, IDependable, IInspectable
Inheritance
CfnTypeActivation
Implements
IConstruct
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK;
             var cfnTypeActivation = new CfnTypeActivation(this, "MyCfnTypeActivation", 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

Activates a public third-party extension, making it available for use in stack templates. For more information, see Using public extensions in the AWS CloudFormation User Guide .

Once you have activated a public third-party extension in your account and Region, use SetTypeConfiguration to specify configuration properties for the extension. For more information, see Configuring extensions at the account level in the CloudFormation User Guide .

CloudformationResource: AWS::CloudFormation::TypeActivation

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

ExampleMetadata: fixture=_generated

Constructors

CfnTypeActivation(Construct, string, ICfnTypeActivationProps?)

Create a new AWS::CloudFormation::TypeActivation.

public CfnTypeActivation(Construct scope, string id, ICfnTypeActivationProps? props = null)

Parameters

scope Construct
  • scope in which this resource is defined.
id string
  • scoped id of the resource.
props ICfnTypeActivationProps
  • resource properties.

Properties

AttrArn

The Amazon Resource Number (ARN) of the activated extension, in this account and Region.

public virtual string AttrArn { get; }

Property Value

string

Remarks

CloudformationAttribute: Arn

AutoUpdate

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

public virtual object? AutoUpdate { get; set; }

Property Value

object

Remarks

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }

Property Value

string

CfnProperties

protected override IDictionary<string, object> CfnProperties { get; }

Property Value

IDictionary<string, object>

ExecutionRoleArn

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

public virtual string? ExecutionRoleArn { get; set; }

Property Value

string

Remarks

LoggingConfig

Specifies logging configuration information for an extension.

public virtual object? LoggingConfig { get; set; }

Property Value

object

Remarks

MajorVersion

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

public virtual string? MajorVersion { get; set; }

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.

public virtual string? PublicTypeArn { get; set; }

Property Value

string

Remarks

PublisherId

The ID of the extension publisher.

public virtual string? PublisherId { get; set; }

Property Value

string

Remarks

Type

The extension type.

public virtual string? Type { get; set; }

Property Value

string

Remarks

TypeName

The name of the extension.

public virtual string? TypeName { get; set; }

Property Value

string

Remarks

TypeNameAlias

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

public virtual string? TypeNameAlias { get; set; }

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.

public virtual string? VersionBump { get; set; }

Property Value

string

Remarks

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)

Parameters

inspector TreeInspector
  • tree inspector to collect and process attributes.

RenderProperties(IDictionary<string, object>)

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)

Parameters

props IDictionary<string, object>

Returns

IDictionary<string, object>