Interface CfnPolicyEngineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPolicyEngineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:00.036Z")
@Stability(Stable)
public interface CfnPolicyEngineProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPolicyEngine.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.bedrockagentcore.*;
CfnPolicyEngineProps cfnPolicyEngineProps = CfnPolicyEngineProps.builder()
.name("name")
// the properties below are optional
.description("description")
.encryptionKeyArn("encryptionKeyArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPolicyEnginePropsstatic final classAn implementation forCfnPolicyEngineProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnPolicyEngineProps.Builderbuilder()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.getName()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
-
getName
The customer-assigned immutable name for the policy engine.- See Also:
-
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:
-
getTags
A list of tags to assign to the policy engine.- See Also:
-
builder
- Returns:
- a
CfnPolicyEngineProps.BuilderofCfnPolicyEngineProps
-