Interface DataProtectionPolicyConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DataProtectionPolicyConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)", date="2024-01-03T18:29:28.803Z") @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();
 
  • Method Details

    • getDescription

      @Stability(Stable) @NotNull String getDescription()
      Description of the data protection policy.

      Default: - 'cdk generated data protection policy'

    • getName

      @Stability(Stable) @NotNull String getName()
      Name of the data protection policy.

      Default: - 'data-protection-policy-cdk'

    • getStatement

      @Stability(Stable) @NotNull Object getStatement()
      Statements within the data protection policy.

      Must contain one Audit and one Redact statement

    • getVersion

      @Stability(Stable) @NotNull String getVersion()
      Version of the data protection policy.
    • builder

      @Stability(Stable) static DataProtectionPolicyConfig.Builder builder()
      Returns:
      a DataProtectionPolicyConfig.Builder of DataProtectionPolicyConfig