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