Class CfnTypeActivationProps
Properties for defining a CfnTypeActivation
.
Inheritance
Implements
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTypeActivationProps : Object, ICfnTypeActivationProps
Syntax (vb)
Public Class CfnTypeActivationProps
Inherits Object
Implements ICfnTypeActivationProps
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;
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"
};
Synopsis
Constructors
CfnTypeActivationProps() |
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. |
Constructors
CfnTypeActivationProps()
public CfnTypeActivationProps()
Properties
AutoUpdate
Whether to automatically update the extension in this account and Region when a new minor version is published by the extension publisher.
public object AutoUpdate { get; set; }
Property Value
System.Object
Remarks
Major versions released by the publisher must be manually updated.
The default is true
.
ExecutionRoleArn
The name of the IAM execution role to use to activate the extension.
public string ExecutionRoleArn { get; set; }
Property Value
System.String
Remarks
LoggingConfig
Specifies logging configuration information for an extension.
public object LoggingConfig { get; set; }
Property Value
System.Object
Remarks
MajorVersion
The major version of this extension you want to activate, if multiple major versions are available.
public string MajorVersion { get; set; }
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.
PublicTypeArn
The Amazon Resource Number (ARN) of the public extension.
public string PublicTypeArn { get; set; }
Property Value
System.String
Remarks
Conditional: You must specify PublicTypeArn
, or TypeName
, Type
, and PublisherId
.
PublisherId
The ID of the extension publisher.
public string PublisherId { get; set; }
Property Value
System.String
Remarks
Conditional: You must specify PublicTypeArn
, or TypeName
, Type
, and PublisherId
.
Type
The extension type.
public string Type { get; set; }
Property Value
System.String
Remarks
Conditional: You must specify PublicTypeArn
, or TypeName
, Type
, and PublisherId
.
TypeName
The name of the extension.
public string TypeName { get; set; }
Property Value
System.String
Remarks
Conditional: You must specify PublicTypeArn
, or TypeName
, Type
, and PublisherId
.
TypeNameAlias
An alias to assign to the public extension, in this account and Region.
public string TypeNameAlias { get; set; }
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.
VersionBump
Manually updates a previously-activated type to a new major or minor version, if available.
public string VersionBump { get; set; }
Property Value
System.String
Remarks
You can also use this parameter to update the value of AutoUpdate
.