toJson method
Implementation
Map<String, dynamic> toJson() {
final inaccessibleEncryptionDateTime = this.inaccessibleEncryptionDateTime;
final kmsMasterKeyArn = this.kmsMasterKeyArn;
final sseType = this.sseType;
final status = this.status;
return {
if (inaccessibleEncryptionDateTime != null)
'InaccessibleEncryptionDateTime': inaccessibleEncryptionDateTime,
if (kmsMasterKeyArn != null) 'KmsMasterKeyArn': kmsMasterKeyArn,
if (sseType != null) 'SseType': sseType,
if (status != null) 'Status': status,
};
}