Interface CfnResourceDefaultVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceDefaultVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:34.097Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceDefaultVersionPropsstatic final classAn 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, orTypeNameandVersionId.- See Also:
-
getTypeVersionArn
The Amazon Resource Name (ARN) of the resource version.Conditional: You must specify either
TypeVersionArn, orTypeNameandVersionId.- See Also:
-
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, orTypeNameandVersionId.- See Also:
-
builder
-