LogDataProtectionPolicyArgs constructor

const LogDataProtectionPolicyArgs({
  1. required Input<String> logGroupName,
  2. required Input<String> policyDocument,
  3. Input<String?>? region,
})

Creates a new LogDataProtectionPolicyArgs. logGroupName The name of the log group under which the log stream is to be created. policyDocument Specifies the data protection policy in JSON. Read more at Data protection policy syntax. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const LogDataProtectionPolicyArgs({
  required this.logGroupName,
  required this.policyDocument,
  this.region,
});