interface ColdStorageOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService.CfnDomainPropsMixin.ColdStorageOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchservice#CfnDomainPropsMixin_ColdStorageOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchservice.CfnDomainPropsMixin.ColdStorageOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchservice.CfnDomainPropsMixin.ColdStorageOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchservice » 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 { aws_opensearchservice as opensearchservice } from '@aws-cdk/cfn-property-mixins';
const coldStorageOptionsProperty: opensearchservice.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