DescribeConfigurationAggregatorSourcesStatusResponse.fromJson constructor

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

Implementation

factory DescribeConfigurationAggregatorSourcesStatusResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeConfigurationAggregatorSourcesStatusResponse(
    aggregatedSourceStatusList: (json['AggregatedSourceStatusList'] as List?)
        ?.whereNotNull()
        .map(
            (e) => AggregatedSourceStatus.fromJson(e as Map<String, dynamic>))
        .toList(),
    nextToken: json['NextToken'] as String?,
  );
}