Class: Aws::CloudFront::Types::ResponseHeadersPolicyContentSecurityPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ResponseHeadersPolicyContentSecurityPolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
The policy directives and their values that CloudFront includes as values for the ‘Content-Security-Policy` HTTP response header.
For more information about the ‘Content-Security-Policy` HTTP response header, see [Content-Security-Policy] in the MDN Web Docs.
[1]: developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content_security_policy ⇒ String
The policy directives and their values that CloudFront includes as values for the ‘Content-Security-Policy` HTTP response header.
-
#override ⇒ Boolean
A Boolean that determines whether CloudFront overrides the ‘Content-Security-Policy` HTTP response header received from the origin with the one specified in this response headers policy.
Instance Attribute Details
#content_security_policy ⇒ String
The policy directives and their values that CloudFront includes as values for the ‘Content-Security-Policy` HTTP response header.
9952 9953 9954 9955 9956 9957 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9952 class ResponseHeadersPolicyContentSecurityPolicy < Struct.new( :override, :content_security_policy) SENSITIVE = [] include Aws::Structure end |
#override ⇒ Boolean
A Boolean that determines whether CloudFront overrides the ‘Content-Security-Policy` HTTP response header received from the origin with the one specified in this response headers policy.
9952 9953 9954 9955 9956 9957 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9952 class ResponseHeadersPolicyContentSecurityPolicy < Struct.new( :override, :content_security_policy) SENSITIVE = [] include Aws::Structure end |