Class: Aws::CloudFront::Types::DescribeFunctionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#nameString

The name of the function that you are getting information about.

Returns:

  • (String)


4131
4132
4133
4134
4135
4136
# File 'lib/aws-sdk-cloudfront/types.rb', line 4131

class DescribeFunctionRequest < Struct.new(
  :name,
  :stage)
  SENSITIVE = []
  include Aws::Structure
end

#stageString

The function’s stage, either ‘DEVELOPMENT` or `LIVE`.

Returns:

  • (String)


4131
4132
4133
4134
4135
4136
# File 'lib/aws-sdk-cloudfront/types.rb', line 4131

class DescribeFunctionRequest < Struct.new(
  :name,
  :stage)
  SENSITIVE = []
  include Aws::Structure
end