aws-sdk-elasticsearchservice 1.33.0 → 1.38.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -30,6 +32,7 @@ module Aws::ElasticsearchService
30
32
  # * {ConflictException}
31
33
  # * {DisabledOperationException}
32
34
  # * {InternalException}
35
+ # * {InvalidPaginationTokenException}
33
36
  # * {InvalidTypeException}
34
37
  # * {LimitExceededException}
35
38
  # * {ResourceAlreadyExistsException}
@@ -97,6 +100,16 @@ module Aws::ElasticsearchService
97
100
  end
98
101
  end
99
102
 
103
+ class InvalidPaginationTokenException < ServiceError
104
+
105
+ # @param [Seahorse::Client::RequestContext] context
106
+ # @param [String] message
107
+ # @param [Aws::ElasticsearchService::Types::InvalidPaginationTokenException] data
108
+ def initialize(context, message, data = Aws::EmptyStructure.new)
109
+ super(context, message, data)
110
+ end
111
+ end
112
+
100
113
  class InvalidTypeException < ServiceError
101
114
 
102
115
  # @param [Seahorse::Client::RequestContext] context
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -8,6 +10,40 @@
8
10
  module Aws::ElasticsearchService
9
11
  module Types
10
12
 
13
+ # Container for the parameters to the
14
+ # `AcceptInboundCrossClusterSearchConnection` operation.
15
+ #
16
+ # @note When making an API call, you may pass AcceptInboundCrossClusterSearchConnectionRequest
17
+ # data as a hash:
18
+ #
19
+ # {
20
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
21
+ # }
22
+ #
23
+ # @!attribute [rw] cross_cluster_search_connection_id
24
+ # The id of the inbound connection that you want to accept.
25
+ # @return [String]
26
+ #
27
+ class AcceptInboundCrossClusterSearchConnectionRequest < Struct.new(
28
+ :cross_cluster_search_connection_id)
29
+ SENSITIVE = []
30
+ include Aws::Structure
31
+ end
32
+
33
+ # The result of a `AcceptInboundCrossClusterSearchConnection` operation.
34
+ # Contains details of accepted inbound connection.
35
+ #
36
+ # @!attribute [rw] cross_cluster_search_connection
37
+ # Specifies the `InboundCrossClusterSearchConnection` of accepted
38
+ # inbound connection.
39
+ # @return [Types::InboundCrossClusterSearchConnection]
40
+ #
41
+ class AcceptInboundCrossClusterSearchConnectionResponse < Struct.new(
42
+ :cross_cluster_search_connection)
43
+ SENSITIVE = []
44
+ include Aws::Structure
45
+ end
46
+
11
47
  # An error occurred because user does not have permissions to access the
12
48
  # resource. Returns HTTP status code 403.
13
49
  #
@@ -34,6 +70,7 @@ module Aws::ElasticsearchService
34
70
  class AccessPoliciesStatus < Struct.new(
35
71
  :options,
36
72
  :status)
73
+ SENSITIVE = []
37
74
  include Aws::Structure
38
75
  end
39
76
 
@@ -64,6 +101,7 @@ module Aws::ElasticsearchService
64
101
  class AddTagsRequest < Struct.new(
65
102
  :arn,
66
103
  :tag_list)
104
+ SENSITIVE = []
67
105
  include Aws::Structure
68
106
  end
69
107
 
@@ -87,6 +125,7 @@ module Aws::ElasticsearchService
87
125
  class AdditionalLimit < Struct.new(
88
126
  :limit_name,
89
127
  :limit_values)
128
+ SENSITIVE = []
90
129
  include Aws::Structure
91
130
  end
92
131
 
@@ -119,6 +158,7 @@ module Aws::ElasticsearchService
119
158
  class AdvancedOptionsStatus < Struct.new(
120
159
  :options,
121
160
  :status)
161
+ SENSITIVE = []
122
162
  include Aws::Structure
123
163
  end
124
164
 
@@ -136,6 +176,7 @@ module Aws::ElasticsearchService
136
176
  class AdvancedSecurityOptions < Struct.new(
137
177
  :enabled,
138
178
  :internal_user_database_enabled)
179
+ SENSITIVE = []
139
180
  include Aws::Structure
140
181
  end
141
182
 
@@ -174,6 +215,7 @@ module Aws::ElasticsearchService
174
215
  :enabled,
175
216
  :internal_user_database_enabled,
176
217
  :master_user_options)
218
+ SENSITIVE = []
177
219
  include Aws::Structure
178
220
  end
179
221
 
@@ -193,6 +235,7 @@ module Aws::ElasticsearchService
193
235
  class AdvancedSecurityOptionsStatus < Struct.new(
194
236
  :options,
195
237
  :status)
238
+ SENSITIVE = []
196
239
  include Aws::Structure
197
240
  end
198
241
 
@@ -218,6 +261,7 @@ module Aws::ElasticsearchService
218
261
  class AssociatePackageRequest < Struct.new(
219
262
  :package_id,
220
263
  :domain_name)
264
+ SENSITIVE = []
221
265
  include Aws::Structure
222
266
  end
223
267
 
@@ -229,6 +273,7 @@ module Aws::ElasticsearchService
229
273
  #
230
274
  class AssociatePackageResponse < Struct.new(
231
275
  :domain_package_details)
276
+ SENSITIVE = []
232
277
  include Aws::Structure
233
278
  end
234
279
 
@@ -240,6 +285,7 @@ module Aws::ElasticsearchService
240
285
  #
241
286
  class BaseException < Struct.new(
242
287
  :message)
288
+ SENSITIVE = []
243
289
  include Aws::Structure
244
290
  end
245
291
 
@@ -262,6 +308,7 @@ module Aws::ElasticsearchService
262
308
  #
263
309
  class CancelElasticsearchServiceSoftwareUpdateRequest < Struct.new(
264
310
  :domain_name)
311
+ SENSITIVE = []
265
312
  include Aws::Structure
266
313
  end
267
314
 
@@ -274,6 +321,7 @@ module Aws::ElasticsearchService
274
321
  #
275
322
  class CancelElasticsearchServiceSoftwareUpdateResponse < Struct.new(
276
323
  :service_software_options)
324
+ SENSITIVE = []
277
325
  include Aws::Structure
278
326
  end
279
327
 
@@ -317,6 +365,7 @@ module Aws::ElasticsearchService
317
365
  :user_pool_id,
318
366
  :identity_pool_id,
319
367
  :role_arn)
368
+ SENSITIVE = []
320
369
  include Aws::Structure
321
370
  end
322
371
 
@@ -335,6 +384,7 @@ module Aws::ElasticsearchService
335
384
  class CognitoOptionsStatus < Struct.new(
336
385
  :options,
337
386
  :status)
387
+ SENSITIVE = []
338
388
  include Aws::Structure
339
389
  end
340
390
 
@@ -352,6 +402,7 @@ module Aws::ElasticsearchService
352
402
  class CompatibleVersionsMap < Struct.new(
353
403
  :source_version,
354
404
  :target_versions)
405
+ SENSITIVE = []
355
406
  include Aws::Structure
356
407
  end
357
408
 
@@ -537,6 +588,7 @@ module Aws::ElasticsearchService
537
588
  :log_publishing_options,
538
589
  :domain_endpoint_options,
539
590
  :advanced_security_options)
591
+ SENSITIVE = []
540
592
  include Aws::Structure
541
593
  end
542
594
 
@@ -549,6 +601,89 @@ module Aws::ElasticsearchService
549
601
  #
550
602
  class CreateElasticsearchDomainResponse < Struct.new(
551
603
  :domain_status)
604
+ SENSITIVE = []
605
+ include Aws::Structure
606
+ end
607
+
608
+ # Container for the parameters to the
609
+ # `CreateOutboundCrossClusterSearchConnection` operation.
610
+ #
611
+ # @note When making an API call, you may pass CreateOutboundCrossClusterSearchConnectionRequest
612
+ # data as a hash:
613
+ #
614
+ # {
615
+ # source_domain_info: { # required
616
+ # owner_id: "OwnerId",
617
+ # domain_name: "DomainName", # required
618
+ # region: "Region",
619
+ # },
620
+ # destination_domain_info: { # required
621
+ # owner_id: "OwnerId",
622
+ # domain_name: "DomainName", # required
623
+ # region: "Region",
624
+ # },
625
+ # connection_alias: "ConnectionAlias", # required
626
+ # }
627
+ #
628
+ # @!attribute [rw] source_domain_info
629
+ # Specifies the `DomainInformation` for the source Elasticsearch
630
+ # domain.
631
+ # @return [Types::DomainInformation]
632
+ #
633
+ # @!attribute [rw] destination_domain_info
634
+ # Specifies the `DomainInformation` for the destination Elasticsearch
635
+ # domain.
636
+ # @return [Types::DomainInformation]
637
+ #
638
+ # @!attribute [rw] connection_alias
639
+ # Specifies the connection alias that will be used by the customer for
640
+ # this connection.
641
+ # @return [String]
642
+ #
643
+ class CreateOutboundCrossClusterSearchConnectionRequest < Struct.new(
644
+ :source_domain_info,
645
+ :destination_domain_info,
646
+ :connection_alias)
647
+ SENSITIVE = []
648
+ include Aws::Structure
649
+ end
650
+
651
+ # The result of a `CreateOutboundCrossClusterSearchConnection` request.
652
+ # Contains the details of the newly created cross-cluster search
653
+ # connection.
654
+ #
655
+ # @!attribute [rw] source_domain_info
656
+ # Specifies the `DomainInformation` for the source Elasticsearch
657
+ # domain.
658
+ # @return [Types::DomainInformation]
659
+ #
660
+ # @!attribute [rw] destination_domain_info
661
+ # Specifies the `DomainInformation` for the destination Elasticsearch
662
+ # domain.
663
+ # @return [Types::DomainInformation]
664
+ #
665
+ # @!attribute [rw] connection_alias
666
+ # Specifies the connection alias provided during the create connection
667
+ # request.
668
+ # @return [String]
669
+ #
670
+ # @!attribute [rw] connection_status
671
+ # Specifies the `OutboundCrossClusterSearchConnectionStatus` for the
672
+ # newly created connection.
673
+ # @return [Types::OutboundCrossClusterSearchConnectionStatus]
674
+ #
675
+ # @!attribute [rw] cross_cluster_search_connection_id
676
+ # Unique id for the created outbound connection, which is used for
677
+ # subsequent operations on connection.
678
+ # @return [String]
679
+ #
680
+ class CreateOutboundCrossClusterSearchConnectionResponse < Struct.new(
681
+ :source_domain_info,
682
+ :destination_domain_info,
683
+ :connection_alias,
684
+ :connection_status,
685
+ :cross_cluster_search_connection_id)
686
+ SENSITIVE = []
552
687
  include Aws::Structure
553
688
  end
554
689
 
@@ -588,6 +723,7 @@ module Aws::ElasticsearchService
588
723
  :package_type,
589
724
  :package_description,
590
725
  :package_source)
726
+ SENSITIVE = []
591
727
  include Aws::Structure
592
728
  end
593
729
 
@@ -599,6 +735,7 @@ module Aws::ElasticsearchService
599
735
  #
600
736
  class CreatePackageResponse < Struct.new(
601
737
  :package_details)
738
+ SENSITIVE = []
602
739
  include Aws::Structure
603
740
  end
604
741
 
@@ -620,6 +757,7 @@ module Aws::ElasticsearchService
620
757
  #
621
758
  class DeleteElasticsearchDomainRequest < Struct.new(
622
759
  :domain_name)
760
+ SENSITIVE = []
623
761
  include Aws::Structure
624
762
  end
625
763
 
@@ -633,6 +771,77 @@ module Aws::ElasticsearchService
633
771
  #
634
772
  class DeleteElasticsearchDomainResponse < Struct.new(
635
773
  :domain_status)
774
+ SENSITIVE = []
775
+ include Aws::Structure
776
+ end
777
+
778
+ # Container for the parameters to the
779
+ # `DeleteInboundCrossClusterSearchConnection` operation.
780
+ #
781
+ # @note When making an API call, you may pass DeleteInboundCrossClusterSearchConnectionRequest
782
+ # data as a hash:
783
+ #
784
+ # {
785
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
786
+ # }
787
+ #
788
+ # @!attribute [rw] cross_cluster_search_connection_id
789
+ # The id of the inbound connection that you want to permanently
790
+ # delete.
791
+ # @return [String]
792
+ #
793
+ class DeleteInboundCrossClusterSearchConnectionRequest < Struct.new(
794
+ :cross_cluster_search_connection_id)
795
+ SENSITIVE = []
796
+ include Aws::Structure
797
+ end
798
+
799
+ # The result of a `DeleteInboundCrossClusterSearchConnection` operation.
800
+ # Contains details of deleted inbound connection.
801
+ #
802
+ # @!attribute [rw] cross_cluster_search_connection
803
+ # Specifies the `InboundCrossClusterSearchConnection` of deleted
804
+ # inbound connection.
805
+ # @return [Types::InboundCrossClusterSearchConnection]
806
+ #
807
+ class DeleteInboundCrossClusterSearchConnectionResponse < Struct.new(
808
+ :cross_cluster_search_connection)
809
+ SENSITIVE = []
810
+ include Aws::Structure
811
+ end
812
+
813
+ # Container for the parameters to the
814
+ # `DeleteOutboundCrossClusterSearchConnection` operation.
815
+ #
816
+ # @note When making an API call, you may pass DeleteOutboundCrossClusterSearchConnectionRequest
817
+ # data as a hash:
818
+ #
819
+ # {
820
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
821
+ # }
822
+ #
823
+ # @!attribute [rw] cross_cluster_search_connection_id
824
+ # The id of the outbound connection that you want to permanently
825
+ # delete.
826
+ # @return [String]
827
+ #
828
+ class DeleteOutboundCrossClusterSearchConnectionRequest < Struct.new(
829
+ :cross_cluster_search_connection_id)
830
+ SENSITIVE = []
831
+ include Aws::Structure
832
+ end
833
+
834
+ # The result of a `DeleteOutboundCrossClusterSearchConnection`
835
+ # operation. Contains details of deleted outbound connection.
836
+ #
837
+ # @!attribute [rw] cross_cluster_search_connection
838
+ # Specifies the `OutboundCrossClusterSearchConnection` of deleted
839
+ # outbound connection.
840
+ # @return [Types::OutboundCrossClusterSearchConnection]
841
+ #
842
+ class DeleteOutboundCrossClusterSearchConnectionResponse < Struct.new(
843
+ :cross_cluster_search_connection)
844
+ SENSITIVE = []
636
845
  include Aws::Structure
637
846
  end
638
847
 
@@ -652,6 +861,7 @@ module Aws::ElasticsearchService
652
861
  #
653
862
  class DeletePackageRequest < Struct.new(
654
863
  :package_id)
864
+ SENSITIVE = []
655
865
  include Aws::Structure
656
866
  end
657
867
 
@@ -663,6 +873,7 @@ module Aws::ElasticsearchService
663
873
  #
664
874
  class DeletePackageResponse < Struct.new(
665
875
  :package_details)
876
+ SENSITIVE = []
666
877
  include Aws::Structure
667
878
  end
668
879
 
@@ -683,6 +894,7 @@ module Aws::ElasticsearchService
683
894
  #
684
895
  class DescribeElasticsearchDomainConfigRequest < Struct.new(
685
896
  :domain_name)
897
+ SENSITIVE = []
686
898
  include Aws::Structure
687
899
  end
688
900
 
@@ -696,6 +908,7 @@ module Aws::ElasticsearchService
696
908
  #
697
909
  class DescribeElasticsearchDomainConfigResponse < Struct.new(
698
910
  :domain_config)
911
+ SENSITIVE = []
699
912
  include Aws::Structure
700
913
  end
701
914
 
@@ -715,6 +928,7 @@ module Aws::ElasticsearchService
715
928
  #
716
929
  class DescribeElasticsearchDomainRequest < Struct.new(
717
930
  :domain_name)
931
+ SENSITIVE = []
718
932
  include Aws::Structure
719
933
  end
720
934
 
@@ -727,6 +941,7 @@ module Aws::ElasticsearchService
727
941
  #
728
942
  class DescribeElasticsearchDomainResponse < Struct.new(
729
943
  :domain_status)
944
+ SENSITIVE = []
730
945
  include Aws::Structure
731
946
  end
732
947
 
@@ -747,6 +962,7 @@ module Aws::ElasticsearchService
747
962
  #
748
963
  class DescribeElasticsearchDomainsRequest < Struct.new(
749
964
  :domain_names)
965
+ SENSITIVE = []
750
966
  include Aws::Structure
751
967
  end
752
968
 
@@ -760,6 +976,7 @@ module Aws::ElasticsearchService
760
976
  #
761
977
  class DescribeElasticsearchDomainsResponse < Struct.new(
762
978
  :domain_status_list)
979
+ SENSITIVE = []
763
980
  include Aws::Structure
764
981
  end
765
982
 
@@ -794,6 +1011,7 @@ module Aws::ElasticsearchService
794
1011
  :domain_name,
795
1012
  :instance_type,
796
1013
  :elasticsearch_version)
1014
+ SENSITIVE = []
797
1015
  include Aws::Structure
798
1016
  end
799
1017
 
@@ -810,6 +1028,141 @@ module Aws::ElasticsearchService
810
1028
  #
811
1029
  class DescribeElasticsearchInstanceTypeLimitsResponse < Struct.new(
812
1030
  :limits_by_role)
1031
+ SENSITIVE = []
1032
+ include Aws::Structure
1033
+ end
1034
+
1035
+ # Container for the parameters to the
1036
+ # `DescribeInboundCrossClusterSearchConnections` operation.
1037
+ #
1038
+ # @note When making an API call, you may pass DescribeInboundCrossClusterSearchConnectionsRequest
1039
+ # data as a hash:
1040
+ #
1041
+ # {
1042
+ # filters: [
1043
+ # {
1044
+ # name: "NonEmptyString",
1045
+ # values: ["NonEmptyString"],
1046
+ # },
1047
+ # ],
1048
+ # max_results: 1,
1049
+ # next_token: "NextToken",
1050
+ # }
1051
+ #
1052
+ # @!attribute [rw] filters
1053
+ # A list of filters used to match properties for inbound cross-cluster
1054
+ # search connection. Available `Filter` names for this operation are:
1055
+ # * cross-cluster-search-connection-id
1056
+ # * source-domain-info.domain-name
1057
+ # * source-domain-info.owner-id
1058
+ # * source-domain-info.region
1059
+ # * destination-domain-info.domain-name
1060
+ # @return [Array<Types::Filter>]
1061
+ #
1062
+ # @!attribute [rw] max_results
1063
+ # Set this value to limit the number of results returned. If not
1064
+ # specified, defaults to 100.
1065
+ # @return [Integer]
1066
+ #
1067
+ # @!attribute [rw] next_token
1068
+ # NextToken is sent in case the earlier API call results contain the
1069
+ # NextToken. It is used for pagination.
1070
+ # @return [String]
1071
+ #
1072
+ class DescribeInboundCrossClusterSearchConnectionsRequest < Struct.new(
1073
+ :filters,
1074
+ :max_results,
1075
+ :next_token)
1076
+ SENSITIVE = []
1077
+ include Aws::Structure
1078
+ end
1079
+
1080
+ # The result of a `DescribeInboundCrossClusterSearchConnections`
1081
+ # request. Contains the list of connections matching the filter
1082
+ # criteria.
1083
+ #
1084
+ # @!attribute [rw] cross_cluster_search_connections
1085
+ # Consists of list of `InboundCrossClusterSearchConnection` matching
1086
+ # the specified filter criteria.
1087
+ # @return [Array<Types::InboundCrossClusterSearchConnection>]
1088
+ #
1089
+ # @!attribute [rw] next_token
1090
+ # If more results are available and NextToken is present, make the
1091
+ # next request to the same API with the received NextToken to paginate
1092
+ # the remaining results.
1093
+ # @return [String]
1094
+ #
1095
+ class DescribeInboundCrossClusterSearchConnectionsResponse < Struct.new(
1096
+ :cross_cluster_search_connections,
1097
+ :next_token)
1098
+ SENSITIVE = []
1099
+ include Aws::Structure
1100
+ end
1101
+
1102
+ # Container for the parameters to the
1103
+ # `DescribeOutboundCrossClusterSearchConnections` operation.
1104
+ #
1105
+ # @note When making an API call, you may pass DescribeOutboundCrossClusterSearchConnectionsRequest
1106
+ # data as a hash:
1107
+ #
1108
+ # {
1109
+ # filters: [
1110
+ # {
1111
+ # name: "NonEmptyString",
1112
+ # values: ["NonEmptyString"],
1113
+ # },
1114
+ # ],
1115
+ # max_results: 1,
1116
+ # next_token: "NextToken",
1117
+ # }
1118
+ #
1119
+ # @!attribute [rw] filters
1120
+ # A list of filters used to match properties for outbound
1121
+ # cross-cluster search connection. Available `Filter` names for this
1122
+ # operation are: * cross-cluster-search-connection-id
1123
+ # * destination-domain-info.domain-name
1124
+ # * destination-domain-info.owner-id
1125
+ # * destination-domain-info.region
1126
+ # * source-domain-info.domain-name
1127
+ # @return [Array<Types::Filter>]
1128
+ #
1129
+ # @!attribute [rw] max_results
1130
+ # Set this value to limit the number of results returned. If not
1131
+ # specified, defaults to 100.
1132
+ # @return [Integer]
1133
+ #
1134
+ # @!attribute [rw] next_token
1135
+ # NextToken is sent in case the earlier API call results contain the
1136
+ # NextToken. It is used for pagination.
1137
+ # @return [String]
1138
+ #
1139
+ class DescribeOutboundCrossClusterSearchConnectionsRequest < Struct.new(
1140
+ :filters,
1141
+ :max_results,
1142
+ :next_token)
1143
+ SENSITIVE = []
1144
+ include Aws::Structure
1145
+ end
1146
+
1147
+ # The result of a `DescribeOutboundCrossClusterSearchConnections`
1148
+ # request. Contains the list of connections matching the filter
1149
+ # criteria.
1150
+ #
1151
+ # @!attribute [rw] cross_cluster_search_connections
1152
+ # Consists of list of `OutboundCrossClusterSearchConnection` matching
1153
+ # the specified filter criteria.
1154
+ # @return [Array<Types::OutboundCrossClusterSearchConnection>]
1155
+ #
1156
+ # @!attribute [rw] next_token
1157
+ # If more results are available and NextToken is present, make the
1158
+ # next request to the same API with the received NextToken to paginate
1159
+ # the remaining results.
1160
+ # @return [String]
1161
+ #
1162
+ class DescribeOutboundCrossClusterSearchConnectionsResponse < Struct.new(
1163
+ :cross_cluster_search_connections,
1164
+ :next_token)
1165
+ SENSITIVE = []
813
1166
  include Aws::Structure
814
1167
  end
815
1168
 
@@ -834,6 +1187,7 @@ module Aws::ElasticsearchService
834
1187
  class DescribePackagesFilter < Struct.new(
835
1188
  :name,
836
1189
  :value)
1190
+ SENSITIVE = []
837
1191
  include Aws::Structure
838
1192
  end
839
1193
 
@@ -872,6 +1226,7 @@ module Aws::ElasticsearchService
872
1226
  :filters,
873
1227
  :max_results,
874
1228
  :next_token)
1229
+ SENSITIVE = []
875
1230
  include Aws::Structure
876
1231
  end
877
1232
 
@@ -887,6 +1242,7 @@ module Aws::ElasticsearchService
887
1242
  class DescribePackagesResponse < Struct.new(
888
1243
  :package_details_list,
889
1244
  :next_token)
1245
+ SENSITIVE = []
890
1246
  include Aws::Structure
891
1247
  end
892
1248
 
@@ -922,6 +1278,7 @@ module Aws::ElasticsearchService
922
1278
  :reserved_elasticsearch_instance_offering_id,
923
1279
  :max_results,
924
1280
  :next_token)
1281
+ SENSITIVE = []
925
1282
  include Aws::Structure
926
1283
  end
927
1284
 
@@ -939,6 +1296,7 @@ module Aws::ElasticsearchService
939
1296
  class DescribeReservedElasticsearchInstanceOfferingsResponse < Struct.new(
940
1297
  :next_token,
941
1298
  :reserved_elasticsearch_instance_offerings)
1299
+ SENSITIVE = []
942
1300
  include Aws::Structure
943
1301
  end
944
1302
 
@@ -973,6 +1331,7 @@ module Aws::ElasticsearchService
973
1331
  :reserved_elasticsearch_instance_id,
974
1332
  :max_results,
975
1333
  :next_token)
1334
+ SENSITIVE = []
976
1335
  include Aws::Structure
977
1336
  end
978
1337
 
@@ -989,6 +1348,7 @@ module Aws::ElasticsearchService
989
1348
  class DescribeReservedElasticsearchInstancesResponse < Struct.new(
990
1349
  :next_token,
991
1350
  :reserved_elasticsearch_instances)
1351
+ SENSITIVE = []
992
1352
  include Aws::Structure
993
1353
  end
994
1354
 
@@ -1019,6 +1379,7 @@ module Aws::ElasticsearchService
1019
1379
  class DissociatePackageRequest < Struct.new(
1020
1380
  :package_id,
1021
1381
  :domain_name)
1382
+ SENSITIVE = []
1022
1383
  include Aws::Structure
1023
1384
  end
1024
1385
 
@@ -1030,6 +1391,7 @@ module Aws::ElasticsearchService
1030
1391
  #
1031
1392
  class DissociatePackageResponse < Struct.new(
1032
1393
  :domain_package_details)
1394
+ SENSITIVE = []
1033
1395
  include Aws::Structure
1034
1396
  end
1035
1397
 
@@ -1061,6 +1423,7 @@ module Aws::ElasticsearchService
1061
1423
  class DomainEndpointOptions < Struct.new(
1062
1424
  :enforce_https,
1063
1425
  :tls_security_policy)
1426
+ SENSITIVE = []
1064
1427
  include Aws::Structure
1065
1428
  end
1066
1429
 
@@ -1079,6 +1442,7 @@ module Aws::ElasticsearchService
1079
1442
  class DomainEndpointOptionsStatus < Struct.new(
1080
1443
  :options,
1081
1444
  :status)
1445
+ SENSITIVE = []
1082
1446
  include Aws::Structure
1083
1447
  end
1084
1448
 
@@ -1088,6 +1452,37 @@ module Aws::ElasticsearchService
1088
1452
  #
1089
1453
  class DomainInfo < Struct.new(
1090
1454
  :domain_name)
1455
+ SENSITIVE = []
1456
+ include Aws::Structure
1457
+ end
1458
+
1459
+ # @note When making an API call, you may pass DomainInformation
1460
+ # data as a hash:
1461
+ #
1462
+ # {
1463
+ # owner_id: "OwnerId",
1464
+ # domain_name: "DomainName", # required
1465
+ # region: "Region",
1466
+ # }
1467
+ #
1468
+ # @!attribute [rw] owner_id
1469
+ # @return [String]
1470
+ #
1471
+ # @!attribute [rw] domain_name
1472
+ # The name of an Elasticsearch domain. Domain names are unique across
1473
+ # the domains owned by an account within an AWS region. Domain names
1474
+ # start with a letter or number and can contain the following
1475
+ # characters: a-z (lowercase), 0-9, and - (hyphen).
1476
+ # @return [String]
1477
+ #
1478
+ # @!attribute [rw] region
1479
+ # @return [String]
1480
+ #
1481
+ class DomainInformation < Struct.new(
1482
+ :owner_id,
1483
+ :domain_name,
1484
+ :region)
1485
+ SENSITIVE = []
1091
1486
  include Aws::Structure
1092
1487
  end
1093
1488
 
@@ -1137,6 +1532,7 @@ module Aws::ElasticsearchService
1137
1532
  :domain_package_status,
1138
1533
  :reference_path,
1139
1534
  :error_details)
1535
+ SENSITIVE = []
1140
1536
  include Aws::Structure
1141
1537
  end
1142
1538
 
@@ -1179,6 +1575,7 @@ module Aws::ElasticsearchService
1179
1575
  :volume_type,
1180
1576
  :volume_size,
1181
1577
  :iops)
1578
+ SENSITIVE = []
1182
1579
  include Aws::Structure
1183
1580
  end
1184
1581
 
@@ -1196,6 +1593,7 @@ module Aws::ElasticsearchService
1196
1593
  class EBSOptionsStatus < Struct.new(
1197
1594
  :options,
1198
1595
  :status)
1596
+ SENSITIVE = []
1199
1597
  include Aws::Structure
1200
1598
  end
1201
1599
 
@@ -1284,6 +1682,7 @@ module Aws::ElasticsearchService
1284
1682
  :warm_enabled,
1285
1683
  :warm_type,
1286
1684
  :warm_count)
1685
+ SENSITIVE = []
1287
1686
  include Aws::Structure
1288
1687
  end
1289
1688
 
@@ -1303,6 +1702,7 @@ module Aws::ElasticsearchService
1303
1702
  class ElasticsearchClusterConfigStatus < Struct.new(
1304
1703
  :options,
1305
1704
  :status)
1705
+ SENSITIVE = []
1306
1706
  include Aws::Structure
1307
1707
  end
1308
1708
 
@@ -1393,6 +1793,7 @@ module Aws::ElasticsearchService
1393
1793
  :log_publishing_options,
1394
1794
  :domain_endpoint_options,
1395
1795
  :advanced_security_options)
1796
+ SENSITIVE = []
1396
1797
  include Aws::Structure
1397
1798
  end
1398
1799
 
@@ -1550,6 +1951,7 @@ module Aws::ElasticsearchService
1550
1951
  :service_software_options,
1551
1952
  :domain_endpoint_options,
1552
1953
  :advanced_security_options)
1954
+ SENSITIVE = []
1553
1955
  include Aws::Structure
1554
1956
  end
1555
1957
 
@@ -1569,6 +1971,7 @@ module Aws::ElasticsearchService
1569
1971
  class ElasticsearchVersionStatus < Struct.new(
1570
1972
  :options,
1571
1973
  :status)
1974
+ SENSITIVE = []
1572
1975
  include Aws::Structure
1573
1976
  end
1574
1977
 
@@ -1593,6 +1996,7 @@ module Aws::ElasticsearchService
1593
1996
  class EncryptionAtRestOptions < Struct.new(
1594
1997
  :enabled,
1595
1998
  :kms_key_id)
1999
+ SENSITIVE = []
1596
2000
  include Aws::Structure
1597
2001
  end
1598
2002
 
@@ -1612,6 +2016,7 @@ module Aws::ElasticsearchService
1612
2016
  class EncryptionAtRestOptionsStatus < Struct.new(
1613
2017
  :options,
1614
2018
  :status)
2019
+ SENSITIVE = []
1615
2020
  include Aws::Structure
1616
2021
  end
1617
2022
 
@@ -1624,6 +2029,35 @@ module Aws::ElasticsearchService
1624
2029
  class ErrorDetails < Struct.new(
1625
2030
  :error_type,
1626
2031
  :error_message)
2032
+ SENSITIVE = []
2033
+ include Aws::Structure
2034
+ end
2035
+
2036
+ # A filter used to limit results when describing inbound or outbound
2037
+ # cross-cluster search connections. Multiple values can be specified per
2038
+ # filter. A cross-cluster search connection must match at least one of
2039
+ # the specified values for it to be returned from an operation.
2040
+ #
2041
+ # @note When making an API call, you may pass Filter
2042
+ # data as a hash:
2043
+ #
2044
+ # {
2045
+ # name: "NonEmptyString",
2046
+ # values: ["NonEmptyString"],
2047
+ # }
2048
+ #
2049
+ # @!attribute [rw] name
2050
+ # Specifies the name of the filter.
2051
+ # @return [String]
2052
+ #
2053
+ # @!attribute [rw] values
2054
+ # Contains one or more values for the filter.
2055
+ # @return [Array<String>]
2056
+ #
2057
+ class Filter < Struct.new(
2058
+ :name,
2059
+ :values)
2060
+ SENSITIVE = []
1627
2061
  include Aws::Structure
1628
2062
  end
1629
2063
 
@@ -1646,6 +2080,7 @@ module Aws::ElasticsearchService
1646
2080
  #
1647
2081
  class GetCompatibleElasticsearchVersionsRequest < Struct.new(
1648
2082
  :domain_name)
2083
+ SENSITIVE = []
1649
2084
  include Aws::Structure
1650
2085
  end
1651
2086
 
@@ -1659,6 +2094,7 @@ module Aws::ElasticsearchService
1659
2094
  #
1660
2095
  class GetCompatibleElasticsearchVersionsResponse < Struct.new(
1661
2096
  :compatible_elasticsearch_versions)
2097
+ SENSITIVE = []
1662
2098
  include Aws::Structure
1663
2099
  end
1664
2100
 
@@ -1694,6 +2130,7 @@ module Aws::ElasticsearchService
1694
2130
  :domain_name,
1695
2131
  :max_results,
1696
2132
  :next_token)
2133
+ SENSITIVE = []
1697
2134
  include Aws::Structure
1698
2135
  end
1699
2136
 
@@ -1713,6 +2150,7 @@ module Aws::ElasticsearchService
1713
2150
  class GetUpgradeHistoryResponse < Struct.new(
1714
2151
  :upgrade_histories,
1715
2152
  :next_token)
2153
+ SENSITIVE = []
1716
2154
  include Aws::Structure
1717
2155
  end
1718
2156
 
@@ -1734,6 +2172,7 @@ module Aws::ElasticsearchService
1734
2172
  #
1735
2173
  class GetUpgradeStatusRequest < Struct.new(
1736
2174
  :domain_name)
2175
+ SENSITIVE = []
1737
2176
  include Aws::Structure
1738
2177
  end
1739
2178
 
@@ -1763,6 +2202,66 @@ module Aws::ElasticsearchService
1763
2202
  :upgrade_step,
1764
2203
  :step_status,
1765
2204
  :upgrade_name)
2205
+ SENSITIVE = []
2206
+ include Aws::Structure
2207
+ end
2208
+
2209
+ # Specifies details of an inbound connection.
2210
+ #
2211
+ # @!attribute [rw] source_domain_info
2212
+ # Specifies the `DomainInformation` for the source Elasticsearch
2213
+ # domain.
2214
+ # @return [Types::DomainInformation]
2215
+ #
2216
+ # @!attribute [rw] destination_domain_info
2217
+ # Specifies the `DomainInformation` for the destination Elasticsearch
2218
+ # domain.
2219
+ # @return [Types::DomainInformation]
2220
+ #
2221
+ # @!attribute [rw] cross_cluster_search_connection_id
2222
+ # Specifies the connection id for the inbound cross-cluster search
2223
+ # connection.
2224
+ # @return [String]
2225
+ #
2226
+ # @!attribute [rw] connection_status
2227
+ # Specifies the `InboundCrossClusterSearchConnectionStatus` for the
2228
+ # outbound connection.
2229
+ # @return [Types::InboundCrossClusterSearchConnectionStatus]
2230
+ #
2231
+ class InboundCrossClusterSearchConnection < Struct.new(
2232
+ :source_domain_info,
2233
+ :destination_domain_info,
2234
+ :cross_cluster_search_connection_id,
2235
+ :connection_status)
2236
+ SENSITIVE = []
2237
+ include Aws::Structure
2238
+ end
2239
+
2240
+ # Specifies the coonection status of an inbound cross-cluster search
2241
+ # connection.
2242
+ #
2243
+ # @!attribute [rw] status_code
2244
+ # The state code for inbound connection. This can be one of the
2245
+ # following:
2246
+ #
2247
+ # * PENDING\_ACCEPTANCE: Inbound connection is not yet accepted by
2248
+ # destination domain owner.
2249
+ # * APPROVED: Inbound connection is pending acceptance by destination
2250
+ # domain owner.
2251
+ # * REJECTING: Inbound connection rejection is in process.
2252
+ # * REJECTED: Inbound connection is rejected.
2253
+ # * DELETING: Inbound connection deletion is in progress.
2254
+ # * DELETED: Inbound connection is deleted and cannot be used further.
2255
+ # @return [String]
2256
+ #
2257
+ # @!attribute [rw] message
2258
+ # Specifies verbose information for the inbound connection status.
2259
+ # @return [String]
2260
+ #
2261
+ class InboundCrossClusterSearchConnectionStatus < Struct.new(
2262
+ :status_code,
2263
+ :message)
2264
+ SENSITIVE = []
1766
2265
  include Aws::Structure
1767
2266
  end
1768
2267
 
@@ -1782,6 +2281,7 @@ module Aws::ElasticsearchService
1782
2281
  class InstanceCountLimits < Struct.new(
1783
2282
  :minimum_instance_count,
1784
2283
  :maximum_instance_count)
2284
+ SENSITIVE = []
1785
2285
  include Aws::Structure
1786
2286
  end
1787
2287
 
@@ -1795,6 +2295,7 @@ module Aws::ElasticsearchService
1795
2295
  #
1796
2296
  class InstanceLimits < Struct.new(
1797
2297
  :instance_count_limits)
2298
+ SENSITIVE = []
1798
2299
  include Aws::Structure
1799
2300
  end
1800
2301
 
@@ -1804,6 +2305,11 @@ module Aws::ElasticsearchService
1804
2305
  #
1805
2306
  class InternalException < Aws::EmptyStructure; end
1806
2307
 
2308
+ # The request processing has failed because of invalid pagination token
2309
+ # provided by customer. Returns an HTTP status code of 400.
2310
+ #
2311
+ class InvalidPaginationTokenException < Aws::EmptyStructure; end
2312
+
1807
2313
  # An exception for trying to create or access sub-resource that is
1808
2314
  # either invalid or not supported. Gives http status code of 409.
1809
2315
  #
@@ -1837,6 +2343,7 @@ module Aws::ElasticsearchService
1837
2343
  :storage_types,
1838
2344
  :instance_limits,
1839
2345
  :additional_limits)
2346
+ SENSITIVE = []
1840
2347
  include Aws::Structure
1841
2348
  end
1842
2349
 
@@ -1849,6 +2356,7 @@ module Aws::ElasticsearchService
1849
2356
  #
1850
2357
  class ListDomainNamesResponse < Struct.new(
1851
2358
  :domain_names)
2359
+ SENSITIVE = []
1852
2360
  include Aws::Structure
1853
2361
  end
1854
2362
 
@@ -1882,6 +2390,7 @@ module Aws::ElasticsearchService
1882
2390
  :package_id,
1883
2391
  :max_results,
1884
2392
  :next_token)
2393
+ SENSITIVE = []
1885
2394
  include Aws::Structure
1886
2395
  end
1887
2396
 
@@ -1898,6 +2407,7 @@ module Aws::ElasticsearchService
1898
2407
  class ListDomainsForPackageResponse < Struct.new(
1899
2408
  :domain_package_details_list,
1900
2409
  :next_token)
2410
+ SENSITIVE = []
1901
2411
  include Aws::Structure
1902
2412
  end
1903
2413
 
@@ -1941,6 +2451,7 @@ module Aws::ElasticsearchService
1941
2451
  :domain_name,
1942
2452
  :max_results,
1943
2453
  :next_token)
2454
+ SENSITIVE = []
1944
2455
  include Aws::Structure
1945
2456
  end
1946
2457
 
@@ -1961,6 +2472,7 @@ module Aws::ElasticsearchService
1961
2472
  class ListElasticsearchInstanceTypesResponse < Struct.new(
1962
2473
  :elasticsearch_instance_types,
1963
2474
  :next_token)
2475
+ SENSITIVE = []
1964
2476
  include Aws::Structure
1965
2477
  end
1966
2478
 
@@ -1995,6 +2507,7 @@ module Aws::ElasticsearchService
1995
2507
  class ListElasticsearchVersionsRequest < Struct.new(
1996
2508
  :max_results,
1997
2509
  :next_token)
2510
+ SENSITIVE = []
1998
2511
  include Aws::Structure
1999
2512
  end
2000
2513
 
@@ -2014,6 +2527,7 @@ module Aws::ElasticsearchService
2014
2527
  class ListElasticsearchVersionsResponse < Struct.new(
2015
2528
  :elasticsearch_versions,
2016
2529
  :next_token)
2530
+ SENSITIVE = []
2017
2531
  include Aws::Structure
2018
2532
  end
2019
2533
 
@@ -2048,6 +2562,7 @@ module Aws::ElasticsearchService
2048
2562
  :domain_name,
2049
2563
  :max_results,
2050
2564
  :next_token)
2565
+ SENSITIVE = []
2051
2566
  include Aws::Structure
2052
2567
  end
2053
2568
 
@@ -2066,6 +2581,7 @@ module Aws::ElasticsearchService
2066
2581
  class ListPackagesForDomainResponse < Struct.new(
2067
2582
  :domain_package_details_list,
2068
2583
  :next_token)
2584
+ SENSITIVE = []
2069
2585
  include Aws::Structure
2070
2586
  end
2071
2587
 
@@ -2087,6 +2603,7 @@ module Aws::ElasticsearchService
2087
2603
  #
2088
2604
  class ListTagsRequest < Struct.new(
2089
2605
  :arn)
2606
+ SENSITIVE = []
2090
2607
  include Aws::Structure
2091
2608
  end
2092
2609
 
@@ -2099,6 +2616,7 @@ module Aws::ElasticsearchService
2099
2616
  #
2100
2617
  class ListTagsResponse < Struct.new(
2101
2618
  :tag_list)
2619
+ SENSITIVE = []
2102
2620
  include Aws::Structure
2103
2621
  end
2104
2622
 
@@ -2128,6 +2646,7 @@ module Aws::ElasticsearchService
2128
2646
  class LogPublishingOption < Struct.new(
2129
2647
  :cloud_watch_logs_log_group_arn,
2130
2648
  :enabled)
2649
+ SENSITIVE = []
2131
2650
  include Aws::Structure
2132
2651
  end
2133
2652
 
@@ -2147,6 +2666,7 @@ module Aws::ElasticsearchService
2147
2666
  class LogPublishingOptionsStatus < Struct.new(
2148
2667
  :options,
2149
2668
  :status)
2669
+ SENSITIVE = []
2150
2670
  include Aws::Structure
2151
2671
  end
2152
2672
 
@@ -2179,6 +2699,7 @@ module Aws::ElasticsearchService
2179
2699
  :master_user_arn,
2180
2700
  :master_user_name,
2181
2701
  :master_user_password)
2702
+ SENSITIVE = [:master_user_name, :master_user_password]
2182
2703
  include Aws::Structure
2183
2704
  end
2184
2705
 
@@ -2197,6 +2718,7 @@ module Aws::ElasticsearchService
2197
2718
  #
2198
2719
  class NodeToNodeEncryptionOptions < Struct.new(
2199
2720
  :enabled)
2721
+ SENSITIVE = []
2200
2722
  include Aws::Structure
2201
2723
  end
2202
2724
 
@@ -2216,6 +2738,7 @@ module Aws::ElasticsearchService
2216
2738
  class NodeToNodeEncryptionOptionsStatus < Struct.new(
2217
2739
  :options,
2218
2740
  :status)
2741
+ SENSITIVE = []
2219
2742
  include Aws::Structure
2220
2743
  end
2221
2744
 
@@ -2247,6 +2770,75 @@ module Aws::ElasticsearchService
2247
2770
  :update_version,
2248
2771
  :state,
2249
2772
  :pending_deletion)
2773
+ SENSITIVE = []
2774
+ include Aws::Structure
2775
+ end
2776
+
2777
+ # Specifies details of an outbound connection.
2778
+ #
2779
+ # @!attribute [rw] source_domain_info
2780
+ # Specifies the `DomainInformation` for the source Elasticsearch
2781
+ # domain.
2782
+ # @return [Types::DomainInformation]
2783
+ #
2784
+ # @!attribute [rw] destination_domain_info
2785
+ # Specifies the `DomainInformation` for the destination Elasticsearch
2786
+ # domain.
2787
+ # @return [Types::DomainInformation]
2788
+ #
2789
+ # @!attribute [rw] cross_cluster_search_connection_id
2790
+ # Specifies the connection id for the outbound cross-cluster search
2791
+ # connection.
2792
+ # @return [String]
2793
+ #
2794
+ # @!attribute [rw] connection_alias
2795
+ # Specifies the connection alias for the outbound cross-cluster search
2796
+ # connection.
2797
+ # @return [String]
2798
+ #
2799
+ # @!attribute [rw] connection_status
2800
+ # Specifies the `OutboundCrossClusterSearchConnectionStatus` for the
2801
+ # outbound connection.
2802
+ # @return [Types::OutboundCrossClusterSearchConnectionStatus]
2803
+ #
2804
+ class OutboundCrossClusterSearchConnection < Struct.new(
2805
+ :source_domain_info,
2806
+ :destination_domain_info,
2807
+ :cross_cluster_search_connection_id,
2808
+ :connection_alias,
2809
+ :connection_status)
2810
+ SENSITIVE = []
2811
+ include Aws::Structure
2812
+ end
2813
+
2814
+ # Specifies the connection status of an outbound cross-cluster search
2815
+ # connection.
2816
+ #
2817
+ # @!attribute [rw] status_code
2818
+ # The state code for outbound connection. This can be one of the
2819
+ # following:
2820
+ #
2821
+ # * VALIDATING: The outbound connection request is being validated.
2822
+ # * VALIDATION\_FAILED: Validation failed for the connection request.
2823
+ # * PENDING\_ACCEPTANCE: Outbound connection request is validated and
2824
+ # is not yet accepted by destination domain owner.
2825
+ # * PROVISIONING: Outbound connection request is in process.
2826
+ # * ACTIVE: Outbound connection is active and ready to use.
2827
+ # * REJECTED: Outbound connection request is rejected by destination
2828
+ # domain owner.
2829
+ # * DELETING: Outbound connection deletion is in progress.
2830
+ # * DELETED: Outbound connection is deleted and cannot be used
2831
+ # further.
2832
+ # @return [String]
2833
+ #
2834
+ # @!attribute [rw] message
2835
+ # Specifies verbose information for the outbound connection status.
2836
+ # @return [String]
2837
+ #
2838
+ class OutboundCrossClusterSearchConnectionStatus < Struct.new(
2839
+ :status_code,
2840
+ :message)
2841
+ SENSITIVE = []
2250
2842
  include Aws::Structure
2251
2843
  end
2252
2844
 
@@ -2290,6 +2882,7 @@ module Aws::ElasticsearchService
2290
2882
  :package_status,
2291
2883
  :created_at,
2292
2884
  :error_details)
2885
+ SENSITIVE = []
2293
2886
  include Aws::Structure
2294
2887
  end
2295
2888
 
@@ -2315,6 +2908,7 @@ module Aws::ElasticsearchService
2315
2908
  class PackageSource < Struct.new(
2316
2909
  :s3_bucket_name,
2317
2910
  :s3_key)
2911
+ SENSITIVE = []
2318
2912
  include Aws::Structure
2319
2913
  end
2320
2914
 
@@ -2346,6 +2940,7 @@ module Aws::ElasticsearchService
2346
2940
  :reserved_elasticsearch_instance_offering_id,
2347
2941
  :reservation_name,
2348
2942
  :instance_count)
2943
+ SENSITIVE = []
2349
2944
  include Aws::Structure
2350
2945
  end
2351
2946
 
@@ -2363,6 +2958,7 @@ module Aws::ElasticsearchService
2363
2958
  class PurchaseReservedElasticsearchInstanceOfferingResponse < Struct.new(
2364
2959
  :reserved_elasticsearch_instance_id,
2365
2960
  :reservation_name)
2961
+ SENSITIVE = []
2366
2962
  include Aws::Structure
2367
2963
  end
2368
2964
 
@@ -2381,6 +2977,41 @@ module Aws::ElasticsearchService
2381
2977
  class RecurringCharge < Struct.new(
2382
2978
  :recurring_charge_amount,
2383
2979
  :recurring_charge_frequency)
2980
+ SENSITIVE = []
2981
+ include Aws::Structure
2982
+ end
2983
+
2984
+ # Container for the parameters to the
2985
+ # `RejectInboundCrossClusterSearchConnection` operation.
2986
+ #
2987
+ # @note When making an API call, you may pass RejectInboundCrossClusterSearchConnectionRequest
2988
+ # data as a hash:
2989
+ #
2990
+ # {
2991
+ # cross_cluster_search_connection_id: "CrossClusterSearchConnectionId", # required
2992
+ # }
2993
+ #
2994
+ # @!attribute [rw] cross_cluster_search_connection_id
2995
+ # The id of the inbound connection that you want to reject.
2996
+ # @return [String]
2997
+ #
2998
+ class RejectInboundCrossClusterSearchConnectionRequest < Struct.new(
2999
+ :cross_cluster_search_connection_id)
3000
+ SENSITIVE = []
3001
+ include Aws::Structure
3002
+ end
3003
+
3004
+ # The result of a `RejectInboundCrossClusterSearchConnection` operation.
3005
+ # Contains details of rejected inbound connection.
3006
+ #
3007
+ # @!attribute [rw] cross_cluster_search_connection
3008
+ # Specifies the `InboundCrossClusterSearchConnection` of rejected
3009
+ # inbound connection.
3010
+ # @return [Types::InboundCrossClusterSearchConnection]
3011
+ #
3012
+ class RejectInboundCrossClusterSearchConnectionResponse < Struct.new(
3013
+ :cross_cluster_search_connection)
3014
+ SENSITIVE = []
2384
3015
  include Aws::Structure
2385
3016
  end
2386
3017
 
@@ -2409,6 +3040,7 @@ module Aws::ElasticsearchService
2409
3040
  class RemoveTagsRequest < Struct.new(
2410
3041
  :arn,
2411
3042
  :tag_keys)
3043
+ SENSITIVE = []
2412
3044
  include Aws::Structure
2413
3045
  end
2414
3046
 
@@ -2486,6 +3118,7 @@ module Aws::ElasticsearchService
2486
3118
  :state,
2487
3119
  :payment_option,
2488
3120
  :recurring_charges)
3121
+ SENSITIVE = []
2489
3122
  include Aws::Structure
2490
3123
  end
2491
3124
 
@@ -2537,6 +3170,7 @@ module Aws::ElasticsearchService
2537
3170
  :currency_code,
2538
3171
  :payment_option,
2539
3172
  :recurring_charges)
3173
+ SENSITIVE = []
2540
3174
  include Aws::Structure
2541
3175
  end
2542
3176
 
@@ -2603,6 +3237,7 @@ module Aws::ElasticsearchService
2603
3237
  :description,
2604
3238
  :automated_update_date,
2605
3239
  :optional_deployment)
3240
+ SENSITIVE = []
2606
3241
  include Aws::Structure
2607
3242
  end
2608
3243
 
@@ -2625,6 +3260,7 @@ module Aws::ElasticsearchService
2625
3260
  #
2626
3261
  class SnapshotOptions < Struct.new(
2627
3262
  :automated_snapshot_start_hour)
3263
+ SENSITIVE = []
2628
3264
  include Aws::Structure
2629
3265
  end
2630
3266
 
@@ -2642,6 +3278,7 @@ module Aws::ElasticsearchService
2642
3278
  class SnapshotOptionsStatus < Struct.new(
2643
3279
  :options,
2644
3280
  :status)
3281
+ SENSITIVE = []
2645
3282
  include Aws::Structure
2646
3283
  end
2647
3284
 
@@ -2664,6 +3301,7 @@ module Aws::ElasticsearchService
2664
3301
  #
2665
3302
  class StartElasticsearchServiceSoftwareUpdateRequest < Struct.new(
2666
3303
  :domain_name)
3304
+ SENSITIVE = []
2667
3305
  include Aws::Structure
2668
3306
  end
2669
3307
 
@@ -2676,6 +3314,7 @@ module Aws::ElasticsearchService
2676
3314
  #
2677
3315
  class StartElasticsearchServiceSoftwareUpdateResponse < Struct.new(
2678
3316
  :service_software_options)
3317
+ SENSITIVE = []
2679
3318
  include Aws::Structure
2680
3319
  end
2681
3320
 
@@ -2707,6 +3346,7 @@ module Aws::ElasticsearchService
2707
3346
  :storage_type_name,
2708
3347
  :storage_sub_type_name,
2709
3348
  :storage_type_limits)
3349
+ SENSITIVE = []
2710
3350
  include Aws::Structure
2711
3351
  end
2712
3352
 
@@ -2728,6 +3368,7 @@ module Aws::ElasticsearchService
2728
3368
  class StorageTypeLimit < Struct.new(
2729
3369
  :limit_name,
2730
3370
  :limit_values)
3371
+ SENSITIVE = []
2731
3372
  include Aws::Structure
2732
3373
  end
2733
3374
 
@@ -2756,6 +3397,7 @@ module Aws::ElasticsearchService
2756
3397
  class Tag < Struct.new(
2757
3398
  :key,
2758
3399
  :value)
3400
+ SENSITIVE = []
2759
3401
  include Aws::Structure
2760
3402
  end
2761
3403
 
@@ -2905,6 +3547,7 @@ module Aws::ElasticsearchService
2905
3547
  :log_publishing_options,
2906
3548
  :domain_endpoint_options,
2907
3549
  :advanced_security_options)
3550
+ SENSITIVE = []
2908
3551
  include Aws::Structure
2909
3552
  end
2910
3553
 
@@ -2917,6 +3560,7 @@ module Aws::ElasticsearchService
2917
3560
  #
2918
3561
  class UpdateElasticsearchDomainConfigResponse < Struct.new(
2919
3562
  :domain_config)
3563
+ SENSITIVE = []
2920
3564
  include Aws::Structure
2921
3565
  end
2922
3566
 
@@ -2954,6 +3598,7 @@ module Aws::ElasticsearchService
2954
3598
  :domain_name,
2955
3599
  :target_version,
2956
3600
  :perform_check_only)
3601
+ SENSITIVE = []
2957
3602
  include Aws::Structure
2958
3603
  end
2959
3604
 
@@ -2982,6 +3627,7 @@ module Aws::ElasticsearchService
2982
3627
  :domain_name,
2983
3628
  :target_version,
2984
3629
  :perform_check_only)
3630
+ SENSITIVE = []
2985
3631
  include Aws::Structure
2986
3632
  end
2987
3633
 
@@ -3015,6 +3661,7 @@ module Aws::ElasticsearchService
3015
3661
  :start_timestamp,
3016
3662
  :upgrade_status,
3017
3663
  :steps_list)
3664
+ SENSITIVE = []
3018
3665
  include Aws::Structure
3019
3666
  end
3020
3667
 
@@ -3051,6 +3698,7 @@ module Aws::ElasticsearchService
3051
3698
  :upgrade_step_status,
3052
3699
  :issues,
3053
3700
  :progress_percent)
3701
+ SENSITIVE = []
3054
3702
  include Aws::Structure
3055
3703
  end
3056
3704
 
@@ -3085,6 +3733,7 @@ module Aws::ElasticsearchService
3085
3733
  :subnet_ids,
3086
3734
  :availability_zones,
3087
3735
  :security_group_ids)
3736
+ SENSITIVE = []
3088
3737
  include Aws::Structure
3089
3738
  end
3090
3739
 
@@ -3102,6 +3751,7 @@ module Aws::ElasticsearchService
3102
3751
  class VPCDerivedInfoStatus < Struct.new(
3103
3752
  :options,
3104
3753
  :status)
3754
+ SENSITIVE = []
3105
3755
  include Aws::Structure
3106
3756
  end
3107
3757
 
@@ -3132,6 +3782,7 @@ module Aws::ElasticsearchService
3132
3782
  class VPCOptions < Struct.new(
3133
3783
  :subnet_ids,
3134
3784
  :security_group_ids)
3785
+ SENSITIVE = []
3135
3786
  include Aws::Structure
3136
3787
  end
3137
3788
 
@@ -3158,6 +3809,7 @@ module Aws::ElasticsearchService
3158
3809
  #
3159
3810
  class ZoneAwarenessConfig < Struct.new(
3160
3811
  :availability_zone_count)
3812
+ SENSITIVE = []
3161
3813
  include Aws::Structure
3162
3814
  end
3163
3815