Skip to content

Commit

Permalink
feat(elasticsearch): add support for version 7_8 and 7_9 (#12222)
Browse files Browse the repository at this point in the history
closes #12202


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
saudkhanzada committed Dec 25, 2020
1 parent 998af8f commit 09d1f6c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/@aws-cdk/aws-elasticsearch/lib/domain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ export class ElasticsearchVersion {
/** AWS Elasticsearch 7.7 */
public static readonly V7_7 = ElasticsearchVersion.of('7.7');

/** AWS Elasticsearch 7.8 */
public static readonly V7_8 = ElasticsearchVersion.of('7.8');

/** AWS Elasticsearch 7.9 */
public static readonly V7_9 = ElasticsearchVersion.of('7.9');

/**
* Custom Elasticsearch version
* @param version custom version number
Expand Down

0 comments on commit 09d1f6c

Please sign in to comment.