@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.005Z") @Stability(value=Stable) public interface CfnResourceDefaultVersionProps 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.services.cloudformation.*;
CfnResourceDefaultVersionProps cfnResourceDefaultVersionProps = CfnResourceDefaultVersionProps.builder()
.typeName("typeName")
.typeVersionArn("typeVersionArn")
.versionId("versionId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnResourceDefaultVersionProps.Builder
A builder for
CfnResourceDefaultVersionProps |
static class |
CfnResourceDefaultVersionProps.Jsii$Proxy
An implementation for
CfnResourceDefaultVersionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnResourceDefaultVersionProps.Builder |
builder() |
default String |
getTypeName()
The name of the resource.
|
default String |
getTypeVersionArn()
The Amazon Resource Name (ARN) of the resource version.
|
default String |
getVersionId()
The ID of a specific version of the resource.
|
@Stability(value=Stable) @Nullable default String getTypeName()
Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .
@Stability(value=Stable) @Nullable default String getTypeVersionArn()
Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .
@Stability(value=Stable) @Nullable default String getVersionId()
The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the resource version when it's registered.
Conditional: You must specify either TypeVersionArn , or TypeName and VersionId .
@Stability(value=Stable) static CfnResourceDefaultVersionProps.Builder builder()
Copyright © 2022. All rights reserved.