Class: Aws::CloudFront::Types::ResponseHeadersPolicyContentSecurityPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::ResponseHeadersPolicyContentSecurityPolicy
- Defined in:
- gems/aws-sdk-cloudfront/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.
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 'gems/aws-sdk-cloudfront/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 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 9952 class ResponseHeadersPolicyContentSecurityPolicy < Struct.new( :override, :content_security_policy) SENSITIVE = [] include Aws::Structure end |