Class: Aws::CloudFront::Types::FunctionAssociation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::FunctionAssociation
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass FunctionAssociation data as a hash:
{
function_arn: "FunctionARN", # required
event_type: "viewer-request", # required, accepts viewer-request, viewer-response, origin-request, origin-response
}
A CloudFront function that is associated with a cache behavior in a CloudFront distribution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_type ⇒ String
The event type of the function, either
viewer-request
orviewer-response
. -
#function_arn ⇒ String
The Amazon Resource Name (ARN) of the function.
Instance Attribute Details
#event_type ⇒ String
The event type of the function, either viewer-request
or
viewer-response
. You cannot use origin-facing event types
(origin-request
and origin-response
) with a CloudFront function.
6294 6295 6296 6297 6298 6299 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 6294 class FunctionAssociation < Struct.new( :function_arn, :event_type) SENSITIVE = [] include Aws::Structure end |
#function_arn ⇒ String
The Amazon Resource Name (ARN) of the function.
6294 6295 6296 6297 6298 6299 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 6294 class FunctionAssociation < Struct.new( :function_arn, :event_type) SENSITIVE = [] include Aws::Structure end |