AwsCloudFrontDistributionDefaultCacheBehavior.fromJson constructor

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

Implementation

factory AwsCloudFrontDistributionDefaultCacheBehavior.fromJson(
    Map<String, dynamic> json) {
  return AwsCloudFrontDistributionDefaultCacheBehavior(
    viewerProtocolPolicy: json['ViewerProtocolPolicy'] as String?,
  );
}