CacheBehavior constructor

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

Implementation

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