aws-sdk 1.25.0 → 1.26.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/lib/aws/api_config/CloudTrail-2013-11-01.yml +123 -0
- data/lib/aws/api_config/IAM-2010-05-08.yml +75 -0
- data/lib/aws/api_config/Redshift-2012-12-01.yml +796 -66
- data/lib/aws/api_config/STS-2011-06-15.yml +27 -0
- data/lib/aws/cloud_trail.rb +73 -0
- data/lib/aws/cloud_trail/client.rb +33 -0
- data/lib/aws/cloud_trail/config.rb +18 -0
- data/lib/aws/cloud_trail/errors.rb +22 -0
- data/lib/aws/cloud_trail/request.rb +30 -0
- data/lib/aws/core.rb +3 -0
- data/lib/aws/core/response.rb +1 -1
- data/lib/aws/dynamo_db/table.rb +0 -3
- data/lib/aws/version.rb +1 -1
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2667e4060f1e63b81ce18f7c55bf372bba22d561
|
4
|
+
data.tar.gz: 29b4fb5baf1dab01c5d89b0381c4888e3a884210
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ba640f20cdd774b36b7fa4e7c69dcc6b793ac1f7980f9f5b51c67588aa80a0f8210b82d43dfaf2edb5760fee67483e98787b53bcabe798e3ca6bfe6b837d164
|
7
|
+
data.tar.gz: c675ff2a2804968e6e1837c13a5a63adcaedaed88a1e7eee0610ec8d26ad741c6a16845ce2caafc95b7b6aa236d7e5d067b2b852775f7964746be83f972a6592
|
data/README.md
CHANGED
@@ -224,9 +224,12 @@ The SDK currently supports the following services:
|
|
224
224
|
<td>Amazon Simple Queue Service</td>
|
225
225
|
</tr>
|
226
226
|
<tr>
|
227
|
-
<td>AWS::StorageGateway</td>
|
227
|
+
<td rowspan="2">AWS::StorageGateway</td>
|
228
228
|
<td>2012-06-30</td>
|
229
|
-
<td>AWS Storage Gateway</td>
|
229
|
+
<td rowspan="2">AWS Storage Gateway</td>
|
230
|
+
</tr>
|
231
|
+
<tr>
|
232
|
+
<td>2013-06-30</td>
|
230
233
|
</tr>
|
231
234
|
<tr>
|
232
235
|
<td>AWS::STS</td>
|
@@ -0,0 +1,123 @@
|
|
1
|
+
# Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
---
|
15
|
+
:api_version: '2013-11-01'
|
16
|
+
:operations:
|
17
|
+
- :name: CreateTrail
|
18
|
+
:method: :create_trail
|
19
|
+
:inputs:
|
20
|
+
trail:
|
21
|
+
- :structure:
|
22
|
+
Name:
|
23
|
+
- :string
|
24
|
+
S3BucketName:
|
25
|
+
- :string
|
26
|
+
S3KeyPrefix:
|
27
|
+
- :string
|
28
|
+
SnsTopicName:
|
29
|
+
- :string
|
30
|
+
IncludeGlobalServiceEvents:
|
31
|
+
- :boolean
|
32
|
+
:outputs:
|
33
|
+
:children:
|
34
|
+
CreateTrailResult:
|
35
|
+
:ignore: true
|
36
|
+
:children:
|
37
|
+
trail:
|
38
|
+
:children:
|
39
|
+
IncludeGlobalServiceEvents:
|
40
|
+
:type: :boolean
|
41
|
+
- :name: DeleteTrail
|
42
|
+
:method: :delete_trail
|
43
|
+
:inputs:
|
44
|
+
Name:
|
45
|
+
- :string
|
46
|
+
:outputs:
|
47
|
+
:children:
|
48
|
+
DeleteTrailResult:
|
49
|
+
:ignore: true
|
50
|
+
- :name: DescribeTrails
|
51
|
+
:method: :describe_trails
|
52
|
+
:inputs:
|
53
|
+
trailNameList:
|
54
|
+
- :membered_list:
|
55
|
+
- :string
|
56
|
+
:outputs:
|
57
|
+
:children:
|
58
|
+
DescribeTrailsResult:
|
59
|
+
:ignore: true
|
60
|
+
:children:
|
61
|
+
trailList:
|
62
|
+
:ignore: true
|
63
|
+
:children:
|
64
|
+
member:
|
65
|
+
:rename: :trail_list
|
66
|
+
:list: true
|
67
|
+
:children:
|
68
|
+
IncludeGlobalServiceEvents:
|
69
|
+
:type: :boolean
|
70
|
+
- :name: GetTrailStatus
|
71
|
+
:method: :get_trail_status
|
72
|
+
:inputs:
|
73
|
+
Name:
|
74
|
+
- :string
|
75
|
+
:outputs:
|
76
|
+
:children:
|
77
|
+
GetTrailStatusResult:
|
78
|
+
:ignore: true
|
79
|
+
:children:
|
80
|
+
IsLogging:
|
81
|
+
:type: :boolean
|
82
|
+
- :name: StartLogging
|
83
|
+
:method: :start_logging
|
84
|
+
:inputs:
|
85
|
+
Name:
|
86
|
+
- :string
|
87
|
+
:outputs:
|
88
|
+
:children:
|
89
|
+
StartLoggingResult:
|
90
|
+
:ignore: true
|
91
|
+
- :name: StopLogging
|
92
|
+
:method: :stop_logging
|
93
|
+
:inputs:
|
94
|
+
Name:
|
95
|
+
- :string
|
96
|
+
:outputs:
|
97
|
+
:children:
|
98
|
+
StopLoggingResult:
|
99
|
+
:ignore: true
|
100
|
+
- :name: UpdateTrail
|
101
|
+
:method: :update_trail
|
102
|
+
:inputs:
|
103
|
+
trail:
|
104
|
+
- :structure:
|
105
|
+
Name:
|
106
|
+
- :string
|
107
|
+
S3BucketName:
|
108
|
+
- :string
|
109
|
+
S3KeyPrefix:
|
110
|
+
- :string
|
111
|
+
SnsTopicName:
|
112
|
+
- :string
|
113
|
+
IncludeGlobalServiceEvents:
|
114
|
+
- :boolean
|
115
|
+
:outputs:
|
116
|
+
:children:
|
117
|
+
UpdateTrailResult:
|
118
|
+
:ignore: true
|
119
|
+
:children:
|
120
|
+
trail:
|
121
|
+
:children:
|
122
|
+
IncludeGlobalServiceEvents:
|
123
|
+
:type: :boolean
|
@@ -158,6 +158,19 @@
|
|
158
158
|
:children:
|
159
159
|
CreateDate:
|
160
160
|
:type: :time
|
161
|
+
- :name: CreateSAMLProvider
|
162
|
+
:method: :create_saml_provider
|
163
|
+
:inputs:
|
164
|
+
SAMLMetadataDocument:
|
165
|
+
- :string
|
166
|
+
- :required
|
167
|
+
Name:
|
168
|
+
- :string
|
169
|
+
- :required
|
170
|
+
:outputs:
|
171
|
+
:children:
|
172
|
+
CreateSAMLProviderResult:
|
173
|
+
:ignore: true
|
161
174
|
- :name: CreateUser
|
162
175
|
:method: :create_user
|
163
176
|
:inputs:
|
@@ -308,6 +321,16 @@
|
|
308
321
|
:children:
|
309
322
|
DeleteRolePolicyResult:
|
310
323
|
:ignore: true
|
324
|
+
- :name: DeleteSAMLProvider
|
325
|
+
:method: :delete_saml_provider
|
326
|
+
:inputs:
|
327
|
+
SAMLProviderArn:
|
328
|
+
- :string
|
329
|
+
- :required
|
330
|
+
:outputs:
|
331
|
+
:children:
|
332
|
+
DeleteSAMLProviderResult:
|
333
|
+
:ignore: true
|
311
334
|
- :name: DeleteServerCertificate
|
312
335
|
:method: :delete_server_certificate
|
313
336
|
:inputs:
|
@@ -404,6 +427,10 @@
|
|
404
427
|
:type: :boolean
|
405
428
|
AllowUsersToChangePassword:
|
406
429
|
:type: :boolean
|
430
|
+
ExpirePasswords:
|
431
|
+
:type: :boolean
|
432
|
+
MaxPasswordAge:
|
433
|
+
:type: :integer
|
407
434
|
- :name: GetAccountSummary
|
408
435
|
:method: :get_account_summary
|
409
436
|
:inputs: {}
|
@@ -533,6 +560,21 @@
|
|
533
560
|
:children:
|
534
561
|
GetRolePolicyResult:
|
535
562
|
:ignore: true
|
563
|
+
- :name: GetSAMLProvider
|
564
|
+
:method: :get_saml_provider
|
565
|
+
:inputs:
|
566
|
+
SAMLProviderArn:
|
567
|
+
- :string
|
568
|
+
- :required
|
569
|
+
:outputs:
|
570
|
+
:children:
|
571
|
+
GetSAMLProviderResult:
|
572
|
+
:ignore: true
|
573
|
+
:children:
|
574
|
+
CreateDate:
|
575
|
+
:type: :time
|
576
|
+
ValidUntil:
|
577
|
+
:type: :time
|
536
578
|
- :name: GetServerCertificate
|
537
579
|
:method: :get_server_certificate
|
538
580
|
:inputs:
|
@@ -838,6 +880,25 @@
|
|
838
880
|
:type: :time
|
839
881
|
IsTruncated:
|
840
882
|
:type: :boolean
|
883
|
+
- :name: ListSAMLProviders
|
884
|
+
:method: :list_saml_providers
|
885
|
+
:inputs: {}
|
886
|
+
:outputs:
|
887
|
+
:children:
|
888
|
+
ListSAMLProvidersResult:
|
889
|
+
:ignore: true
|
890
|
+
:children:
|
891
|
+
SAMLProviderList:
|
892
|
+
:ignore: true
|
893
|
+
:children:
|
894
|
+
member:
|
895
|
+
:rename: :saml_provider_list
|
896
|
+
:list: true
|
897
|
+
:children:
|
898
|
+
ValidUntil:
|
899
|
+
:type: :time
|
900
|
+
CreateDate:
|
901
|
+
:type: :time
|
841
902
|
- :name: ListServerCertificates
|
842
903
|
:method: :list_server_certificates
|
843
904
|
:inputs:
|
@@ -1131,10 +1192,24 @@
|
|
1131
1192
|
- :required
|
1132
1193
|
Password:
|
1133
1194
|
- :string
|
1195
|
+
- :required
|
1134
1196
|
:outputs:
|
1135
1197
|
:children:
|
1136
1198
|
UpdateLoginProfileResult:
|
1137
1199
|
:ignore: true
|
1200
|
+
- :name: UpdateSAMLProvider
|
1201
|
+
:method: :update_saml_provider
|
1202
|
+
:inputs:
|
1203
|
+
SAMLMetadataDocument:
|
1204
|
+
- :string
|
1205
|
+
- :required
|
1206
|
+
SAMLProviderArn:
|
1207
|
+
- :string
|
1208
|
+
- :required
|
1209
|
+
:outputs:
|
1210
|
+
:children:
|
1211
|
+
UpdateSAMLProviderResult:
|
1212
|
+
:ignore: true
|
1138
1213
|
- :name: UpdateServerCertificate
|
1139
1214
|
:method: :update_server_certificate
|
1140
1215
|
:inputs:
|
@@ -74,6 +74,8 @@
|
|
74
74
|
:type: :integer
|
75
75
|
Encrypted:
|
76
76
|
:type: :boolean
|
77
|
+
EncryptedWithHSM:
|
78
|
+
:type: :boolean
|
77
79
|
AccountsWithRestoreAccess:
|
78
80
|
:ignore: true
|
79
81
|
:children:
|
@@ -121,6 +123,8 @@
|
|
121
123
|
:type: :integer
|
122
124
|
Encrypted:
|
123
125
|
:type: :boolean
|
126
|
+
EncryptedWithHSM:
|
127
|
+
:type: :boolean
|
124
128
|
AccountsWithRestoreAccess:
|
125
129
|
:ignore: true
|
126
130
|
:children:
|
@@ -187,6 +191,12 @@
|
|
187
191
|
- :boolean
|
188
192
|
Encrypted:
|
189
193
|
- :boolean
|
194
|
+
HsmClientCertificateIdentifier:
|
195
|
+
- :string
|
196
|
+
HsmConfigurationIdentifier:
|
197
|
+
- :string
|
198
|
+
ElasticIp:
|
199
|
+
- :string
|
190
200
|
:outputs:
|
191
201
|
:children:
|
192
202
|
CreateClusterResult:
|
@@ -246,6 +256,16 @@
|
|
246
256
|
:type: :integer
|
247
257
|
EstimatedTimeToCompletionInSeconds:
|
248
258
|
:type: :integer
|
259
|
+
ClusterSnapshotCopyStatus:
|
260
|
+
:children:
|
261
|
+
RetentionPeriod:
|
262
|
+
:type: :integer
|
263
|
+
ClusterNodes:
|
264
|
+
:ignore: true
|
265
|
+
:children:
|
266
|
+
member:
|
267
|
+
:rename: :cluster_nodes
|
268
|
+
:list: true
|
249
269
|
:ignore: true
|
250
270
|
- :name: CreateClusterParameterGroup
|
251
271
|
:method: :create_cluster_parameter_group
|
@@ -321,6 +341,8 @@
|
|
321
341
|
:type: :integer
|
322
342
|
Encrypted:
|
323
343
|
:type: :boolean
|
344
|
+
EncryptedWithHSM:
|
345
|
+
:type: :boolean
|
324
346
|
AccountsWithRestoreAccess:
|
325
347
|
:ignore: true
|
326
348
|
:children:
|
@@ -367,6 +389,92 @@
|
|
367
389
|
:rename: :subnets
|
368
390
|
:list: true
|
369
391
|
:ignore: true
|
392
|
+
- :name: CreateEventSubscription
|
393
|
+
:method: :create_event_subscription
|
394
|
+
:inputs:
|
395
|
+
SubscriptionName:
|
396
|
+
- :string
|
397
|
+
- :required
|
398
|
+
SnsTopicArn:
|
399
|
+
- :string
|
400
|
+
- :required
|
401
|
+
SourceType:
|
402
|
+
- :string
|
403
|
+
SourceIds:
|
404
|
+
- :membered_list:
|
405
|
+
- :string
|
406
|
+
EventCategories:
|
407
|
+
- :membered_list:
|
408
|
+
- :string
|
409
|
+
Severity:
|
410
|
+
- :string
|
411
|
+
Enabled:
|
412
|
+
- :boolean
|
413
|
+
:outputs:
|
414
|
+
:children:
|
415
|
+
CreateEventSubscriptionResult:
|
416
|
+
:ignore: true
|
417
|
+
:children:
|
418
|
+
EventSubscription:
|
419
|
+
:children:
|
420
|
+
SubscriptionCreationTime:
|
421
|
+
:type: :time
|
422
|
+
SourceIdsList:
|
423
|
+
:ignore: true
|
424
|
+
:children:
|
425
|
+
SourceId:
|
426
|
+
:rename: :source_ids_list
|
427
|
+
:list: true
|
428
|
+
EventCategoriesList:
|
429
|
+
:ignore: true
|
430
|
+
:children:
|
431
|
+
EventCategory:
|
432
|
+
:rename: :event_categories_list
|
433
|
+
:list: true
|
434
|
+
Enabled:
|
435
|
+
:type: :boolean
|
436
|
+
:ignore: true
|
437
|
+
- :name: CreateHsmClientCertificate
|
438
|
+
:method: :create_hsm_client_certificate
|
439
|
+
:inputs:
|
440
|
+
HsmClientCertificateIdentifier:
|
441
|
+
- :string
|
442
|
+
- :required
|
443
|
+
:outputs:
|
444
|
+
:children:
|
445
|
+
CreateHsmClientCertificateResult:
|
446
|
+
:ignore: true
|
447
|
+
:children:
|
448
|
+
HsmClientCertificate:
|
449
|
+
:ignore: true
|
450
|
+
- :name: CreateHsmConfiguration
|
451
|
+
:method: :create_hsm_configuration
|
452
|
+
:inputs:
|
453
|
+
HsmConfigurationIdentifier:
|
454
|
+
- :string
|
455
|
+
- :required
|
456
|
+
Description:
|
457
|
+
- :string
|
458
|
+
- :required
|
459
|
+
HsmIpAddress:
|
460
|
+
- :string
|
461
|
+
- :required
|
462
|
+
HsmPartitionName:
|
463
|
+
- :string
|
464
|
+
- :required
|
465
|
+
HsmPartitionPassword:
|
466
|
+
- :string
|
467
|
+
- :required
|
468
|
+
HsmServerPublicCertificate:
|
469
|
+
- :string
|
470
|
+
- :required
|
471
|
+
:outputs:
|
472
|
+
:children:
|
473
|
+
CreateHsmConfigurationResult:
|
474
|
+
:ignore: true
|
475
|
+
:children:
|
476
|
+
HsmConfiguration:
|
477
|
+
:ignore: true
|
370
478
|
- :name: DeleteCluster
|
371
479
|
:method: :delete_cluster
|
372
480
|
:inputs:
|
@@ -436,6 +544,16 @@
|
|
436
544
|
:type: :integer
|
437
545
|
EstimatedTimeToCompletionInSeconds:
|
438
546
|
:type: :integer
|
547
|
+
ClusterSnapshotCopyStatus:
|
548
|
+
:children:
|
549
|
+
RetentionPeriod:
|
550
|
+
:type: :integer
|
551
|
+
ClusterNodes:
|
552
|
+
:ignore: true
|
553
|
+
:children:
|
554
|
+
member:
|
555
|
+
:rename: :cluster_nodes
|
556
|
+
:list: true
|
439
557
|
:ignore: true
|
440
558
|
- :name: DeleteClusterParameterGroup
|
441
559
|
:method: :delete_cluster_parameter_group
|
@@ -482,6 +600,8 @@
|
|
482
600
|
:type: :integer
|
483
601
|
Encrypted:
|
484
602
|
:type: :boolean
|
603
|
+
EncryptedWithHSM:
|
604
|
+
:type: :boolean
|
485
605
|
AccountsWithRestoreAccess:
|
486
606
|
:ignore: true
|
487
607
|
:children:
|
@@ -511,6 +631,37 @@
|
|
511
631
|
:children:
|
512
632
|
DeleteClusterSubnetGroupResult:
|
513
633
|
:ignore: true
|
634
|
+
- :name: DeleteEventSubscription
|
635
|
+
:method: :delete_event_subscription
|
636
|
+
:inputs:
|
637
|
+
SubscriptionName:
|
638
|
+
- :string
|
639
|
+
- :required
|
640
|
+
- :required
|
641
|
+
:outputs:
|
642
|
+
:children:
|
643
|
+
DeleteEventSubscriptionResult:
|
644
|
+
:ignore: true
|
645
|
+
- :name: DeleteHsmClientCertificate
|
646
|
+
:method: :delete_hsm_client_certificate
|
647
|
+
:inputs:
|
648
|
+
HsmClientCertificateIdentifier:
|
649
|
+
- :string
|
650
|
+
- :required
|
651
|
+
:outputs:
|
652
|
+
:children:
|
653
|
+
DeleteHsmClientCertificateResult:
|
654
|
+
:ignore: true
|
655
|
+
- :name: DeleteHsmConfiguration
|
656
|
+
:method: :delete_hsm_configuration
|
657
|
+
:inputs:
|
658
|
+
HsmConfigurationIdentifier:
|
659
|
+
- :string
|
660
|
+
- :required
|
661
|
+
:outputs:
|
662
|
+
:children:
|
663
|
+
DeleteHsmConfigurationResult:
|
664
|
+
:ignore: true
|
514
665
|
- :name: DescribeClusterParameterGroups
|
515
666
|
:method: :describe_cluster_parameter_groups
|
516
667
|
:inputs:
|
@@ -631,6 +782,8 @@
|
|
631
782
|
:type: :integer
|
632
783
|
Encrypted:
|
633
784
|
:type: :boolean
|
785
|
+
EncryptedWithHSM:
|
786
|
+
:type: :boolean
|
634
787
|
AccountsWithRestoreAccess:
|
635
788
|
:ignore: true
|
636
789
|
:children:
|
@@ -771,6 +924,16 @@
|
|
771
924
|
:type: :integer
|
772
925
|
EstimatedTimeToCompletionInSeconds:
|
773
926
|
:type: :integer
|
927
|
+
ClusterSnapshotCopyStatus:
|
928
|
+
:children:
|
929
|
+
RetentionPeriod:
|
930
|
+
:type: :integer
|
931
|
+
ClusterNodes:
|
932
|
+
:ignore: true
|
933
|
+
:children:
|
934
|
+
member:
|
935
|
+
:rename: :cluster_nodes
|
936
|
+
:list: true
|
774
937
|
- :name: DescribeDefaultClusterParameters
|
775
938
|
:method: :describe_default_cluster_parameters
|
776
939
|
:inputs:
|
@@ -798,6 +961,73 @@
|
|
798
961
|
IsModifiable:
|
799
962
|
:type: :boolean
|
800
963
|
:ignore: true
|
964
|
+
- :name: DescribeEventCategories
|
965
|
+
:method: :describe_event_categories
|
966
|
+
:inputs:
|
967
|
+
SourceType:
|
968
|
+
- :string
|
969
|
+
:outputs:
|
970
|
+
:children:
|
971
|
+
DescribeEventCategoriesResult:
|
972
|
+
:ignore: true
|
973
|
+
:children:
|
974
|
+
EventCategoriesMapList:
|
975
|
+
:ignore: true
|
976
|
+
:children:
|
977
|
+
EventCategoriesMap:
|
978
|
+
:rename: :event_categories_map_list
|
979
|
+
:list: true
|
980
|
+
:children:
|
981
|
+
Events:
|
982
|
+
:ignore: true
|
983
|
+
:children:
|
984
|
+
EventInfoMap:
|
985
|
+
:rename: :events
|
986
|
+
:list: true
|
987
|
+
:children:
|
988
|
+
EventCategories:
|
989
|
+
:ignore: true
|
990
|
+
:children:
|
991
|
+
EventCategory:
|
992
|
+
:rename: :event_categories
|
993
|
+
:list: true
|
994
|
+
- :name: DescribeEventSubscriptions
|
995
|
+
:method: :describe_event_subscriptions
|
996
|
+
:inputs:
|
997
|
+
SubscriptionName:
|
998
|
+
- :string
|
999
|
+
MaxRecords:
|
1000
|
+
- :integer
|
1001
|
+
Marker:
|
1002
|
+
- :string
|
1003
|
+
:outputs:
|
1004
|
+
:children:
|
1005
|
+
DescribeEventSubscriptionsResult:
|
1006
|
+
:ignore: true
|
1007
|
+
:children:
|
1008
|
+
EventSubscriptionsList:
|
1009
|
+
:ignore: true
|
1010
|
+
:children:
|
1011
|
+
EventSubscription:
|
1012
|
+
:rename: :event_subscriptions_list
|
1013
|
+
:list: true
|
1014
|
+
:children:
|
1015
|
+
SubscriptionCreationTime:
|
1016
|
+
:type: :time
|
1017
|
+
SourceIdsList:
|
1018
|
+
:ignore: true
|
1019
|
+
:children:
|
1020
|
+
SourceId:
|
1021
|
+
:rename: :source_ids_list
|
1022
|
+
:list: true
|
1023
|
+
EventCategoriesList:
|
1024
|
+
:ignore: true
|
1025
|
+
:children:
|
1026
|
+
EventCategory:
|
1027
|
+
:rename: :event_categories_list
|
1028
|
+
:list: true
|
1029
|
+
Enabled:
|
1030
|
+
:type: :boolean
|
801
1031
|
- :name: DescribeEvents
|
802
1032
|
:method: :describe_events
|
803
1033
|
:inputs:
|
@@ -827,8 +1057,71 @@
|
|
827
1057
|
:rename: :events
|
828
1058
|
:list: true
|
829
1059
|
:children:
|
1060
|
+
EventCategories:
|
1061
|
+
:ignore: true
|
1062
|
+
:children:
|
1063
|
+
EventCategory:
|
1064
|
+
:rename: :event_categories
|
1065
|
+
:list: true
|
830
1066
|
Date:
|
831
1067
|
:type: :time
|
1068
|
+
- :name: DescribeHsmClientCertificates
|
1069
|
+
:method: :describe_hsm_client_certificates
|
1070
|
+
:inputs:
|
1071
|
+
HsmClientCertificateIdentifier:
|
1072
|
+
- :string
|
1073
|
+
MaxRecords:
|
1074
|
+
- :integer
|
1075
|
+
Marker:
|
1076
|
+
- :string
|
1077
|
+
:outputs:
|
1078
|
+
:children:
|
1079
|
+
DescribeHsmClientCertificatesResult:
|
1080
|
+
:ignore: true
|
1081
|
+
:children:
|
1082
|
+
HsmClientCertificates:
|
1083
|
+
:ignore: true
|
1084
|
+
:children:
|
1085
|
+
HsmClientCertificate:
|
1086
|
+
:rename: :hsm_client_certificates
|
1087
|
+
:list: true
|
1088
|
+
- :name: DescribeHsmConfigurations
|
1089
|
+
:method: :describe_hsm_configurations
|
1090
|
+
:inputs:
|
1091
|
+
HsmConfigurationIdentifier:
|
1092
|
+
- :string
|
1093
|
+
MaxRecords:
|
1094
|
+
- :integer
|
1095
|
+
Marker:
|
1096
|
+
- :string
|
1097
|
+
:outputs:
|
1098
|
+
:children:
|
1099
|
+
DescribeHsmConfigurationsResult:
|
1100
|
+
:ignore: true
|
1101
|
+
:children:
|
1102
|
+
HsmConfigurations:
|
1103
|
+
:ignore: true
|
1104
|
+
:children:
|
1105
|
+
HsmConfiguration:
|
1106
|
+
:rename: :hsm_configurations
|
1107
|
+
:list: true
|
1108
|
+
- :name: DescribeLoggingStatus
|
1109
|
+
:method: :describe_logging_status
|
1110
|
+
:inputs:
|
1111
|
+
ClusterIdentifier:
|
1112
|
+
- :string
|
1113
|
+
- :required
|
1114
|
+
:outputs:
|
1115
|
+
:children:
|
1116
|
+
DescribeLoggingStatusResult:
|
1117
|
+
:ignore: true
|
1118
|
+
:children:
|
1119
|
+
LoggingEnabled:
|
1120
|
+
:type: :boolean
|
1121
|
+
LastSuccessfulDeliveryTime:
|
1122
|
+
:type: :time
|
1123
|
+
LastFailureTime:
|
1124
|
+
:type: :time
|
832
1125
|
- :name: DescribeOrderableClusterOptions
|
833
1126
|
:method: :describe_orderable_cluster_options
|
834
1127
|
:inputs:
|
@@ -965,39 +1258,32 @@
|
|
965
1258
|
member:
|
966
1259
|
:rename: :import_tables_not_started
|
967
1260
|
:list: true
|
968
|
-
- :name:
|
969
|
-
:method: :
|
1261
|
+
- :name: DisableLogging
|
1262
|
+
:method: :disable_logging
|
970
1263
|
:inputs:
|
971
1264
|
ClusterIdentifier:
|
972
1265
|
- :string
|
973
1266
|
- :required
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
- :string
|
990
|
-
AutomatedSnapshotRetentionPeriod:
|
991
|
-
- :integer
|
992
|
-
PreferredMaintenanceWindow:
|
993
|
-
- :string
|
994
|
-
ClusterVersion:
|
1267
|
+
:outputs:
|
1268
|
+
:children:
|
1269
|
+
DisableLoggingResult:
|
1270
|
+
:ignore: true
|
1271
|
+
:children:
|
1272
|
+
LoggingEnabled:
|
1273
|
+
:type: :boolean
|
1274
|
+
LastSuccessfulDeliveryTime:
|
1275
|
+
:type: :time
|
1276
|
+
LastFailureTime:
|
1277
|
+
:type: :time
|
1278
|
+
- :name: DisableSnapshotCopy
|
1279
|
+
:method: :disable_snapshot_copy
|
1280
|
+
:inputs:
|
1281
|
+
ClusterIdentifier:
|
995
1282
|
- :string
|
996
|
-
|
997
|
-
- :boolean
|
1283
|
+
- :required
|
998
1284
|
:outputs:
|
999
1285
|
:children:
|
1000
|
-
|
1286
|
+
DisableSnapshotCopyResult:
|
1001
1287
|
:ignore: true
|
1002
1288
|
:children:
|
1003
1289
|
Cluster:
|
@@ -1054,65 +1340,405 @@
|
|
1054
1340
|
:type: :integer
|
1055
1341
|
EstimatedTimeToCompletionInSeconds:
|
1056
1342
|
:type: :integer
|
1343
|
+
ClusterSnapshotCopyStatus:
|
1344
|
+
:children:
|
1345
|
+
RetentionPeriod:
|
1346
|
+
:type: :integer
|
1347
|
+
ClusterNodes:
|
1348
|
+
:ignore: true
|
1349
|
+
:children:
|
1350
|
+
member:
|
1351
|
+
:rename: :cluster_nodes
|
1352
|
+
:list: true
|
1057
1353
|
:ignore: true
|
1058
|
-
- :name:
|
1059
|
-
:method: :
|
1354
|
+
- :name: EnableLogging
|
1355
|
+
:method: :enable_logging
|
1060
1356
|
:inputs:
|
1061
|
-
|
1357
|
+
ClusterIdentifier:
|
1062
1358
|
- :string
|
1063
1359
|
- :required
|
1064
|
-
|
1065
|
-
- :
|
1066
|
-
- :structure:
|
1067
|
-
ParameterName:
|
1068
|
-
- :string
|
1069
|
-
ParameterValue:
|
1070
|
-
- :string
|
1071
|
-
Description:
|
1072
|
-
- :string
|
1073
|
-
Source:
|
1074
|
-
- :string
|
1075
|
-
DataType:
|
1076
|
-
- :string
|
1077
|
-
AllowedValues:
|
1078
|
-
- :string
|
1079
|
-
IsModifiable:
|
1080
|
-
- :boolean
|
1081
|
-
MinimumEngineVersion:
|
1082
|
-
- :string
|
1360
|
+
BucketName:
|
1361
|
+
- :string
|
1083
1362
|
- :required
|
1363
|
+
S3KeyPrefix:
|
1364
|
+
- :string
|
1084
1365
|
:outputs:
|
1085
1366
|
:children:
|
1086
|
-
|
1367
|
+
EnableLoggingResult:
|
1087
1368
|
:ignore: true
|
1088
|
-
|
1089
|
-
|
1369
|
+
:children:
|
1370
|
+
LoggingEnabled:
|
1371
|
+
:type: :boolean
|
1372
|
+
LastSuccessfulDeliveryTime:
|
1373
|
+
:type: :time
|
1374
|
+
LastFailureTime:
|
1375
|
+
:type: :time
|
1376
|
+
- :name: EnableSnapshotCopy
|
1377
|
+
:method: :enable_snapshot_copy
|
1090
1378
|
:inputs:
|
1091
|
-
|
1379
|
+
ClusterIdentifier:
|
1092
1380
|
- :string
|
1093
1381
|
- :required
|
1094
|
-
|
1382
|
+
DestinationRegion:
|
1095
1383
|
- :string
|
1096
|
-
SubnetIds:
|
1097
|
-
- :membered_list:
|
1098
|
-
- :string
|
1099
1384
|
- :required
|
1385
|
+
RetentionPeriod:
|
1386
|
+
- :integer
|
1100
1387
|
:outputs:
|
1101
1388
|
:children:
|
1102
|
-
|
1389
|
+
EnableSnapshotCopyResult:
|
1103
1390
|
:ignore: true
|
1104
1391
|
:children:
|
1105
|
-
|
1392
|
+
Cluster:
|
1106
1393
|
:children:
|
1107
|
-
|
1108
|
-
:ignore: true
|
1394
|
+
Endpoint:
|
1109
1395
|
:children:
|
1110
|
-
|
1111
|
-
:
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1396
|
+
Port:
|
1397
|
+
:type: :integer
|
1398
|
+
ClusterCreateTime:
|
1399
|
+
:type: :time
|
1400
|
+
AutomatedSnapshotRetentionPeriod:
|
1401
|
+
:type: :integer
|
1402
|
+
ClusterSecurityGroups:
|
1403
|
+
:ignore: true
|
1404
|
+
:children:
|
1405
|
+
ClusterSecurityGroup:
|
1406
|
+
:rename: :cluster_security_groups
|
1407
|
+
:list: true
|
1408
|
+
VpcSecurityGroups:
|
1409
|
+
:ignore: true
|
1410
|
+
:children:
|
1411
|
+
VpcSecurityGroup:
|
1412
|
+
:rename: :vpc_security_groups
|
1413
|
+
:list: true
|
1414
|
+
ClusterParameterGroups:
|
1415
|
+
:ignore: true
|
1416
|
+
:children:
|
1417
|
+
ClusterParameterGroup:
|
1418
|
+
:rename: :cluster_parameter_groups
|
1419
|
+
:list: true
|
1420
|
+
PendingModifiedValues:
|
1421
|
+
:children:
|
1422
|
+
NumberOfNodes:
|
1423
|
+
:type: :integer
|
1424
|
+
AutomatedSnapshotRetentionPeriod:
|
1425
|
+
:type: :integer
|
1426
|
+
AllowVersionUpgrade:
|
1427
|
+
:type: :boolean
|
1428
|
+
NumberOfNodes:
|
1429
|
+
:type: :integer
|
1430
|
+
PubliclyAccessible:
|
1431
|
+
:type: :boolean
|
1432
|
+
Encrypted:
|
1433
|
+
:type: :boolean
|
1434
|
+
RestoreStatus:
|
1435
|
+
:children:
|
1436
|
+
CurrentRestoreRateInMegaBytesPerSecond:
|
1437
|
+
:type: :float
|
1438
|
+
SnapshotSizeInMegaBytes:
|
1439
|
+
:type: :integer
|
1440
|
+
ProgressInMegaBytes:
|
1441
|
+
:type: :integer
|
1442
|
+
ElapsedTimeInSeconds:
|
1443
|
+
:type: :integer
|
1444
|
+
EstimatedTimeToCompletionInSeconds:
|
1445
|
+
:type: :integer
|
1446
|
+
ClusterSnapshotCopyStatus:
|
1447
|
+
:children:
|
1448
|
+
RetentionPeriod:
|
1449
|
+
:type: :integer
|
1450
|
+
ClusterNodes:
|
1451
|
+
:ignore: true
|
1452
|
+
:children:
|
1453
|
+
member:
|
1454
|
+
:rename: :cluster_nodes
|
1455
|
+
:list: true
|
1456
|
+
:ignore: true
|
1457
|
+
- :name: ModifyCluster
|
1458
|
+
:method: :modify_cluster
|
1459
|
+
:inputs:
|
1460
|
+
ClusterIdentifier:
|
1461
|
+
- :string
|
1462
|
+
- :required
|
1463
|
+
ClusterType:
|
1464
|
+
- :string
|
1465
|
+
NodeType:
|
1466
|
+
- :string
|
1467
|
+
NumberOfNodes:
|
1468
|
+
- :integer
|
1469
|
+
ClusterSecurityGroups:
|
1470
|
+
- :membered_list:
|
1471
|
+
- :string
|
1472
|
+
VpcSecurityGroupIds:
|
1473
|
+
- :membered_list:
|
1474
|
+
- :string
|
1475
|
+
MasterUserPassword:
|
1476
|
+
- :string
|
1477
|
+
ClusterParameterGroupName:
|
1478
|
+
- :string
|
1479
|
+
AutomatedSnapshotRetentionPeriod:
|
1480
|
+
- :integer
|
1481
|
+
PreferredMaintenanceWindow:
|
1482
|
+
- :string
|
1483
|
+
ClusterVersion:
|
1484
|
+
- :string
|
1485
|
+
AllowVersionUpgrade:
|
1486
|
+
- :boolean
|
1487
|
+
HsmClientCertificateIdentifier:
|
1488
|
+
- :string
|
1489
|
+
HsmConfigurationIdentifier:
|
1490
|
+
- :string
|
1491
|
+
:outputs:
|
1492
|
+
:children:
|
1493
|
+
ModifyClusterResult:
|
1494
|
+
:ignore: true
|
1495
|
+
:children:
|
1496
|
+
Cluster:
|
1497
|
+
:children:
|
1498
|
+
Endpoint:
|
1499
|
+
:children:
|
1500
|
+
Port:
|
1501
|
+
:type: :integer
|
1502
|
+
ClusterCreateTime:
|
1503
|
+
:type: :time
|
1504
|
+
AutomatedSnapshotRetentionPeriod:
|
1505
|
+
:type: :integer
|
1506
|
+
ClusterSecurityGroups:
|
1507
|
+
:ignore: true
|
1508
|
+
:children:
|
1509
|
+
ClusterSecurityGroup:
|
1510
|
+
:rename: :cluster_security_groups
|
1511
|
+
:list: true
|
1512
|
+
VpcSecurityGroups:
|
1513
|
+
:ignore: true
|
1514
|
+
:children:
|
1515
|
+
VpcSecurityGroup:
|
1516
|
+
:rename: :vpc_security_groups
|
1517
|
+
:list: true
|
1518
|
+
ClusterParameterGroups:
|
1519
|
+
:ignore: true
|
1520
|
+
:children:
|
1521
|
+
ClusterParameterGroup:
|
1522
|
+
:rename: :cluster_parameter_groups
|
1523
|
+
:list: true
|
1524
|
+
PendingModifiedValues:
|
1525
|
+
:children:
|
1526
|
+
NumberOfNodes:
|
1527
|
+
:type: :integer
|
1528
|
+
AutomatedSnapshotRetentionPeriod:
|
1529
|
+
:type: :integer
|
1530
|
+
AllowVersionUpgrade:
|
1531
|
+
:type: :boolean
|
1532
|
+
NumberOfNodes:
|
1533
|
+
:type: :integer
|
1534
|
+
PubliclyAccessible:
|
1535
|
+
:type: :boolean
|
1536
|
+
Encrypted:
|
1537
|
+
:type: :boolean
|
1538
|
+
RestoreStatus:
|
1539
|
+
:children:
|
1540
|
+
CurrentRestoreRateInMegaBytesPerSecond:
|
1541
|
+
:type: :float
|
1542
|
+
SnapshotSizeInMegaBytes:
|
1543
|
+
:type: :integer
|
1544
|
+
ProgressInMegaBytes:
|
1545
|
+
:type: :integer
|
1546
|
+
ElapsedTimeInSeconds:
|
1547
|
+
:type: :integer
|
1548
|
+
EstimatedTimeToCompletionInSeconds:
|
1549
|
+
:type: :integer
|
1550
|
+
ClusterSnapshotCopyStatus:
|
1551
|
+
:children:
|
1552
|
+
RetentionPeriod:
|
1553
|
+
:type: :integer
|
1554
|
+
ClusterNodes:
|
1555
|
+
:ignore: true
|
1556
|
+
:children:
|
1557
|
+
member:
|
1558
|
+
:rename: :cluster_nodes
|
1559
|
+
:list: true
|
1560
|
+
:ignore: true
|
1561
|
+
- :name: ModifyClusterParameterGroup
|
1562
|
+
:method: :modify_cluster_parameter_group
|
1563
|
+
:inputs:
|
1564
|
+
ParameterGroupName:
|
1565
|
+
- :string
|
1566
|
+
- :required
|
1567
|
+
Parameters:
|
1568
|
+
- :membered_list:
|
1569
|
+
- :structure:
|
1570
|
+
ParameterName:
|
1571
|
+
- :string
|
1572
|
+
ParameterValue:
|
1573
|
+
- :string
|
1574
|
+
Description:
|
1575
|
+
- :string
|
1576
|
+
Source:
|
1577
|
+
- :string
|
1578
|
+
DataType:
|
1579
|
+
- :string
|
1580
|
+
AllowedValues:
|
1581
|
+
- :string
|
1582
|
+
IsModifiable:
|
1583
|
+
- :boolean
|
1584
|
+
MinimumEngineVersion:
|
1585
|
+
- :string
|
1586
|
+
- :required
|
1587
|
+
:outputs:
|
1588
|
+
:children:
|
1589
|
+
ModifyClusterParameterGroupResult:
|
1590
|
+
:ignore: true
|
1591
|
+
- :name: ModifyClusterSubnetGroup
|
1592
|
+
:method: :modify_cluster_subnet_group
|
1593
|
+
:inputs:
|
1594
|
+
ClusterSubnetGroupName:
|
1595
|
+
- :string
|
1596
|
+
- :required
|
1597
|
+
Description:
|
1598
|
+
- :string
|
1599
|
+
SubnetIds:
|
1600
|
+
- :membered_list:
|
1601
|
+
- :string
|
1602
|
+
- :required
|
1603
|
+
:outputs:
|
1604
|
+
:children:
|
1605
|
+
ModifyClusterSubnetGroupResult:
|
1606
|
+
:ignore: true
|
1607
|
+
:children:
|
1608
|
+
ClusterSubnetGroup:
|
1609
|
+
:children:
|
1610
|
+
Subnets:
|
1611
|
+
:ignore: true
|
1612
|
+
:children:
|
1613
|
+
Subnet:
|
1614
|
+
:rename: :subnets
|
1615
|
+
:list: true
|
1616
|
+
:ignore: true
|
1617
|
+
- :name: ModifyEventSubscription
|
1618
|
+
:method: :modify_event_subscription
|
1619
|
+
:inputs:
|
1620
|
+
SubscriptionName:
|
1621
|
+
- :string
|
1622
|
+
- :required
|
1623
|
+
SnsTopicArn:
|
1624
|
+
- :string
|
1625
|
+
SourceType:
|
1626
|
+
- :string
|
1627
|
+
SourceIds:
|
1628
|
+
- :membered_list:
|
1629
|
+
- :string
|
1630
|
+
EventCategories:
|
1631
|
+
- :membered_list:
|
1632
|
+
- :string
|
1633
|
+
Severity:
|
1634
|
+
- :string
|
1635
|
+
Enabled:
|
1636
|
+
- :boolean
|
1637
|
+
:outputs:
|
1638
|
+
:children:
|
1639
|
+
ModifyEventSubscriptionResult:
|
1640
|
+
:ignore: true
|
1641
|
+
:children:
|
1642
|
+
EventSubscription:
|
1643
|
+
:children:
|
1644
|
+
SubscriptionCreationTime:
|
1645
|
+
:type: :time
|
1646
|
+
SourceIdsList:
|
1647
|
+
:ignore: true
|
1648
|
+
:children:
|
1649
|
+
SourceId:
|
1650
|
+
:rename: :source_ids_list
|
1651
|
+
:list: true
|
1652
|
+
EventCategoriesList:
|
1653
|
+
:ignore: true
|
1654
|
+
:children:
|
1655
|
+
EventCategory:
|
1656
|
+
:rename: :event_categories_list
|
1657
|
+
:list: true
|
1658
|
+
Enabled:
|
1659
|
+
:type: :boolean
|
1660
|
+
:ignore: true
|
1661
|
+
- :name: ModifySnapshotCopyRetentionPeriod
|
1662
|
+
:method: :modify_snapshot_copy_retention_period
|
1663
|
+
:inputs:
|
1664
|
+
ClusterIdentifier:
|
1665
|
+
- :string
|
1666
|
+
- :required
|
1667
|
+
RetentionPeriod:
|
1668
|
+
- :integer
|
1669
|
+
- :required
|
1670
|
+
:outputs:
|
1671
|
+
:children:
|
1672
|
+
ModifySnapshotCopyRetentionPeriodResult:
|
1673
|
+
:ignore: true
|
1674
|
+
:children:
|
1675
|
+
Cluster:
|
1676
|
+
:children:
|
1677
|
+
Endpoint:
|
1678
|
+
:children:
|
1679
|
+
Port:
|
1680
|
+
:type: :integer
|
1681
|
+
ClusterCreateTime:
|
1682
|
+
:type: :time
|
1683
|
+
AutomatedSnapshotRetentionPeriod:
|
1684
|
+
:type: :integer
|
1685
|
+
ClusterSecurityGroups:
|
1686
|
+
:ignore: true
|
1687
|
+
:children:
|
1688
|
+
ClusterSecurityGroup:
|
1689
|
+
:rename: :cluster_security_groups
|
1690
|
+
:list: true
|
1691
|
+
VpcSecurityGroups:
|
1692
|
+
:ignore: true
|
1693
|
+
:children:
|
1694
|
+
VpcSecurityGroup:
|
1695
|
+
:rename: :vpc_security_groups
|
1696
|
+
:list: true
|
1697
|
+
ClusterParameterGroups:
|
1698
|
+
:ignore: true
|
1699
|
+
:children:
|
1700
|
+
ClusterParameterGroup:
|
1701
|
+
:rename: :cluster_parameter_groups
|
1702
|
+
:list: true
|
1703
|
+
PendingModifiedValues:
|
1704
|
+
:children:
|
1705
|
+
NumberOfNodes:
|
1706
|
+
:type: :integer
|
1707
|
+
AutomatedSnapshotRetentionPeriod:
|
1708
|
+
:type: :integer
|
1709
|
+
AllowVersionUpgrade:
|
1710
|
+
:type: :boolean
|
1711
|
+
NumberOfNodes:
|
1712
|
+
:type: :integer
|
1713
|
+
PubliclyAccessible:
|
1714
|
+
:type: :boolean
|
1715
|
+
Encrypted:
|
1716
|
+
:type: :boolean
|
1717
|
+
RestoreStatus:
|
1718
|
+
:children:
|
1719
|
+
CurrentRestoreRateInMegaBytesPerSecond:
|
1720
|
+
:type: :float
|
1721
|
+
SnapshotSizeInMegaBytes:
|
1722
|
+
:type: :integer
|
1723
|
+
ProgressInMegaBytes:
|
1724
|
+
:type: :integer
|
1725
|
+
ElapsedTimeInSeconds:
|
1726
|
+
:type: :integer
|
1727
|
+
EstimatedTimeToCompletionInSeconds:
|
1728
|
+
:type: :integer
|
1729
|
+
ClusterSnapshotCopyStatus:
|
1730
|
+
:children:
|
1731
|
+
RetentionPeriod:
|
1732
|
+
:type: :integer
|
1733
|
+
ClusterNodes:
|
1734
|
+
:ignore: true
|
1735
|
+
:children:
|
1736
|
+
member:
|
1737
|
+
:rename: :cluster_nodes
|
1738
|
+
:list: true
|
1739
|
+
:ignore: true
|
1740
|
+
- :name: PurchaseReservedNodeOffering
|
1741
|
+
:method: :purchase_reserved_node_offering
|
1116
1742
|
:inputs:
|
1117
1743
|
ReservedNodeOfferingId:
|
1118
1744
|
- :string
|
@@ -1211,6 +1837,16 @@
|
|
1211
1837
|
:type: :integer
|
1212
1838
|
EstimatedTimeToCompletionInSeconds:
|
1213
1839
|
:type: :integer
|
1840
|
+
ClusterSnapshotCopyStatus:
|
1841
|
+
:children:
|
1842
|
+
RetentionPeriod:
|
1843
|
+
:type: :integer
|
1844
|
+
ClusterNodes:
|
1845
|
+
:ignore: true
|
1846
|
+
:children:
|
1847
|
+
member:
|
1848
|
+
:rename: :cluster_nodes
|
1849
|
+
:list: true
|
1214
1850
|
:ignore: true
|
1215
1851
|
- :name: ResetClusterParameterGroup
|
1216
1852
|
:method: :reset_cluster_parameter_group
|
@@ -1266,6 +1902,12 @@
|
|
1266
1902
|
- :boolean
|
1267
1903
|
OwnerAccount:
|
1268
1904
|
- :string
|
1905
|
+
HsmClientCertificateIdentifier:
|
1906
|
+
- :string
|
1907
|
+
HsmConfigurationIdentifier:
|
1908
|
+
- :string
|
1909
|
+
ElasticIp:
|
1910
|
+
- :string
|
1269
1911
|
:outputs:
|
1270
1912
|
:children:
|
1271
1913
|
RestoreFromClusterSnapshotResult:
|
@@ -1325,6 +1967,16 @@
|
|
1325
1967
|
:type: :integer
|
1326
1968
|
EstimatedTimeToCompletionInSeconds:
|
1327
1969
|
:type: :integer
|
1970
|
+
ClusterSnapshotCopyStatus:
|
1971
|
+
:children:
|
1972
|
+
RetentionPeriod:
|
1973
|
+
:type: :integer
|
1974
|
+
ClusterNodes:
|
1975
|
+
:ignore: true
|
1976
|
+
:children:
|
1977
|
+
member:
|
1978
|
+
:rename: :cluster_nodes
|
1979
|
+
:list: true
|
1328
1980
|
:ignore: true
|
1329
1981
|
- :name: RevokeClusterSecurityGroupIngress
|
1330
1982
|
:method: :revoke_cluster_security_group_ingress
|
@@ -1386,6 +2038,8 @@
|
|
1386
2038
|
:type: :integer
|
1387
2039
|
Encrypted:
|
1388
2040
|
:type: :boolean
|
2041
|
+
EncryptedWithHSM:
|
2042
|
+
:type: :boolean
|
1389
2043
|
AccountsWithRestoreAccess:
|
1390
2044
|
:ignore: true
|
1391
2045
|
:children:
|
@@ -1405,3 +2059,79 @@
|
|
1405
2059
|
ElapsedTimeInSeconds:
|
1406
2060
|
:type: :integer
|
1407
2061
|
:ignore: true
|
2062
|
+
- :name: RotateEncryptionKey
|
2063
|
+
:method: :rotate_encryption_key
|
2064
|
+
:inputs:
|
2065
|
+
ClusterIdentifier:
|
2066
|
+
- :string
|
2067
|
+
- :required
|
2068
|
+
:outputs:
|
2069
|
+
:children:
|
2070
|
+
RotateEncryptionKeyResult:
|
2071
|
+
:ignore: true
|
2072
|
+
:children:
|
2073
|
+
Cluster:
|
2074
|
+
:children:
|
2075
|
+
Endpoint:
|
2076
|
+
:children:
|
2077
|
+
Port:
|
2078
|
+
:type: :integer
|
2079
|
+
ClusterCreateTime:
|
2080
|
+
:type: :time
|
2081
|
+
AutomatedSnapshotRetentionPeriod:
|
2082
|
+
:type: :integer
|
2083
|
+
ClusterSecurityGroups:
|
2084
|
+
:ignore: true
|
2085
|
+
:children:
|
2086
|
+
ClusterSecurityGroup:
|
2087
|
+
:rename: :cluster_security_groups
|
2088
|
+
:list: true
|
2089
|
+
VpcSecurityGroups:
|
2090
|
+
:ignore: true
|
2091
|
+
:children:
|
2092
|
+
VpcSecurityGroup:
|
2093
|
+
:rename: :vpc_security_groups
|
2094
|
+
:list: true
|
2095
|
+
ClusterParameterGroups:
|
2096
|
+
:ignore: true
|
2097
|
+
:children:
|
2098
|
+
ClusterParameterGroup:
|
2099
|
+
:rename: :cluster_parameter_groups
|
2100
|
+
:list: true
|
2101
|
+
PendingModifiedValues:
|
2102
|
+
:children:
|
2103
|
+
NumberOfNodes:
|
2104
|
+
:type: :integer
|
2105
|
+
AutomatedSnapshotRetentionPeriod:
|
2106
|
+
:type: :integer
|
2107
|
+
AllowVersionUpgrade:
|
2108
|
+
:type: :boolean
|
2109
|
+
NumberOfNodes:
|
2110
|
+
:type: :integer
|
2111
|
+
PubliclyAccessible:
|
2112
|
+
:type: :boolean
|
2113
|
+
Encrypted:
|
2114
|
+
:type: :boolean
|
2115
|
+
RestoreStatus:
|
2116
|
+
:children:
|
2117
|
+
CurrentRestoreRateInMegaBytesPerSecond:
|
2118
|
+
:type: :float
|
2119
|
+
SnapshotSizeInMegaBytes:
|
2120
|
+
:type: :integer
|
2121
|
+
ProgressInMegaBytes:
|
2122
|
+
:type: :integer
|
2123
|
+
ElapsedTimeInSeconds:
|
2124
|
+
:type: :integer
|
2125
|
+
EstimatedTimeToCompletionInSeconds:
|
2126
|
+
:type: :integer
|
2127
|
+
ClusterSnapshotCopyStatus:
|
2128
|
+
:children:
|
2129
|
+
RetentionPeriod:
|
2130
|
+
:type: :integer
|
2131
|
+
ClusterNodes:
|
2132
|
+
:ignore: true
|
2133
|
+
:children:
|
2134
|
+
member:
|
2135
|
+
:rename: :cluster_nodes
|
2136
|
+
:list: true
|
2137
|
+
:ignore: true
|