UpdateShardCountOutput.fromJson constructor
Implementation
factory UpdateShardCountOutput.fromJson(Map<String, dynamic> json) {
return UpdateShardCountOutput(
currentShardCount: json['CurrentShardCount'] as int?,
streamName: json['StreamName'] as String?,
targetShardCount: json['TargetShardCount'] as int?,
);
}