GetLogDataProtectionPolicyDocumentStatement constructor

const GetLogDataProtectionPolicyDocumentStatement({
  1. required Input<List<String>> dataIdentifiers,
  2. required Input<GetLogDataProtectionPolicyDocumentStatementOperation> operation,
  3. Input<String?>? sid,
})

Creates a new GetLogDataProtectionPolicyDocumentStatement. dataIdentifiers Set of at least 1 sensitive data identifiers that you want to mask. Read more in Types of data that you can protect. operation Configures the data protection operation applied by this statement. sid Name of this statement.

Implementation

const GetLogDataProtectionPolicyDocumentStatement({
  required this.dataIdentifiers,
  required this.operation,
  this.sid,
});