Class: Aws::CloudFront::Types::PublishFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::PublishFunctionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass PublishFunctionRequest data as a hash:
{
name: "string", # required
if_match: "string", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#if_match ⇒ String
The current version (`ETag` value) of the function that you are publishing, which you can get using `DescribeFunction`.
-
#name ⇒ String
The name of the function that you are publishing.
Instance Attribute Details
#if_match ⇒ String
The current version (`ETag` value) of the function that you are publishing, which you can get using `DescribeFunction`.
11020 11021 11022 11023 11024 11025 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 11020 class PublishFunctionRequest < Struct.new( :name, :if_match) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the function that you are publishing.
11020 11021 11022 11023 11024 11025 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 11020 class PublishFunctionRequest < Struct.new( :name, :if_match) SENSITIVE = [] include Aws::Structure end |