interface MicrovmHooksProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnMicrovmImagePropsMixin.MicrovmHooksProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnMicrovmImagePropsMixin_MicrovmHooksProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnMicrovmImagePropsMixin.MicrovmHooksProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnMicrovmImagePropsMixin.MicrovmHooksProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnMicrovmImagePropsMixin » MicrovmHooksProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const microvmHooksProperty: lambda.CfnMicrovmImagePropsMixin.MicrovmHooksProperty = {
resume: 'resume',
resumeTimeoutInSeconds: 123,
run: 'run',
runTimeoutInSeconds: 123,
suspend: 'suspend',
suspendTimeoutInSeconds: 123,
terminate: 'terminate',
terminateTimeoutInSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| resume? | string | |
| resume | number | |
| run? | string | |
| run | number | |
| suspend? | string | |
| suspend | number | |
| terminate? | string | |
| terminate | number |
resume?
Type:
string
(optional)
resumeTimeoutInSeconds?
Type:
number
(optional)
run?
Type:
string
(optional)
runTimeoutInSeconds?
Type:
number
(optional)
suspend?
Type:
string
(optional)
suspendTimeoutInSeconds?
Type:
number
(optional)
terminate?
Type:
string
(optional)
terminateTimeoutInSeconds?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript