Interface CfnBlueprintMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBlueprintMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:17.387Z")
@Stability(Stable)
public interface CfnBlueprintMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBlueprintPropsMixin.
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.bedrock.*;
Object schema;
CfnBlueprintMixinProps cfnBlueprintMixinProps = CfnBlueprintMixinProps.builder()
.blueprintName("blueprintName")
.kmsEncryptionContext(Map.of(
"kmsEncryptionContextKey", "kmsEncryptionContext"))
.kmsKeyId("kmsKeyId")
.schema(schema)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBlueprintMixinPropsstatic final classAn implementation forCfnBlueprintMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe blueprint's name.default ObjectName-value pairs to include as an encryption context.default StringThe AWS key to use for encryption.default ObjectThe blueprint's schema.getTags()List of Tags.default StringgetType()The blueprint's type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlueprintName
The blueprint's name.- See Also:
-
getKmsEncryptionContext
Name-value pairs to include as an encryption context.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getKmsKeyId
The AWS key to use for encryption.- See Also:
-
getSchema
The blueprint's schema.- See Also:
-
getTags
List of Tags.- See Also:
-
getType
The blueprint's type.- See Also:
-
builder
- Returns:
- a
CfnBlueprintMixinProps.BuilderofCfnBlueprintMixinProps
-