Interface CfnKeyValueStoreMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnKeyValueStoreMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.085Z")
@Stability(Stable)
public interface CfnKeyValueStoreMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnKeyValueStorePropsMixin.
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.cloudfront.*;
CfnKeyValueStoreMixinProps cfnKeyValueStoreMixinProps = CfnKeyValueStoreMixinProps.builder()
.comment("comment")
.importSource(ImportSourceProperty.builder()
.sourceArn("sourceArn")
.sourceType("sourceType")
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnKeyValueStoreMixinPropsstatic final classAn implementation forCfnKeyValueStoreMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
A comment for the key value store.- See Also:
-
getImportSource
The import source for the key value store.Returns union: either
IResolvableorCfnKeyValueStorePropsMixin.ImportSourceProperty- See Also:
-
getName
The name of the key value store.- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnKeyValueStoreMixinProps.BuilderofCfnKeyValueStoreMixinProps
-