Class: Aws::CloudFront::Types::DescribeFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DescribeFunctionRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass DescribeFunctionRequest data as a hash:
{
name: "string", # required
stage: "DEVELOPMENT", # accepts DEVELOPMENT, LIVE
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the function that you are getting information about.
-
#stage ⇒ String
The function’s stage, either
DEVELOPMENT
orLIVE
.
Instance Attribute Details
#name ⇒ String
The name of the function that you are getting information about.
4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4385 class DescribeFunctionRequest < Struct.new( :name, :stage) SENSITIVE = [] include Aws::Structure end |
#stage ⇒ String
The function’s stage, either DEVELOPMENT
or LIVE
.
4385 4386 4387 4388 4389 4390 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4385 class DescribeFunctionRequest < Struct.new( :name, :stage) SENSITIVE = [] include Aws::Structure end |