@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.875Z") @Stability(value=Stable) public interface CfnTypeActivationProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
CfnTypeActivationProps cfnTypeActivationProps = CfnTypeActivationProps.builder()
.autoUpdate(false)
.executionRoleArn("executionRoleArn")
.loggingConfig(LoggingConfigProperty.builder()
.logGroupName("logGroupName")
.logRoleArn("logRoleArn")
.build())
.majorVersion("majorVersion")
.publicTypeArn("publicTypeArn")
.publisherId("publisherId")
.type("type")
.typeName("typeName")
.typeNameAlias("typeNameAlias")
.versionBump("versionBump")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTypeActivationProps.Builder
A builder for
CfnTypeActivationProps |
static class |
CfnTypeActivationProps.Jsii$Proxy
An implementation for
CfnTypeActivationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnTypeActivationProps.Builder |
builder() |
default Object |
getAutoUpdate()
Whether to automatically update the extension in this account and region when a new *minor* version is published by the extension publisher.
|
default String |
getExecutionRoleArn()
The name of the IAM execution role to use to activate the extension.
|
default Object |
getLoggingConfig()
Specifies logging configuration information for an extension.
|
default String |
getMajorVersion()
The major version of this extension you want to activate, if multiple major versions are available.
|
default String |
getPublicTypeArn()
The Amazon Resource Number (ARN) of the public extension.
|
default String |
getPublisherId()
The ID of the extension publisher.
|
default String |
getType()
The extension type.
|
default String |
getTypeName()
The name of the extension.
|
default String |
getTypeNameAlias()
An alias to assign to the public extension, in this account and region.
|
default String |
getVersionBump()
Manually updates a previously-activated type to a new major or minor version, if available.
|
@Stability(value=Stable) @Nullable default Object getAutoUpdate()
Major versions released by the publisher must be manually updated.
The default is true .
@Stability(value=Stable) @Nullable default String getExecutionRoleArn()
@Stability(value=Stable) @Nullable default Object getLoggingConfig()
@Stability(value=Stable) @Nullable default String getMajorVersion()
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.
@Stability(value=Stable) @Nullable default String getPublicTypeArn()
Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .
@Stability(value=Stable) @Nullable default String getPublisherId()
Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .
@Stability(value=Stable) @Nullable default String getType()
Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .
@Stability(value=Stable) @Nullable default String getTypeName()
Conditional: You must specify PublicTypeArn , or TypeName , Type , and PublisherId .
@Stability(value=Stable) @Nullable default String getTypeNameAlias()
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.
@Stability(value=Stable) @Nullable default String getVersionBump()
You can also use this parameter to update the value of AutoUpdate .
MAJOR : CloudFormation updates the extension to the newest major version, if one is available.MINOR : CloudFormation updates the extension to the newest minor version, if one is available.@Stability(value=Stable) static CfnTypeActivationProps.Builder builder()
CfnTypeActivationProps.Builder of CfnTypeActivationPropsCopyright © 2022. All rights reserved.