toJson method
Implementation
Map<String, dynamic> toJson() {
final indexName = this.indexName;
final provisionedThroughput = this.provisionedThroughput;
return {
'IndexName': indexName,
'ProvisionedThroughput': provisionedThroughput,
};
}