AwsCloudFrontDistributionLogging.fromJson constructor
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?,
);
}