Describe the feature
As of this summer, AWS released the ability to deploy OpenSearch in its newer version 3.1 through both the console and CloudFormation.
Official Doc
Use Case
Deploy Opensearch cluster in the latest major upgrade to test new performances.
Proposed Solution
Add the in the class EngineVersion the following:
/** AWS OpenSearch 3.0*/
public static readonly OPENSEARCH_3_0 = EngineVersion.openSearch('3.0');
/** AWS OpenSearch 3.1 */
public static readonly OPENSEARCH_3_1 = EngineVersion.openSearch('3.1');
So that the version Engine can be simply retrieved in the stack:
new Domain(this, 'OpenSearchDomain', {
version: EngineVersion.OPENSEARCH_3_1,
domainName: myDomainName,
});
Other Information
No response
Acknowledgements
AWS CDK Library version (aws-cdk-lib)
aws-cdk-lib@2.214.0
AWS CDK CLI version
2.1029.1
Environment details (OS name and version, etc.)
macOS 15.6 (Sequoia)
Describe the feature
As of this summer, AWS released the ability to deploy OpenSearch in its newer version 3.1 through both the console and CloudFormation.
Official Doc
Use Case
Deploy Opensearch cluster in the latest major upgrade to test new performances.
Proposed Solution
Add the in the class EngineVersion the following:
So that the version Engine can be simply retrieved in the stack:
Other Information
No response
Acknowledgements
AWS CDK Library version (aws-cdk-lib)
aws-cdk-lib@2.214.0
AWS CDK CLI version
2.1029.1
Environment details (OS name and version, etc.)
macOS 15.6 (Sequoia)