GetLogDataProtectionPolicyDocumentConfigurationCustomDataIdentifier.fromMap constructor

GetLogDataProtectionPolicyDocumentConfigurationCustomDataIdentifier.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory GetLogDataProtectionPolicyDocumentConfigurationCustomDataIdentifier.fromMap(Map<String, dynamic> map) {
  return GetLogDataProtectionPolicyDocumentConfigurationCustomDataIdentifier(
    name: pulumi.Input.fromValue(map['name'] as String),
    regex: pulumi.Input.fromValue(map['regex'] as String),
  );
}