AwsJobExecutionsRolloutConfig.fromJson constructor

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

Implementation

factory AwsJobExecutionsRolloutConfig.fromJson(Map<String, dynamic> json) {
  return AwsJobExecutionsRolloutConfig(
    exponentialRate: json['exponentialRate'] != null
        ? AwsJobExponentialRolloutRate.fromJson(
            json['exponentialRate'] as Map<String, dynamic>)
        : null,
    maximumPerMinute: json['maximumPerMinute'] as int?,
  );
}