Interface DataProtectionPolicyConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataProtectionPolicyConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:10.115Z")
@Stability(Stable)
public interface DataProtectionPolicyConfig
extends software.amazon.jsii.JsiiSerializable
Interface representing a data protection policy.
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.logs.*;
Object statement;
DataProtectionPolicyConfig dataProtectionPolicyConfig = DataProtectionPolicyConfig.builder()
.description("description")
.name("name")
.statement(statement)
.version("version")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDataProtectionPolicyConfigstatic final classAn implementation forDataProtectionPolicyConfig -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Description of the data protection policy.Default: - 'cdk generated data protection policy'
-
getName
Name of the data protection policy.Default: - 'data-protection-policy-cdk'
-
getStatement
Statements within the data protection policy.Must contain one Audit and one Redact statement
-
getVersion
Version of the data protection policy. -
builder
- Returns:
- a
DataProtectionPolicyConfig.BuilderofDataProtectionPolicyConfig
-