@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.837Z") @Stability(value=Stable) public interface CfnPublicTypeVersionProps 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.*;
CfnPublicTypeVersionProps cfnPublicTypeVersionProps = CfnPublicTypeVersionProps.builder()
.arn("arn")
.logDeliveryBucket("logDeliveryBucket")
.publicVersionNumber("publicVersionNumber")
.type("type")
.typeName("typeName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPublicTypeVersionProps.Builder
A builder for
CfnPublicTypeVersionProps |
static class |
CfnPublicTypeVersionProps.Jsii$Proxy
An implementation for
CfnPublicTypeVersionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPublicTypeVersionProps.Builder |
builder() |
default String |
getArn()
The Amazon Resource Number (ARN) of the extension.
|
default String |
getLogDeliveryBucket()
The S3 bucket to which CloudFormation delivers the contract test execution logs.
|
default String |
getPublicVersionNumber()
The version number to assign to this version of the extension.
|
default String |
getType()
The type of the extension to test.
|
default String |
getTypeName()
The name of the extension to test.
|
@Stability(value=Stable) @Nullable default String getArn()
Conditional: You must specify Arn , or TypeName and Type .
@Stability(value=Stable) @Nullable default String getLogDeliveryBucket()
CloudFormation delivers the logs by the time contract testing has completed and the extension has been assigned a test type status of PASSED or FAILED .
The user initiating the stack operation must be able to access items in the specified S3 bucket. Specifically, the user needs the following permissions:
For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the AWS Identity and Access Management User Guide .
@Stability(value=Stable) @Nullable default String getPublicVersionNumber()
Use the following format, and adhere to semantic versioning when assigning a version number to your extension:
MAJOR.MINOR.PATCH
For more information, see Semantic Versioning 2.0.0 .
If you don't specify a version number, CloudFormation increments the version number by one minor version release.
You cannot specify a version number the first time you publish a type. AWS CloudFormation automatically sets the first version number to be 1.0.0 .
@Stability(value=Stable) @Nullable default String getType()
Conditional: You must specify Arn , or TypeName and Type .
@Stability(value=Stable) @Nullable default String getTypeName()
Conditional: You must specify Arn , or TypeName and Type .
@Stability(value=Stable) static CfnPublicTypeVersionProps.Builder builder()
CfnPublicTypeVersionProps.Builder of CfnPublicTypeVersionPropsCopyright © 2022. All rights reserved.