Interface CfnReferenceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReferenceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:22.677Z")
@Stability(Stable)
public interface CfnReferenceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnReferencePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.omics.*;
CfnReferenceMixinProps cfnReferenceMixinProps = CfnReferenceMixinProps.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 forCfnReferenceMixinPropsstatic final classAn implementation forCfnReferenceMixinProps -
Method Summary
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
CfnReferenceMixinProps.BuilderofCfnReferenceMixinProps
-