interface ColdStorageOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins.CfnDomainPropsMixin.ColdStorageOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchservice/mixins#CfnDomainPropsMixin_ColdStorageOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.CfnDomainPropsMixin.ColdStorageOptionsProperty |
Python | aws_cdk.mixins_preview.aws_opensearchservice.mixins.CfnDomainPropsMixin.ColdStorageOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchservice » mixins » CfnDomainPropsMixin » ColdStorageOptionsProperty |
Container for the parameters required to enable cold storage for an OpenSearch Service domain.
For more information, see Cold storage for Amazon OpenSearch Service .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchservice_mixins } from '@aws-cdk/mixins-preview/aws-opensearchservice';
const coldStorageOptionsProperty: opensearchservice_mixins.CfnDomainPropsMixin.ColdStorageOptionsProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Whether to enable or disable cold storage on the domain. |
enabled?
Type:
boolean | IResolvable
(optional)
Whether to enable or disable cold storage on the domain.
You must enable UltraWarm storage to enable cold storage.

.NET
Go
Java
Python
TypeScript