interface LastLaunchedProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnLifecyclePolicy.LastLaunchedProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnLifecyclePolicy_LastLaunchedProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnLifecyclePolicy.LastLaunchedProperty |
Python | aws_cdk.aws_imagebuilder.CfnLifecyclePolicy.LastLaunchedProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnLifecyclePolicy » LastLaunchedProperty |
Defines criteria to exclude AMIs from lifecycle actions based on the last time they were used to launch an instance.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const lastLaunchedProperty: imagebuilder.CfnLifecyclePolicy.LastLaunchedProperty = {
unit: 'unit',
value: 123,
};
Properties
Name | Type | Description |
---|---|---|
unit | string | Defines the unit of time that the lifecycle policy uses to calculate elapsed time since the last instance launched from the AMI. |
value | number | The integer number of units for the time period. |
unit
Type:
string
Defines the unit of time that the lifecycle policy uses to calculate elapsed time since the last instance launched from the AMI.
For example: days, weeks, months, or years.
value
Type:
number
The integer number of units for the time period.
For example 6
(months).