Interface CfnReferenceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReferenceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:07.571Z")
@Stability(Stable)
public interface CfnReferenceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnReference.
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.omics.*;
CfnReferenceProps cfnReferenceProps = CfnReferenceProps.builder()
.description("description")
.name("name")
.referenceStoreId("referenceStoreId")
.tags(List.of(TagsItemsProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReferencePropsstatic final classAn implementation forCfnReferenceProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnReferenceProps.Builderbuilder()default StringThe reference's description.default StringgetName()The reference's name.default StringThe reference's reference store ID.default List<CfnReference.TagsItemsProperty> getTags()Tags for the reference.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The reference's description.- See Also:
-
getName
The reference's name.- See Also:
-
getReferenceStoreId
The reference's reference store ID.- See Also:
-
getTags
Tags for the reference.- See Also:
-
builder
- Returns:
- a
CfnReferenceProps.BuilderofCfnReferenceProps
-