aws-sdk-dax 1.19.0 → 1.24.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.
- checksums.yaml +5 -5
- data/lib/aws-sdk-dax.rb +9 -4
- data/lib/aws-sdk-dax/client.rb +72 -14
- data/lib/aws-sdk-dax/client_api.rb +50 -0
- data/lib/aws-sdk-dax/errors.rb +288 -0
- data/lib/aws-sdk-dax/resource.rb +3 -0
- data/lib/aws-sdk-dax/types.rb +213 -0
- metadata +5 -5
data/lib/aws-sdk-dax/resource.rb
CHANGED
@@ -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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::DAX
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
data/lib/aws-sdk-dax/types.rb
CHANGED
@@ -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:
|
@@ -113,9 +115,29 @@ module Aws::DAX
|
|
113
115
|
:iam_role_arn,
|
114
116
|
:parameter_group,
|
115
117
|
:sse_description)
|
118
|
+
SENSITIVE = []
|
116
119
|
include Aws::Structure
|
117
120
|
end
|
118
121
|
|
122
|
+
# You already have a DAX cluster with the given identifier.
|
123
|
+
#
|
124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ClusterAlreadyExistsFault AWS API Documentation
|
125
|
+
#
|
126
|
+
class ClusterAlreadyExistsFault < Aws::EmptyStructure; end
|
127
|
+
|
128
|
+
# The requested cluster ID does not refer to an existing DAX cluster.
|
129
|
+
#
|
130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ClusterNotFoundFault AWS API Documentation
|
131
|
+
#
|
132
|
+
class ClusterNotFoundFault < Aws::EmptyStructure; end
|
133
|
+
|
134
|
+
# You have attempted to exceed the maximum number of DAX clusters for
|
135
|
+
# your AWS account.
|
136
|
+
#
|
137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ClusterQuotaForCustomerExceededFault AWS API Documentation
|
138
|
+
#
|
139
|
+
class ClusterQuotaForCustomerExceededFault < Aws::EmptyStructure; end
|
140
|
+
|
119
141
|
# @note When making an API call, you may pass CreateClusterRequest
|
120
142
|
# data as a hash:
|
121
143
|
#
|
@@ -277,6 +299,7 @@ module Aws::DAX
|
|
277
299
|
:parameter_group_name,
|
278
300
|
:tags,
|
279
301
|
:sse_specification)
|
302
|
+
SENSITIVE = []
|
280
303
|
include Aws::Structure
|
281
304
|
end
|
282
305
|
|
@@ -288,6 +311,7 @@ module Aws::DAX
|
|
288
311
|
#
|
289
312
|
class CreateClusterResponse < Struct.new(
|
290
313
|
:cluster)
|
314
|
+
SENSITIVE = []
|
291
315
|
include Aws::Structure
|
292
316
|
end
|
293
317
|
|
@@ -313,6 +337,7 @@ module Aws::DAX
|
|
313
337
|
class CreateParameterGroupRequest < Struct.new(
|
314
338
|
:parameter_group_name,
|
315
339
|
:description)
|
340
|
+
SENSITIVE = []
|
316
341
|
include Aws::Structure
|
317
342
|
end
|
318
343
|
|
@@ -324,6 +349,7 @@ module Aws::DAX
|
|
324
349
|
#
|
325
350
|
class CreateParameterGroupResponse < Struct.new(
|
326
351
|
:parameter_group)
|
352
|
+
SENSITIVE = []
|
327
353
|
include Aws::Structure
|
328
354
|
end
|
329
355
|
|
@@ -355,6 +381,7 @@ module Aws::DAX
|
|
355
381
|
:subnet_group_name,
|
356
382
|
:description,
|
357
383
|
:subnet_ids)
|
384
|
+
SENSITIVE = []
|
358
385
|
include Aws::Structure
|
359
386
|
end
|
360
387
|
|
@@ -366,6 +393,7 @@ module Aws::DAX
|
|
366
393
|
#
|
367
394
|
class CreateSubnetGroupResponse < Struct.new(
|
368
395
|
:subnet_group)
|
396
|
+
SENSITIVE = []
|
369
397
|
include Aws::Structure
|
370
398
|
end
|
371
399
|
|
@@ -402,6 +430,7 @@ module Aws::DAX
|
|
402
430
|
:new_replication_factor,
|
403
431
|
:availability_zones,
|
404
432
|
:node_ids_to_remove)
|
433
|
+
SENSITIVE = []
|
405
434
|
include Aws::Structure
|
406
435
|
end
|
407
436
|
|
@@ -414,6 +443,7 @@ module Aws::DAX
|
|
414
443
|
#
|
415
444
|
class DecreaseReplicationFactorResponse < Struct.new(
|
416
445
|
:cluster)
|
446
|
+
SENSITIVE = []
|
417
447
|
include Aws::Structure
|
418
448
|
end
|
419
449
|
|
@@ -432,6 +462,7 @@ module Aws::DAX
|
|
432
462
|
#
|
433
463
|
class DeleteClusterRequest < Struct.new(
|
434
464
|
:cluster_name)
|
465
|
+
SENSITIVE = []
|
435
466
|
include Aws::Structure
|
436
467
|
end
|
437
468
|
|
@@ -443,6 +474,7 @@ module Aws::DAX
|
|
443
474
|
#
|
444
475
|
class DeleteClusterResponse < Struct.new(
|
445
476
|
:cluster)
|
477
|
+
SENSITIVE = []
|
446
478
|
include Aws::Structure
|
447
479
|
end
|
448
480
|
|
@@ -461,6 +493,7 @@ module Aws::DAX
|
|
461
493
|
#
|
462
494
|
class DeleteParameterGroupRequest < Struct.new(
|
463
495
|
:parameter_group_name)
|
496
|
+
SENSITIVE = []
|
464
497
|
include Aws::Structure
|
465
498
|
end
|
466
499
|
|
@@ -473,6 +506,7 @@ module Aws::DAX
|
|
473
506
|
#
|
474
507
|
class DeleteParameterGroupResponse < Struct.new(
|
475
508
|
:deletion_message)
|
509
|
+
SENSITIVE = []
|
476
510
|
include Aws::Structure
|
477
511
|
end
|
478
512
|
|
@@ -491,6 +525,7 @@ module Aws::DAX
|
|
491
525
|
#
|
492
526
|
class DeleteSubnetGroupRequest < Struct.new(
|
493
527
|
:subnet_group_name)
|
528
|
+
SENSITIVE = []
|
494
529
|
include Aws::Structure
|
495
530
|
end
|
496
531
|
|
@@ -503,6 +538,7 @@ module Aws::DAX
|
|
503
538
|
#
|
504
539
|
class DeleteSubnetGroupResponse < Struct.new(
|
505
540
|
:deletion_message)
|
541
|
+
SENSITIVE = []
|
506
542
|
include Aws::Structure
|
507
543
|
end
|
508
544
|
|
@@ -541,6 +577,7 @@ module Aws::DAX
|
|
541
577
|
:cluster_names,
|
542
578
|
:max_results,
|
543
579
|
:next_token)
|
580
|
+
SENSITIVE = []
|
544
581
|
include Aws::Structure
|
545
582
|
end
|
546
583
|
|
@@ -558,6 +595,7 @@ module Aws::DAX
|
|
558
595
|
class DescribeClustersResponse < Struct.new(
|
559
596
|
:next_token,
|
560
597
|
:clusters)
|
598
|
+
SENSITIVE = []
|
561
599
|
include Aws::Structure
|
562
600
|
end
|
563
601
|
|
@@ -590,6 +628,7 @@ module Aws::DAX
|
|
590
628
|
class DescribeDefaultParametersRequest < Struct.new(
|
591
629
|
:max_results,
|
592
630
|
:next_token)
|
631
|
+
SENSITIVE = []
|
593
632
|
include Aws::Structure
|
594
633
|
end
|
595
634
|
|
@@ -607,6 +646,7 @@ module Aws::DAX
|
|
607
646
|
class DescribeDefaultParametersResponse < Struct.new(
|
608
647
|
:next_token,
|
609
648
|
:parameters)
|
649
|
+
SENSITIVE = []
|
610
650
|
include Aws::Structure
|
611
651
|
end
|
612
652
|
|
@@ -674,6 +714,7 @@ module Aws::DAX
|
|
674
714
|
:duration,
|
675
715
|
:max_results,
|
676
716
|
:next_token)
|
717
|
+
SENSITIVE = []
|
677
718
|
include Aws::Structure
|
678
719
|
end
|
679
720
|
|
@@ -690,6 +731,7 @@ module Aws::DAX
|
|
690
731
|
class DescribeEventsResponse < Struct.new(
|
691
732
|
:next_token,
|
692
733
|
:events)
|
734
|
+
SENSITIVE = []
|
693
735
|
include Aws::Structure
|
694
736
|
end
|
695
737
|
|
@@ -728,6 +770,7 @@ module Aws::DAX
|
|
728
770
|
:parameter_group_names,
|
729
771
|
:max_results,
|
730
772
|
:next_token)
|
773
|
+
SENSITIVE = []
|
731
774
|
include Aws::Structure
|
732
775
|
end
|
733
776
|
|
@@ -745,6 +788,7 @@ module Aws::DAX
|
|
745
788
|
class DescribeParameterGroupsResponse < Struct.new(
|
746
789
|
:next_token,
|
747
790
|
:parameter_groups)
|
791
|
+
SENSITIVE = []
|
748
792
|
include Aws::Structure
|
749
793
|
end
|
750
794
|
|
@@ -790,6 +834,7 @@ module Aws::DAX
|
|
790
834
|
:source,
|
791
835
|
:max_results,
|
792
836
|
:next_token)
|
837
|
+
SENSITIVE = []
|
793
838
|
include Aws::Structure
|
794
839
|
end
|
795
840
|
|
@@ -807,6 +852,7 @@ module Aws::DAX
|
|
807
852
|
class DescribeParametersResponse < Struct.new(
|
808
853
|
:next_token,
|
809
854
|
:parameters)
|
855
|
+
SENSITIVE = []
|
810
856
|
include Aws::Structure
|
811
857
|
end
|
812
858
|
|
@@ -845,6 +891,7 @@ module Aws::DAX
|
|
845
891
|
:subnet_group_names,
|
846
892
|
:max_results,
|
847
893
|
:next_token)
|
894
|
+
SENSITIVE = []
|
848
895
|
include Aws::Structure
|
849
896
|
end
|
850
897
|
|
@@ -862,6 +909,7 @@ module Aws::DAX
|
|
862
909
|
class DescribeSubnetGroupsResponse < Struct.new(
|
863
910
|
:next_token,
|
864
911
|
:subnet_groups)
|
912
|
+
SENSITIVE = []
|
865
913
|
include Aws::Structure
|
866
914
|
end
|
867
915
|
|
@@ -883,6 +931,7 @@ module Aws::DAX
|
|
883
931
|
class Endpoint < Struct.new(
|
884
932
|
:address,
|
885
933
|
:port)
|
934
|
+
SENSITIVE = []
|
886
935
|
include Aws::Structure
|
887
936
|
end
|
888
937
|
|
@@ -915,6 +964,7 @@ module Aws::DAX
|
|
915
964
|
:source_type,
|
916
965
|
:message,
|
917
966
|
:date)
|
967
|
+
SENSITIVE = []
|
918
968
|
include Aws::Structure
|
919
969
|
end
|
920
970
|
|
@@ -948,6 +998,7 @@ module Aws::DAX
|
|
948
998
|
:cluster_name,
|
949
999
|
:new_replication_factor,
|
950
1000
|
:availability_zones)
|
1001
|
+
SENSITIVE = []
|
951
1002
|
include Aws::Structure
|
952
1003
|
end
|
953
1004
|
|
@@ -959,9 +1010,29 @@ module Aws::DAX
|
|
959
1010
|
#
|
960
1011
|
class IncreaseReplicationFactorResponse < Struct.new(
|
961
1012
|
:cluster)
|
1013
|
+
SENSITIVE = []
|
962
1014
|
include Aws::Structure
|
963
1015
|
end
|
964
1016
|
|
1017
|
+
# There are not enough system resources to create the cluster you
|
1018
|
+
# requested (or to resize an already-existing cluster).
|
1019
|
+
#
|
1020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InsufficientClusterCapacityFault AWS API Documentation
|
1021
|
+
#
|
1022
|
+
class InsufficientClusterCapacityFault < Aws::EmptyStructure; end
|
1023
|
+
|
1024
|
+
# The Amazon Resource Name (ARN) supplied in the request is not valid.
|
1025
|
+
#
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidARNFault AWS API Documentation
|
1027
|
+
#
|
1028
|
+
class InvalidARNFault < Aws::EmptyStructure; end
|
1029
|
+
|
1030
|
+
# The requested DAX cluster is not in the *available* state.
|
1031
|
+
#
|
1032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidClusterStateFault AWS API Documentation
|
1033
|
+
#
|
1034
|
+
class InvalidClusterStateFault < Aws::EmptyStructure; end
|
1035
|
+
|
965
1036
|
# Two or more incompatible parameters were specified.
|
966
1037
|
#
|
967
1038
|
# @!attribute [rw] message
|
@@ -971,9 +1042,16 @@ module Aws::DAX
|
|
971
1042
|
#
|
972
1043
|
class InvalidParameterCombinationException < Struct.new(
|
973
1044
|
:message)
|
1045
|
+
SENSITIVE = []
|
974
1046
|
include Aws::Structure
|
975
1047
|
end
|
976
1048
|
|
1049
|
+
# One or more parameters in a parameter group are in an invalid state.
|
1050
|
+
#
|
1051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidParameterGroupStateFault AWS API Documentation
|
1052
|
+
#
|
1053
|
+
class InvalidParameterGroupStateFault < Aws::EmptyStructure; end
|
1054
|
+
|
977
1055
|
# The value for a parameter is invalid.
|
978
1056
|
#
|
979
1057
|
# @!attribute [rw] message
|
@@ -983,9 +1061,22 @@ module Aws::DAX
|
|
983
1061
|
#
|
984
1062
|
class InvalidParameterValueException < Struct.new(
|
985
1063
|
:message)
|
1064
|
+
SENSITIVE = []
|
986
1065
|
include Aws::Structure
|
987
1066
|
end
|
988
1067
|
|
1068
|
+
# An invalid subnet identifier was specified.
|
1069
|
+
#
|
1070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidSubnet AWS API Documentation
|
1071
|
+
#
|
1072
|
+
class InvalidSubnet < Aws::EmptyStructure; end
|
1073
|
+
|
1074
|
+
# The VPC network is in an invalid state.
|
1075
|
+
#
|
1076
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/InvalidVPCNetworkStateFault AWS API Documentation
|
1077
|
+
#
|
1078
|
+
class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
|
1079
|
+
|
989
1080
|
# @note When making an API call, you may pass ListTagsRequest
|
990
1081
|
# data as a hash:
|
991
1082
|
#
|
@@ -1009,6 +1100,7 @@ module Aws::DAX
|
|
1009
1100
|
class ListTagsRequest < Struct.new(
|
1010
1101
|
:resource_name,
|
1011
1102
|
:next_token)
|
1103
|
+
SENSITIVE = []
|
1012
1104
|
include Aws::Structure
|
1013
1105
|
end
|
1014
1106
|
|
@@ -1027,6 +1119,7 @@ module Aws::DAX
|
|
1027
1119
|
class ListTagsResponse < Struct.new(
|
1028
1120
|
:tags,
|
1029
1121
|
:next_token)
|
1122
|
+
SENSITIVE = []
|
1030
1123
|
include Aws::Structure
|
1031
1124
|
end
|
1032
1125
|
|
@@ -1070,9 +1163,30 @@ module Aws::DAX
|
|
1070
1163
|
:availability_zone,
|
1071
1164
|
:node_status,
|
1072
1165
|
:parameter_group_status)
|
1166
|
+
SENSITIVE = []
|
1073
1167
|
include Aws::Structure
|
1074
1168
|
end
|
1075
1169
|
|
1170
|
+
# None of the nodes in the cluster have the given node ID.
|
1171
|
+
#
|
1172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/NodeNotFoundFault AWS API Documentation
|
1173
|
+
#
|
1174
|
+
class NodeNotFoundFault < Aws::EmptyStructure; end
|
1175
|
+
|
1176
|
+
# You have attempted to exceed the maximum number of nodes for a DAX
|
1177
|
+
# cluster.
|
1178
|
+
#
|
1179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/NodeQuotaForClusterExceededFault AWS API Documentation
|
1180
|
+
#
|
1181
|
+
class NodeQuotaForClusterExceededFault < Aws::EmptyStructure; end
|
1182
|
+
|
1183
|
+
# You have attempted to exceed the maximum number of nodes for your AWS
|
1184
|
+
# account.
|
1185
|
+
#
|
1186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/NodeQuotaForCustomerExceededFault AWS API Documentation
|
1187
|
+
#
|
1188
|
+
class NodeQuotaForCustomerExceededFault < Aws::EmptyStructure; end
|
1189
|
+
|
1076
1190
|
# Represents a parameter value that is applicable to a particular node
|
1077
1191
|
# type.
|
1078
1192
|
#
|
@@ -1089,6 +1203,7 @@ module Aws::DAX
|
|
1089
1203
|
class NodeTypeSpecificValue < Struct.new(
|
1090
1204
|
:node_type,
|
1091
1205
|
:value)
|
1206
|
+
SENSITIVE = []
|
1092
1207
|
include Aws::Structure
|
1093
1208
|
end
|
1094
1209
|
|
@@ -1109,6 +1224,7 @@ module Aws::DAX
|
|
1109
1224
|
class NotificationConfiguration < Struct.new(
|
1110
1225
|
:topic_arn,
|
1111
1226
|
:topic_status)
|
1227
|
+
SENSITIVE = []
|
1112
1228
|
include Aws::Structure
|
1113
1229
|
end
|
1114
1230
|
|
@@ -1172,6 +1288,7 @@ module Aws::DAX
|
|
1172
1288
|
:allowed_values,
|
1173
1289
|
:is_modifiable,
|
1174
1290
|
:change_type)
|
1291
|
+
SENSITIVE = []
|
1175
1292
|
include Aws::Structure
|
1176
1293
|
end
|
1177
1294
|
|
@@ -1191,9 +1308,28 @@ module Aws::DAX
|
|
1191
1308
|
class ParameterGroup < Struct.new(
|
1192
1309
|
:parameter_group_name,
|
1193
1310
|
:description)
|
1311
|
+
SENSITIVE = []
|
1194
1312
|
include Aws::Structure
|
1195
1313
|
end
|
1196
1314
|
|
1315
|
+
# The specified parameter group already exists.
|
1316
|
+
#
|
1317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ParameterGroupAlreadyExistsFault AWS API Documentation
|
1318
|
+
#
|
1319
|
+
class ParameterGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
1320
|
+
|
1321
|
+
# The specified parameter group does not exist.
|
1322
|
+
#
|
1323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ParameterGroupNotFoundFault AWS API Documentation
|
1324
|
+
#
|
1325
|
+
class ParameterGroupNotFoundFault < Aws::EmptyStructure; end
|
1326
|
+
|
1327
|
+
# You have attempted to exceed the maximum number of parameter groups.
|
1328
|
+
#
|
1329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ParameterGroupQuotaExceededFault AWS API Documentation
|
1330
|
+
#
|
1331
|
+
class ParameterGroupQuotaExceededFault < Aws::EmptyStructure; end
|
1332
|
+
|
1197
1333
|
# The status of a parameter group.
|
1198
1334
|
#
|
1199
1335
|
# @!attribute [rw] parameter_group_name
|
@@ -1214,6 +1350,7 @@ module Aws::DAX
|
|
1214
1350
|
:parameter_group_name,
|
1215
1351
|
:parameter_apply_status,
|
1216
1352
|
:node_ids_to_reboot)
|
1353
|
+
SENSITIVE = []
|
1217
1354
|
include Aws::Structure
|
1218
1355
|
end
|
1219
1356
|
|
@@ -1240,6 +1377,7 @@ module Aws::DAX
|
|
1240
1377
|
class ParameterNameValue < Struct.new(
|
1241
1378
|
:parameter_name,
|
1242
1379
|
:parameter_value)
|
1380
|
+
SENSITIVE = []
|
1243
1381
|
include Aws::Structure
|
1244
1382
|
end
|
1245
1383
|
|
@@ -1264,6 +1402,7 @@ module Aws::DAX
|
|
1264
1402
|
class RebootNodeRequest < Struct.new(
|
1265
1403
|
:cluster_name,
|
1266
1404
|
:node_id)
|
1405
|
+
SENSITIVE = []
|
1267
1406
|
include Aws::Structure
|
1268
1407
|
end
|
1269
1408
|
|
@@ -1275,6 +1414,7 @@ module Aws::DAX
|
|
1275
1414
|
#
|
1276
1415
|
class RebootNodeResponse < Struct.new(
|
1277
1416
|
:cluster)
|
1417
|
+
SENSITIVE = []
|
1278
1418
|
include Aws::Structure
|
1279
1419
|
end
|
1280
1420
|
|
@@ -1297,6 +1437,7 @@ module Aws::DAX
|
|
1297
1437
|
#
|
1298
1438
|
class SSEDescription < Struct.new(
|
1299
1439
|
:status)
|
1440
|
+
SENSITIVE = []
|
1300
1441
|
include Aws::Structure
|
1301
1442
|
end
|
1302
1443
|
|
@@ -1318,6 +1459,7 @@ module Aws::DAX
|
|
1318
1459
|
#
|
1319
1460
|
class SSESpecification < Struct.new(
|
1320
1461
|
:enabled)
|
1462
|
+
SENSITIVE = []
|
1321
1463
|
include Aws::Structure
|
1322
1464
|
end
|
1323
1465
|
|
@@ -1336,9 +1478,16 @@ module Aws::DAX
|
|
1336
1478
|
class SecurityGroupMembership < Struct.new(
|
1337
1479
|
:security_group_identifier,
|
1338
1480
|
:status)
|
1481
|
+
SENSITIVE = []
|
1339
1482
|
include Aws::Structure
|
1340
1483
|
end
|
1341
1484
|
|
1485
|
+
# The specified service linked role (SLR) was not found.
|
1486
|
+
#
|
1487
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/ServiceLinkedRoleNotFoundFault AWS API Documentation
|
1488
|
+
#
|
1489
|
+
class ServiceLinkedRoleNotFoundFault < Aws::EmptyStructure; end
|
1490
|
+
|
1342
1491
|
# Represents the subnet associated with a DAX cluster. This parameter
|
1343
1492
|
# refers to subnets defined in Amazon Virtual Private Cloud (Amazon VPC)
|
1344
1493
|
# and used with DAX.
|
@@ -1356,6 +1505,7 @@ module Aws::DAX
|
|
1356
1505
|
class Subnet < Struct.new(
|
1357
1506
|
:subnet_identifier,
|
1358
1507
|
:subnet_availability_zone)
|
1508
|
+
SENSITIVE = []
|
1359
1509
|
include Aws::Structure
|
1360
1510
|
end
|
1361
1511
|
|
@@ -1389,9 +1539,49 @@ module Aws::DAX
|
|
1389
1539
|
:description,
|
1390
1540
|
:vpc_id,
|
1391
1541
|
:subnets)
|
1542
|
+
SENSITIVE = []
|
1392
1543
|
include Aws::Structure
|
1393
1544
|
end
|
1394
1545
|
|
1546
|
+
# The specified subnet group already exists.
|
1547
|
+
#
|
1548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/SubnetGroupAlreadyExistsFault AWS API Documentation
|
1549
|
+
#
|
1550
|
+
class SubnetGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
1551
|
+
|
1552
|
+
# The specified subnet group is currently in use.
|
1553
|
+
#
|
1554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/SubnetGroupInUseFault AWS API Documentation
|
1555
|
+
#
|
1556
|
+
class SubnetGroupInUseFault < Aws::EmptyStructure; end
|
1557
|
+
|
1558
|
+
# The requested subnet group name does not refer to an existing subnet
|
1559
|
+
# group.
|
1560
|
+
#
|
1561
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/SubnetGroupNotFoundFault AWS API Documentation
|
1562
|
+
#
|
1563
|
+
class SubnetGroupNotFoundFault < Aws::EmptyStructure; end
|
1564
|
+
|
1565
|
+
# The request cannot be processed because it would exceed the allowed
|
1566
|
+
# number of subnets in a subnet group.
|
1567
|
+
#
|
1568
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/SubnetGroupQuotaExceededFault AWS API Documentation
|
1569
|
+
#
|
1570
|
+
class SubnetGroupQuotaExceededFault < Aws::EmptyStructure; end
|
1571
|
+
|
1572
|
+
# The requested subnet is being used by another subnet group.
|
1573
|
+
#
|
1574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/SubnetInUse AWS API Documentation
|
1575
|
+
#
|
1576
|
+
class SubnetInUse < Aws::EmptyStructure; end
|
1577
|
+
|
1578
|
+
# The request cannot be processed because it would exceed the allowed
|
1579
|
+
# number of subnets in a subnet group.
|
1580
|
+
#
|
1581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/SubnetQuotaExceededFault AWS API Documentation
|
1582
|
+
#
|
1583
|
+
class SubnetQuotaExceededFault < Aws::EmptyStructure; end
|
1584
|
+
|
1395
1585
|
# A description of a tag. Every tag is a key-value pair. You can add up
|
1396
1586
|
# to 50 tags to a single DAX cluster.
|
1397
1587
|
#
|
@@ -1426,9 +1616,22 @@ module Aws::DAX
|
|
1426
1616
|
class Tag < Struct.new(
|
1427
1617
|
:key,
|
1428
1618
|
:value)
|
1619
|
+
SENSITIVE = []
|
1429
1620
|
include Aws::Structure
|
1430
1621
|
end
|
1431
1622
|
|
1623
|
+
# The tag does not exist.
|
1624
|
+
#
|
1625
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/TagNotFoundFault AWS API Documentation
|
1626
|
+
#
|
1627
|
+
class TagNotFoundFault < Aws::EmptyStructure; end
|
1628
|
+
|
1629
|
+
# You have exceeded the maximum number of tags for this DAX cluster.
|
1630
|
+
#
|
1631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dax-2017-04-19/TagQuotaPerResourceExceeded AWS API Documentation
|
1632
|
+
#
|
1633
|
+
class TagQuotaPerResourceExceeded < Aws::EmptyStructure; end
|
1634
|
+
|
1432
1635
|
# @note When making an API call, you may pass TagResourceRequest
|
1433
1636
|
# data as a hash:
|
1434
1637
|
#
|
@@ -1455,6 +1658,7 @@ module Aws::DAX
|
|
1455
1658
|
class TagResourceRequest < Struct.new(
|
1456
1659
|
:resource_name,
|
1457
1660
|
:tags)
|
1661
|
+
SENSITIVE = []
|
1458
1662
|
include Aws::Structure
|
1459
1663
|
end
|
1460
1664
|
|
@@ -1466,6 +1670,7 @@ module Aws::DAX
|
|
1466
1670
|
#
|
1467
1671
|
class TagResourceResponse < Struct.new(
|
1468
1672
|
:tags)
|
1673
|
+
SENSITIVE = []
|
1469
1674
|
include Aws::Structure
|
1470
1675
|
end
|
1471
1676
|
|
@@ -1491,6 +1696,7 @@ module Aws::DAX
|
|
1491
1696
|
class UntagResourceRequest < Struct.new(
|
1492
1697
|
:resource_name,
|
1493
1698
|
:tag_keys)
|
1699
|
+
SENSITIVE = []
|
1494
1700
|
include Aws::Structure
|
1495
1701
|
end
|
1496
1702
|
|
@@ -1502,6 +1708,7 @@ module Aws::DAX
|
|
1502
1708
|
#
|
1503
1709
|
class UntagResourceResponse < Struct.new(
|
1504
1710
|
:tags)
|
1711
|
+
SENSITIVE = []
|
1505
1712
|
include Aws::Structure
|
1506
1713
|
end
|
1507
1714
|
|
@@ -1561,6 +1768,7 @@ module Aws::DAX
|
|
1561
1768
|
:notification_topic_status,
|
1562
1769
|
:parameter_group_name,
|
1563
1770
|
:security_group_ids)
|
1771
|
+
SENSITIVE = []
|
1564
1772
|
include Aws::Structure
|
1565
1773
|
end
|
1566
1774
|
|
@@ -1572,6 +1780,7 @@ module Aws::DAX
|
|
1572
1780
|
#
|
1573
1781
|
class UpdateClusterResponse < Struct.new(
|
1574
1782
|
:cluster)
|
1783
|
+
SENSITIVE = []
|
1575
1784
|
include Aws::Structure
|
1576
1785
|
end
|
1577
1786
|
|
@@ -1602,6 +1811,7 @@ module Aws::DAX
|
|
1602
1811
|
class UpdateParameterGroupRequest < Struct.new(
|
1603
1812
|
:parameter_group_name,
|
1604
1813
|
:parameter_name_values)
|
1814
|
+
SENSITIVE = []
|
1605
1815
|
include Aws::Structure
|
1606
1816
|
end
|
1607
1817
|
|
@@ -1613,6 +1823,7 @@ module Aws::DAX
|
|
1613
1823
|
#
|
1614
1824
|
class UpdateParameterGroupResponse < Struct.new(
|
1615
1825
|
:parameter_group)
|
1826
|
+
SENSITIVE = []
|
1616
1827
|
include Aws::Structure
|
1617
1828
|
end
|
1618
1829
|
|
@@ -1643,6 +1854,7 @@ module Aws::DAX
|
|
1643
1854
|
:subnet_group_name,
|
1644
1855
|
:description,
|
1645
1856
|
:subnet_ids)
|
1857
|
+
SENSITIVE = []
|
1646
1858
|
include Aws::Structure
|
1647
1859
|
end
|
1648
1860
|
|
@@ -1654,6 +1866,7 @@ module Aws::DAX
|
|
1654
1866
|
#
|
1655
1867
|
class UpdateSubnetGroupResponse < Struct.new(
|
1656
1868
|
:subnet_group)
|
1869
|
+
SENSITIVE = []
|
1657
1870
|
include Aws::Structure
|
1658
1871
|
end
|
1659
1872
|
|