Interface CfnFunction.SnapStartResponseProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnFunction.SnapStartResponseProperty.Jsii$Proxy
- Enclosing class:
- CfnFunction
@Stability(Stable)
public static interface CfnFunction.SnapStartResponseProperty
extends software.amazon.jsii.JsiiSerializable
The function's SnapStart setting.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lambda.*;
 SnapStartResponseProperty snapStartResponseProperty = SnapStartResponseProperty.builder()
         .applyOn("applyOn")
         .optimizationStatus("optimizationStatus")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFunction.SnapStartResponsePropertystatic final classAn implementation forCfnFunction.SnapStartResponseProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default StringWhen set toPublishedVersions, Lambda creates a snapshot of the execution environment when you publish a function version.default StringWhen you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getApplyOnWhen set toPublishedVersions, Lambda creates a snapshot of the execution environment when you publish a function version.- See Also:
 
- 
getOptimizationStatusWhen you provide a qualified Amazon Resource Name (ARN) , this response element indicates whether SnapStart is activated for the specified function version.- See Also:
 
- 
builder
 
-