AwsDynamoDbTableProvisionedThroughput.fromJson constructor

AwsDynamoDbTableProvisionedThroughput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AwsDynamoDbTableProvisionedThroughput.fromJson(
    Map<String, dynamic> json) {
  return AwsDynamoDbTableProvisionedThroughput(
    lastDecreaseDateTime: json['LastDecreaseDateTime'] as String?,
    lastIncreaseDateTime: json['LastIncreaseDateTime'] as String?,
    numberOfDecreasesToday: json['NumberOfDecreasesToday'] as int?,
    readCapacityUnits: json['ReadCapacityUnits'] as int?,
    writeCapacityUnits: json['WriteCapacityUnits'] as int?,
  );
}