Package software.amazon.awscdk
Interface CfnDynamicReferenceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDynamicReferenceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:53.386Z")
@Stability(Stable)
public interface CfnDynamicReferenceProps
extends software.amazon.jsii.JsiiSerializable
Properties for a Dynamic Reference.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.*; CfnDynamicReferenceProps cfnDynamicReferenceProps = CfnDynamicReferenceProps.builder() .referenceKey("referenceKey") .service(CfnDynamicReferenceService.SSM) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDynamicReferenceProps
static final class
An implementation forCfnDynamicReferenceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The reference key of the dynamic reference.The service to retrieve the dynamic reference from.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReferenceKey
The reference key of the dynamic reference. -
getService
The service to retrieve the dynamic reference from. -
builder
- Returns:
- a
CfnDynamicReferenceProps.Builder
ofCfnDynamicReferenceProps
-