Class: Aws::CloudFront::Types::DeleteFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeleteFunctionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass DeleteFunctionRequest 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 deleting, which you can get using `DescribeFunction`.
-
#name ⇒ String
The name of the function that you are deleting.
Instance Attribute Details
#if_match ⇒ String
The current version (‘ETag` value) of the function that you are deleting, which you can get using `DescribeFunction`.
3945 3946 3947 3948 3949 3950 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3945 class DeleteFunctionRequest < Struct.new( :name, :if_match) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the function that you are deleting.
3945 3946 3947 3948 3949 3950 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3945 class DeleteFunctionRequest < Struct.new( :name, :if_match) SENSITIVE = [] include Aws::Structure end |