Skip to content

Commit 4f0915a

Browse files
AWSL-Applin
AWS
authored andcommitted
Amazon OpenSearch Service Update: This release adds support for SkipUnavailable connection property for cross cluster search
1 parent fd34dd0 commit 4f0915a

File tree

2 files changed

+34
-3
lines changed

2 files changed

+34
-3
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon OpenSearch Service",
4+
"contributor": "",
5+
"description": "This release adds support for SkipUnavailable connection property for cross cluster search"
6+
}

services/opensearch/src/main/resources/codegen-resources/service-2.json

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1763,7 +1763,11 @@
17631763
"members":{
17641764
"Endpoint":{
17651765
"shape":"Endpoint",
1766-
"documentation":"<p>The endpoint of the remote domain.</p>"
1766+
"documentation":"<important> <p>The Endpoint attribute cannot be modified. </p> </important> <p>The endpoint of the remote domain. Applicable for VPC_ENDPOINT connection mode.</p>"
1767+
},
1768+
"CrossClusterSearch":{
1769+
"shape":"CrossClusterSearchConnectionProperties",
1770+
"documentation":"<p>The connection properties for cross cluster search.</p>"
17671771
}
17681772
},
17691773
"documentation":"<p>The connection properties of an outbound connection.</p>"
@@ -1880,6 +1884,10 @@
18801884
"ConnectionMode":{
18811885
"shape":"ConnectionMode",
18821886
"documentation":"<p>The connection mode.</p>"
1887+
},
1888+
"ConnectionProperties":{
1889+
"shape":"ConnectionProperties",
1890+
"documentation":"<p>The <code>ConnectionProperties</code> for the outbound connection.</p>"
18831891
}
18841892
},
18851893
"documentation":"<p>Container for the parameters to the <code>CreateOutboundConnection</code> operation.</p>"
@@ -1987,6 +1995,16 @@
19871995
}
19881996
},
19891997
"CreatedAt":{"type":"timestamp"},
1998+
"CrossClusterSearchConnectionProperties":{
1999+
"type":"structure",
2000+
"members":{
2001+
"SkipUnavailable":{
2002+
"shape":"SkipUnavailableStatus",
2003+
"documentation":"<p>Status of SkipUnavailable param for outbound connection.</p>"
2004+
}
2005+
},
2006+
"documentation":"<p>Cross cluster search specific connection properties.</p>"
2007+
},
19902008
"DeleteDomainRequest":{
19912009
"type":"structure",
19922010
"required":["DomainName"],
@@ -2529,8 +2547,7 @@
25292547
},
25302548
"DescribePackagesFilterValues":{
25312549
"type":"list",
2532-
"member":{"shape":"DescribePackagesFilterValue"},
2533-
"min":1
2550+
"member":{"shape":"DescribePackagesFilterValue"}
25342551
},
25352552
"DescribePackagesRequest":{
25362553
"type":"structure",
@@ -5136,6 +5153,14 @@
51365153
"type":"string",
51375154
"documentation":"<p>The domain endpoint to which index and search requests are submitted. For example, <code>search-imdb-movies-oopcnjfn6ugo.eu-west-1.es.amazonaws.com</code> or <code>doc-imdb-movies-oopcnjfn6u.eu-west-1.es.amazonaws.com</code>.</p>"
51385155
},
5156+
"SkipUnavailableStatus":{
5157+
"type":"string",
5158+
"documentation":"<p>Status of SkipUnavailable param for outbound connection.</p> <ul> <li> <p> <b>ENABLED</b> - The SkipUnavailable param is enabled for the connection.</p> </li> <li> <p> <b>DISABLED</b> - The SkipUnavailable param is disabled for the connection.</p> </li> </ul>",
5159+
"enum":[
5160+
"ENABLED",
5161+
"DISABLED"
5162+
]
5163+
},
51395164
"SlotList":{
51405165
"type":"list",
51415166
"member":{"shape":"Long"}

0 commit comments

Comments
 (0)