Interface CfnPolicyEngineMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPolicyEngineMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.727Z")
@Stability(Stable)
public interface CfnPolicyEngineMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPolicyEnginePropsMixin.
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.bedrockagentcore.*;
CfnPolicyEngineMixinProps cfnPolicyEngineMixinProps = CfnPolicyEngineMixinProps.builder()
.description("description")
.encryptionKeyArn("encryptionKeyArn")
.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 forCfnPolicyEngineMixinPropsstatic final classAn implementation forCfnPolicyEngineMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA human-readable description of the policy engine's purpose and scope.default StringThe ARN of the KMS key used to encrypt the policy engine data.default StringgetName()The customer-assigned immutable name for the policy engine.getTags()A list of tags to assign to the policy engine.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A human-readable description of the policy engine's purpose and scope.- See Also:
-
getEncryptionKeyArn
The ARN of the KMS key used to encrypt the policy engine data.- See Also:
-
getName
The customer-assigned immutable name for the policy engine.- See Also:
-
getTags
A list of tags to assign to the policy engine.- See Also:
-
builder
- Returns:
- a
CfnPolicyEngineMixinProps.BuilderofCfnPolicyEngineMixinProps
-