SSEDescription.fromJson constructor
Implementation
factory SSEDescription.fromJson(Map<String, dynamic> json) {
return SSEDescription(
inaccessibleEncryptionDateTime:
timeStampFromJson(json['InaccessibleEncryptionDateTime']),
kMSMasterKeyArn: json['KMSMasterKeyArn'] as String?,
sSEType: (json['SSEType'] as String?)?.toSSEType(),
status: (json['Status'] as String?)?.toSSEStatus(),
);
}