Class: Aws::Lambda::Types::PublishLayerVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::PublishLayerVersionRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compatible_architectures ⇒ Array<String>
A list of compatible [instruction set architectures][1].
-
#compatible_runtimes ⇒ Array<String>
A list of compatible [function runtimes][1].
-
#content ⇒ Types::LayerVersionContentInput
The function layer archive.
-
#description ⇒ String
The description of the version.
-
#layer_name ⇒ String
The name or Amazon Resource Name (ARN) of the layer.
-
#license_info ⇒ String
The layer's software license.
Instance Attribute Details
#compatible_architectures ⇒ Array<String>
A list of compatible instruction set architectures.
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7873 class PublishLayerVersionRequest < Struct.new( :layer_name, :description, :content, :compatible_architectures, :compatible_runtimes, :license_info) SENSITIVE = [] include Aws::Structure end |
#compatible_runtimes ⇒ Array<String>
A list of compatible function runtimes. Used for filtering with ListLayers and ListLayerVersions.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7873 class PublishLayerVersionRequest < Struct.new( :layer_name, :description, :content, :compatible_architectures, :compatible_runtimes, :license_info) SENSITIVE = [] include Aws::Structure end |
#content ⇒ Types::LayerVersionContentInput
The function layer archive.
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7873 class PublishLayerVersionRequest < Struct.new( :layer_name, :description, :content, :compatible_architectures, :compatible_runtimes, :license_info) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the version.
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7873 class PublishLayerVersionRequest < Struct.new( :layer_name, :description, :content, :compatible_architectures, :compatible_runtimes, :license_info) SENSITIVE = [] include Aws::Structure end |
#layer_name ⇒ String
The name or Amazon Resource Name (ARN) of the layer.
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7873 class PublishLayerVersionRequest < Struct.new( :layer_name, :description, :content, :compatible_architectures, :compatible_runtimes, :license_info) SENSITIVE = [] include Aws::Structure end |
#license_info ⇒ String
The layer's software license. It can be any of the following:
An SPDX license identifier. For example,
MIT.The URL of a license hosted on the internet. For example,
https://opensource.org/licenses/MIT.The full text of the license.
7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 7873 class PublishLayerVersionRequest < Struct.new( :layer_name, :description, :content, :compatible_architectures, :compatible_runtimes, :license_info) SENSITIVE = [] include Aws::Structure end |