Class: Aws::CloudFront::Types::CreateFunctionRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:function_code]

Instance Attribute Summary collapse

Instance Attribute Details

#function_codeString

The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.

Returns:

  • (String)


2202
2203
2204
2205
2206
2207
2208
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2202

class CreateFunctionRequest < Struct.new(
  :name,
  :function_config,
  :function_code)
  SENSITIVE = [:function_code]
  include Aws::Structure
end

#function_configTypes::FunctionConfig

Configuration information about the function, including an optional comment and the function's runtime.



2202
2203
2204
2205
2206
2207
2208
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2202

class CreateFunctionRequest < Struct.new(
  :name,
  :function_config,
  :function_code)
  SENSITIVE = [:function_code]
  include Aws::Structure
end

#nameString

A name to identify the function.

Returns:

  • (String)


2202
2203
2204
2205
2206
2207
2208
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2202

class CreateFunctionRequest < Struct.new(
  :name,
  :function_config,
  :function_code)
  SENSITIVE = [:function_code]
  include Aws::Structure
end