Class: Aws::CloudFront::Types::UpdateFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::UpdateFunctionRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:function_code]
Instance Attribute Summary collapse
-
#function_code ⇒ String
The function code.
-
#function_config ⇒ Types::FunctionConfig
Configuration information about the function.
-
#if_match ⇒ String
The current version (
ETag
value) of the function that you are updating, which you can get usingDescribeFunction
. -
#name ⇒ String
The name of the function that you are updating.
Instance Attribute Details
#function_code ⇒ String
The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.
13255 13256 13257 13258 13259 13260 13261 13262 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 13255 class UpdateFunctionRequest < Struct.new( :name, :if_match, :function_config, :function_code) SENSITIVE = [:function_code] include Aws::Structure end |
#function_config ⇒ Types::FunctionConfig
Configuration information about the function.
13255 13256 13257 13258 13259 13260 13261 13262 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 13255 class UpdateFunctionRequest < Struct.new( :name, :if_match, :function_config, :function_code) SENSITIVE = [:function_code] include Aws::Structure end |
#if_match ⇒ String
The current version (ETag
value) of the function that you are
updating, which you can get using DescribeFunction
.
13255 13256 13257 13258 13259 13260 13261 13262 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 13255 class UpdateFunctionRequest < Struct.new( :name, :if_match, :function_config, :function_code) SENSITIVE = [:function_code] include Aws::Structure end |
#name ⇒ String
The name of the function that you are updating.
13255 13256 13257 13258 13259 13260 13261 13262 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 13255 class UpdateFunctionRequest < Struct.new( :name, :if_match, :function_config, :function_code) SENSITIVE = [:function_code] include Aws::Structure end |