Class: Aws::Lambda::Types::SnapStartResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::SnapStartResponse
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
The function's SnapStart setting.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#apply_on ⇒ String
When set to
PublishedVersions
, Lambda creates a snapshot of the execution environment when you publish a function version. -
#optimization_status ⇒ String
When you provide a [qualified Amazon Resource Name (ARN)][1], this response element indicates whether SnapStart is activated for the specified function version.
Instance Attribute Details
#apply_on ⇒ String
When set to PublishedVersions
, Lambda creates a snapshot of the
execution environment when you publish a function version.
6125 6126 6127 6128 6129 6130 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6125 class SnapStartResponse < Struct.new( :apply_on, :optimization_status) SENSITIVE = [] include Aws::Structure end |
#optimization_status ⇒ String
When you provide a qualified Amazon Resource Name (ARN), this response element indicates whether SnapStart is activated for the specified function version.
6125 6126 6127 6128 6129 6130 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6125 class SnapStartResponse < Struct.new( :apply_on, :optimization_status) SENSITIVE = [] include Aws::Structure end |