UpdateBandwidthRateLimitScheduleOutput.fromJson constructor

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

Implementation

factory UpdateBandwidthRateLimitScheduleOutput.fromJson(
    Map<String, dynamic> json) {
  return UpdateBandwidthRateLimitScheduleOutput(
    gatewayARN: json['GatewayARN'] as String?,
  );
}