AwsDynamoDbTableSseDescription.fromJson constructor
Implementation
factory AwsDynamoDbTableSseDescription.fromJson(Map<String, dynamic> json) {
return AwsDynamoDbTableSseDescription(
inaccessibleEncryptionDateTime:
json['InaccessibleEncryptionDateTime'] as String?,
kmsMasterKeyArn: json['KmsMasterKeyArn'] as String?,
sseType: json['SseType'] as String?,
status: json['Status'] as String?,
);
}