interface CfnLifecyclePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchServerless.CfnLifecyclePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchserverless#CfnLifecyclePolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.CfnLifecyclePolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnLifecyclePolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchserverless » CfnLifecyclePolicyMixinProps |
Properties for CfnLifecyclePolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as opensearchserverless } from '@aws-cdk/cfn-property-mixins';
const cfnLifecyclePolicyMixinProps: opensearchserverless.CfnLifecyclePolicyMixinProps = {
description: 'description',
name: 'name',
policy: 'policy',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the lifecycle policy. |
| name? | string | The name of the lifecycle policy. |
| policy? | string | The JSON policy document without any whitespaces. |
| type? | string | The type of lifecycle policy. |
description?
Type:
string
(optional)
The description of the lifecycle policy.
name?
Type:
string
(optional)
The name of the lifecycle policy.
policy?
Type:
string
(optional)
The JSON policy document without any whitespaces.
type?
Type:
string
(optional)
The type of lifecycle policy.

.NET
Go
Java
Python
TypeScript