Interface CfnResourceDefaultVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceDefaultVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.530Z")
@Stability(Stable)
public interface CfnResourceDefaultVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnResourceDefaultVersion
.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnResourceDefaultVersionProps
static final class
An implementation forCfnResourceDefaultVersionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTypeName
The name of the resource.Conditional: You must specify either
TypeVersionArn
, orTypeName
andVersionId
. -
getTypeVersionArn
The Amazon Resource Name (ARN) of the resource version.Conditional: You must specify either
TypeVersionArn
, orTypeName
andVersionId
. -
getVersionId
The ID of a specific version of the resource.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
, orTypeName
andVersionId
. -
builder
-