Interface KeyProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KeyProps.Jsii$Proxy
Example:
Key cmk = Key.Builder.create(this, "cmk").build();
BedrockFoundationModel claudeModel = BedrockFoundationModel.ANTHROPIC_CLAUDE_SONNET_V1_0;
IPromptVariant variant1 = PromptVariant.text(TextPromptVariantProps.builder()
.variantName("variant1")
.model(claudeModel)
.promptVariables(List.of("topic"))
.promptText("This is my first text prompt. Please summarize our conversation on: {{topic}}.")
.inferenceConfiguration(PromptInferenceConfiguration.text(PromptInferenceConfigurationProps.builder()
.temperature(1)
.topP(0.999)
.maxTokens(2000)
.build()))
.build());
Prompt prompt1 = Prompt.Builder.create(this, "prompt1")
.promptName("prompt1")
.description("my first prompt")
.defaultVariant(variant1)
.variants(List.of(variant1))
.kmsKey(cmk)
.build();
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic KeyProps.Builderbuilder()default List<IPrincipal> A list of principals to add as key administrators to the key policy.default StringgetAlias()Initial alias to add to the key.default StringA description of the key.default BooleanIndicates whether the key is available for use.default BooleanIndicates whether AWS KMS rotates the key.default KeySpecThe cryptographic configuration of the key.default KeyUsageThe cryptographic operations for which the key can be used.default BooleanCreates a multi-Region primary key that you can replicate in other AWS Regions.default DurationSpecifies the number of days in the waiting period before AWS KMS deletes a CMK that has been removed from a CloudFormation stack.default PolicyDocumentCustom policy document to attach to the KMS key.default RemovalPolicyWhether the encryption key should be retained when it is removed from the Stack.default DurationThe period between each automatic rotation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdmins
A list of principals to add as key administrators to the key policy.Key administrators have permissions to manage the key (e.g., change permissions, revoke), but do not have permissions to use the key in cryptographic operations (e.g., encrypt, decrypt).
These principals will be added to the default key policy (if none specified), or to the specified policy (if provided).
Default: []
-
getAlias
Initial alias to add to the key.More aliases can be added later by calling
addAlias.Default: - No alias is added for the key.
-
getDescription
A description of the key.Use a description that helps your users decide whether the key is appropriate for a particular task.
Default: - No description.
-
getEnabled
Indicates whether the key is available for use.Default: - Key is enabled.
-
getEnableKeyRotation
Indicates whether AWS KMS rotates the key.Default: false
-
getKeySpec
The cryptographic configuration of the key. The valid value depends on usage of the key.IMPORTANT: If you change this property of an existing key, the existing key is scheduled for deletion and a new key is created with the specified value.
Default: KeySpec.SYMMETRIC_DEFAULT
-
getKeyUsage
The cryptographic operations for which the key can be used.IMPORTANT: If you change this property of an existing key, the existing key is scheduled for deletion and a new key is created with the specified value.
Default: KeyUsage.ENCRYPT_DECRYPT
-
getMultiRegion
Creates a multi-Region primary key that you can replicate in other AWS Regions.You can't change the
multiRegionvalue after the KMS key is created.IMPORTANT: If you change the value of the
multiRegionproperty on an existing KMS key, the update request fails, regardless of the value of the UpdateReplacePolicy attribute. This prevents you from accidentally deleting a KMS key by changing an immutable property value.Default: false
- See Also:
-
getPendingWindow
Specifies the number of days in the waiting period before AWS KMS deletes a CMK that has been removed from a CloudFormation stack.When you remove a customer master key (CMK) from a CloudFormation stack, AWS KMS schedules the CMK for deletion and starts the mandatory waiting period. The PendingWindowInDays property determines the length of waiting period. During the waiting period, the key state of CMK is Pending Deletion, which prevents the CMK from being used in cryptographic operations. When the waiting period expires, AWS KMS permanently deletes the CMK.
Enter a value between 7 and 30 days.
Default: - 30 days
- See Also:
-
getPolicy
Custom policy document to attach to the KMS key.NOTE - If the
@aws-cdk/aws-kms:defaultKeyPoliciesfeature flag is set (the default for new projects), this policy will override the default key policy and become the only key policy for the key. If the feature flag is not set, this policy will be appended to the default key policy.Default: - A policy document with permissions for the account root to administer the key will be created.
-
getRemovalPolicy
Whether the encryption key should be retained when it is removed from the Stack.This is useful when one wants to retain access to data that was encrypted with a key that is being retired.
Default: RemovalPolicy.Retain
-
getRotationPeriod
The period between each automatic rotation.Default: - set by CFN to 365 days.
-
builder
- Returns:
- a
KeyProps.BuilderofKeyProps
-