GetLogDataProtectionPolicyDocumentArgs constructor

const GetLogDataProtectionPolicyDocumentArgs({
  1. Input<GetLogDataProtectionPolicyDocumentConfiguration?>? configuration,
  2. Input<String?>? description,
  3. required Input<String> name,
  4. required Input<List<GetLogDataProtectionPolicyDocumentStatement>> statements,
  5. Input<String?>? version,
})

Creates a new GetLogDataProtectionPolicyDocumentArgs. configuration Optional. description Optional. name The name of the data protection policy document. statements Configures the data protection policy. version Optional.

Implementation

const GetLogDataProtectionPolicyDocumentArgs({
  this.configuration,
  this.description,
  required this.name,
  required this.statements,
  this.version,
});