interface IncludeResourcesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnLifecyclePolicyPropsMixin.IncludeResourcesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnLifecyclePolicyPropsMixin_IncludeResourcesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnLifecyclePolicyPropsMixin.IncludeResourcesProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnLifecyclePolicyPropsMixin.IncludeResourcesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnLifecyclePolicyPropsMixin » IncludeResourcesProperty |
Specifies how the lifecycle policy should apply actions to selected resources.
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/cfn-property-mixins';
const includeResourcesProperty: imagebuilder.CfnLifecyclePolicyPropsMixin.IncludeResourcesProperty = {
amis: false,
containers: false,
snapshots: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| amis? | boolean | IResolvable | Specifies whether the lifecycle action should apply to distributed AMIs. |
| containers? | boolean | IResolvable | Specifies whether the lifecycle action should apply to distributed containers. |
| snapshots? | boolean | IResolvable | Specifies whether the lifecycle action should apply to snapshots associated with distributed AMIs. |
amis?
Type:
boolean | IResolvable
(optional)
Specifies whether the lifecycle action should apply to distributed AMIs.
containers?
Type:
boolean | IResolvable
(optional)
Specifies whether the lifecycle action should apply to distributed containers.
snapshots?
Type:
boolean | IResolvable
(optional)
Specifies whether the lifecycle action should apply to snapshots associated with distributed AMIs.

.NET
Go
Java
Python
TypeScript