AwsCloudFrontDistributionLogging.fromJson constructor

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

Implementation

factory AwsCloudFrontDistributionLogging.fromJson(Map<String, dynamic> json) {
  return AwsCloudFrontDistributionLogging(
    bucket: json['Bucket'] as String?,
    enabled: json['Enabled'] as bool?,
    includeCookies: json['IncludeCookies'] as bool?,
    prefix: json['Prefix'] as String?,
  );
}