Class: Aws::CloudFront::Types::FunctionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::FunctionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass FunctionConfig data as a hash:
{
comment: "string", # required
runtime: "cloudfront-js-1.0", # required, accepts cloudfront-js-1.0
}
Contains configuration information about a CloudFront function.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
A comment to describe the function.
-
#runtime ⇒ String
The function’s runtime environment.
Instance Attribute Details
#comment ⇒ String
A comment to describe the function.
6096 6097 6098 6099 6100 6101 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6096 class FunctionConfig < Struct.new( :comment, :runtime) SENSITIVE = [] include Aws::Structure end |
#runtime ⇒ String
The function’s runtime environment. The only valid value is ‘cloudfront-js-1.0`.
6096 6097 6098 6099 6100 6101 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6096 class FunctionConfig < Struct.new( :comment, :runtime) SENSITIVE = [] include Aws::Structure end |