DataProtectionSettingsInlineRedactionConfigurationInlineRedactionPatternRedactionPlaceHolder.fromMap constructor
DataProtectionSettingsInlineRedactionConfigurationInlineRedactionPatternRedactionPlaceHolder.fromMap()
Implementation
factory DataProtectionSettingsInlineRedactionConfigurationInlineRedactionPatternRedactionPlaceHolder.fromMap(Map<String, dynamic> map) {
return DataProtectionSettingsInlineRedactionConfigurationInlineRedactionPatternRedactionPlaceHolder(
redactionPlaceHolderText: (() { final guardedValue = map['redactionPlaceHolderText']; if (guardedValue == null) return null; return pulumi.Input.fromValue(guardedValue as String); })(),
redactionPlaceHolderType: pulumi.Input.fromValue(map['redactionPlaceHolderType'] as String),
);
}