DataProtectionSettingsAssociationArgs.fromMap constructor
DataProtectionSettingsAssociationArgs.fromMap(
- Map<String, dynamic> map
)
Implementation
factory DataProtectionSettingsAssociationArgs.fromMap(Map<String, dynamic> map) {
return DataProtectionSettingsAssociationArgs(
dataProtectionSettingsArn: pulumi.Input.fromValue(map['dataProtectionSettingsArn'] as String),
portalArn: pulumi.Input.fromValue(map['portalArn'] as String),
region: (() { final guardedValue = map['region']; if (guardedValue == null) return null; return pulumi.Input.fromValue(guardedValue as String); })(),
);
}