DefaultCacheBehavior constructor

DefaultCacheBehavior({
  1. required ForwardedValues forwardedValues,
  2. required int minTTL,
  3. required String targetOriginId,
  4. required TrustedSigners trustedSigners,
  5. required ViewerProtocolPolicy viewerProtocolPolicy,
  6. AllowedMethods? allowedMethods,
  7. bool? compress,
  8. int? defaultTTL,
  9. String? fieldLevelEncryptionId,
  10. LambdaFunctionAssociations? lambdaFunctionAssociations,
  11. int? maxTTL,
  12. bool? smoothStreaming,
})

Implementation

DefaultCacheBehavior({
  required this.forwardedValues,
  required this.minTTL,
  required this.targetOriginId,
  required this.trustedSigners,
  required this.viewerProtocolPolicy,
  this.allowedMethods,
  this.compress,
  this.defaultTTL,
  this.fieldLevelEncryptionId,
  this.lambdaFunctionAssociations,
  this.maxTTL,
  this.smoothStreaming,
});