Method: Aws::CloudFront::Types::CacheBehavior#trusted_signers

Defined in:
lib/aws-sdk-cloudfront/types.rb

#trusted_signersTypes::TrustedSigners

We recommend using ‘TrustedKeyGroups` instead of `TrustedSigners`.

<note markdown="1"> This field only supports standard

distributions. You can’t specify this field for multi-tenant distributions. For more information, see

Unsupported features for SaaS Manager for Amazon CloudFront][1

in

the *Amazon CloudFront Developer Guide*.

</note>

A list of Amazon Web Services account IDs whose public keys

CloudFront can use to validate signed URLs or signed cookies.

When a cache behavior contains trusted signers, CloudFront requires

signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer’s Amazon Web Services account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see [Serving private content] in the *Amazon CloudFront Developer Guide*.

[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-config-options.html#unsupported-saas [2]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html



889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
# File 'lib/aws-sdk-cloudfront/types.rb', line 889

class CacheBehavior < Struct.new(
  :path_pattern,
  :target_origin_id,
  :trusted_signers,
  :trusted_key_groups,
  :viewer_protocol_policy,
  :allowed_methods,
  :smooth_streaming,
  :compress,
  :lambda_function_associations,
  :function_associations,
  :field_level_encryption_id,
  :realtime_log_config_arn,
  :cache_policy_id,
  :origin_request_policy_id,
  :response_headers_policy_id,
  :grpc_config,
  :forwarded_values,
  :min_ttl,
  :default_ttl,
  :max_ttl)
  SENSITIVE = []
  include Aws::Structure
end