Class: Aws::CloudFront::Types::TestFunctionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudfront/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:event_object]

Instance Attribute Summary collapse

Instance Attribute Details

#event_objectString

The event object to test the function with. For more information about the structure of the event object, see [Testing functions] in the *Amazon CloudFront Developer Guide*.

[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/managing-functions.html#test-function

Returns:

  • (String)


11290
11291
11292
11293
11294
11295
11296
11297
# File 'lib/aws-sdk-cloudfront/types.rb', line 11290

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

#if_matchString

The current version (‘ETag` value) of the function that you are testing, which you can get using `DescribeFunction`.

Returns:

  • (String)


11290
11291
11292
11293
11294
11295
11296
11297
# File 'lib/aws-sdk-cloudfront/types.rb', line 11290

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

#nameString

The name of the function that you are testing.

Returns:

  • (String)


11290
11291
11292
11293
11294
11295
11296
11297
# File 'lib/aws-sdk-cloudfront/types.rb', line 11290

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

#stageString

The stage of the function that you are testing, either ‘DEVELOPMENT` or `LIVE`.

Returns:

  • (String)


11290
11291
11292
11293
11294
11295
11296
11297
# File 'lib/aws-sdk-cloudfront/types.rb', line 11290

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