Class: Aws::CloudFront::Types::CreateFunctionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::CreateFunctionRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:function_code]
Instance Attribute Summary collapse
-
#function_code ⇒ String
The function code.
-
#function_config ⇒ Types::FunctionConfig
Configuration information about the function, including an optional comment and the function's runtime.
-
#name ⇒ String
A name to identify the function.
-
#tags ⇒ Types::Tags
A complex type that contains zero or more
Tagelements.
Instance Attribute Details
#function_code ⇒ String
The function code. For more information about writing a CloudFront function, see Writing function code for CloudFront Functions in the Amazon CloudFront Developer Guide.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2946 class CreateFunctionRequest < Struct.new( :name, :function_config, :function_code, :tags) SENSITIVE = [:function_code] include Aws::Structure end |
#function_config ⇒ Types::FunctionConfig
Configuration information about the function, including an optional comment and the function's runtime.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2946 class CreateFunctionRequest < Struct.new( :name, :function_config, :function_code, :tags) SENSITIVE = [:function_code] include Aws::Structure end |
#name ⇒ String
A name to identify the function.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2946 class CreateFunctionRequest < Struct.new( :name, :function_config, :function_code, :tags) SENSITIVE = [:function_code] include Aws::Structure end |
#tags ⇒ Types::Tags
A complex type that contains zero or more Tag elements.
2946 2947 2948 2949 2950 2951 2952 2953 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 2946 class CreateFunctionRequest < Struct.new( :name, :function_config, :function_code, :tags) SENSITIVE = [:function_code] include Aws::Structure end |