aws-sdk-elasticache 1.36.0 → 1.41.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-elasticache.rb +4 -2
- data/lib/aws-sdk-elasticache/client.rb +51 -42
- data/lib/aws-sdk-elasticache/client_api.rb +2 -0
- data/lib/aws-sdk-elasticache/customizations.rb +1 -0
- data/lib/aws-sdk-elasticache/errors.rb +2 -0
- data/lib/aws-sdk-elasticache/resource.rb +2 -0
- data/lib/aws-sdk-elasticache/types.rb +194 -60
- data/lib/aws-sdk-elasticache/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f191e6150ab7ec6ce11fe97063cf3a3e4c1cb8a7ad22d6e34c3a9175898ca4d9
|
4
|
+
data.tar.gz: ff7d9f12c490014512e1be5e8a5969e6fc7576af077e26a82094b5fb9d273256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccc80f149c2b09a633c61632ccba7e9c0477d1be2e0b95bf213cb9853d1cbd6c7d7fea1b0fe4e71e4c15d6f70db88746b7ae05d8776b7101bf48346dc879f5d3
|
7
|
+
data.tar.gz: 9346de443fd17a719a572ccd1be5c91ff0d8c62499ceb4d7aa47cb40e8e3074c21b0c249461456eef78fb1a63215176628572e587078ae6e06c1d8ad1805d4e9
|
data/lib/aws-sdk-elasticache.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:
|
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-elasticache/customizations'
|
|
43
45
|
#
|
44
46
|
# See {Errors} for more information.
|
45
47
|
#
|
46
|
-
#
|
48
|
+
# @!group service
|
47
49
|
module Aws::ElastiCache
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.41.0'
|
50
52
|
|
51
53
|
end
|
@@ -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:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ElastiCache
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::ElastiCache
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::ElastiCache
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::ElastiCache
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -909,9 +928,9 @@ module Aws::ElastiCache
|
|
909
928
|
# @option params [String] :preferred_availability_zone
|
910
929
|
# The EC2 Availability Zone in which the cluster is created.
|
911
930
|
#
|
912
|
-
# All nodes belonging to this
|
913
|
-
#
|
914
|
-
#
|
931
|
+
# All nodes belonging to this cluster are placed in the preferred
|
932
|
+
# Availability Zone. If you want to create your nodes across multiple
|
933
|
+
# Availability Zones, use `PreferredAvailabilityZones`.
|
915
934
|
#
|
916
935
|
# Default: System chosen Availability Zone.
|
917
936
|
#
|
@@ -1711,12 +1730,10 @@ module Aws::ElastiCache
|
|
1711
1730
|
#
|
1712
1731
|
# When a Redis (cluster mode disabled) replication group has been
|
1713
1732
|
# successfully created, you can add one or more read replicas to it, up
|
1714
|
-
# to a total of 5 read replicas.
|
1715
|
-
#
|
1716
|
-
#
|
1717
|
-
#
|
1718
|
-
# backup and restore. For more information, see [Restoring From a Backup
|
1719
|
-
# with Cluster Resizing][1] in the *ElastiCache User Guide*.
|
1733
|
+
# to a total of 5 read replicas. If you need to increase or decrease the
|
1734
|
+
# number of node groups (console: shards), you can avail yourself of
|
1735
|
+
# ElastiCache for Redis' scaling. For more information, see [Scaling
|
1736
|
+
# ElastiCache for Redis Clusters][1] in the *ElastiCache User Guide*.
|
1720
1737
|
#
|
1721
1738
|
# <note markdown="1"> This operation is valid for Redis only.
|
1722
1739
|
#
|
@@ -1724,7 +1741,7 @@ module Aws::ElastiCache
|
|
1724
1741
|
#
|
1725
1742
|
#
|
1726
1743
|
#
|
1727
|
-
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/
|
1744
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.html
|
1728
1745
|
#
|
1729
1746
|
# @option params [required, String] :replication_group_id
|
1730
1747
|
# The replication group identifier. This parameter is stored as a
|
@@ -1756,27 +1773,22 @@ module Aws::ElastiCache
|
|
1756
1773
|
# Specifies whether a read-only replica is automatically promoted to
|
1757
1774
|
# read/write primary if the existing primary fails.
|
1758
1775
|
#
|
1759
|
-
# If `true`, Multi-AZ is enabled for this replication group. If `false`,
|
1760
|
-
# Multi-AZ is disabled for this replication group.
|
1761
|
-
#
|
1762
1776
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
1763
1777
|
# enabled) replication groups.
|
1764
1778
|
#
|
1765
1779
|
# Default: false
|
1766
1780
|
#
|
1767
|
-
#
|
1768
|
-
#
|
1769
|
-
#
|
1770
|
-
#
|
1781
|
+
# @option params [Boolean] :multi_az_enabled
|
1782
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
1783
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
1784
|
+
# Multi-AZ][1].
|
1771
1785
|
#
|
1772
|
-
# * Redis (cluster mode disabled): T1 node types.
|
1773
1786
|
#
|
1774
|
-
# * Redis (cluster mode enabled): T1 node types.
|
1775
1787
|
#
|
1776
|
-
#
|
1788
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
1777
1789
|
#
|
1778
1790
|
# @option params [Integer] :num_cache_clusters
|
1779
|
-
# The number of
|
1791
|
+
# The number of clusters this replication group initially has.
|
1780
1792
|
#
|
1781
1793
|
# This parameter is not used if there is more than one node group
|
1782
1794
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2626,9 +2638,9 @@ module Aws::ElastiCache
|
|
2626
2638
|
#
|
2627
2639
|
# * Redis (cluster mode disabled)
|
2628
2640
|
#
|
2629
|
-
# * If Multi-AZ
|
2641
|
+
# * If Multi-AZ is enabled: 1
|
2630
2642
|
#
|
2631
|
-
# * If Multi-AZ
|
2643
|
+
# * If Multi-AZ is not enabled: 0
|
2632
2644
|
#
|
2633
2645
|
# * Redis (cluster mode enabled): 0 (though you will not be able to
|
2634
2646
|
# failover to a replica if your primary node fails)
|
@@ -6678,7 +6690,7 @@ module Aws::ElastiCache
|
|
6678
6690
|
end
|
6679
6691
|
|
6680
6692
|
# Used to failover the primary region to a selected secondary region.
|
6681
|
-
# The selected secondary region will
|
6693
|
+
# The selected secondary region will become primary, and all other
|
6682
6694
|
# clusters will become secondary.
|
6683
6695
|
#
|
6684
6696
|
# @option params [required, String] :global_replication_group_id
|
@@ -7788,16 +7800,14 @@ module Aws::ElastiCache
|
|
7788
7800
|
#
|
7789
7801
|
# Valid values: `true` \| `false`
|
7790
7802
|
#
|
7791
|
-
#
|
7792
|
-
#
|
7793
|
-
#
|
7794
|
-
#
|
7803
|
+
# @option params [Boolean] :multi_az_enabled
|
7804
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
7805
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
7806
|
+
# Multi-AZ][1].
|
7795
7807
|
#
|
7796
|
-
# * Redis (cluster mode disabled): T1 node types.
|
7797
7808
|
#
|
7798
|
-
# * Redis (cluster mode enabled): T1 node types.
|
7799
7809
|
#
|
7800
|
-
#
|
7810
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
7801
7811
|
#
|
7802
7812
|
# @option params [String] :node_group_id
|
7803
7813
|
# Deprecated. This parameter is not used.
|
@@ -8833,8 +8843,7 @@ module Aws::ElastiCache
|
|
8833
8843
|
#
|
8834
8844
|
# * [DescribeEvents][2] in the ElastiCache API Reference
|
8835
8845
|
#
|
8836
|
-
# Also see, [Testing Multi-AZ
|
8837
|
-
# *ElastiCache User Guide*.
|
8846
|
+
# Also see, [Testing Multi-AZ ][3] in the *ElastiCache User Guide*.
|
8838
8847
|
#
|
8839
8848
|
#
|
8840
8849
|
#
|
@@ -8929,7 +8938,7 @@ module Aws::ElastiCache
|
|
8929
8938
|
params: params,
|
8930
8939
|
config: config)
|
8931
8940
|
context[:gem_name] = 'aws-sdk-elasticache'
|
8932
|
-
context[:gem_version] = '1.
|
8941
|
+
context[:gem_version] = '1.41.0'
|
8933
8942
|
Seahorse::Client::Request.new(handlers, context)
|
8934
8943
|
end
|
8935
8944
|
|
@@ -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:
|
@@ -54,6 +56,7 @@ module Aws::ElastiCache
|
|
54
56
|
class AddTagsToResourceMessage < Struct.new(
|
55
57
|
:resource_name,
|
56
58
|
:tags)
|
59
|
+
SENSITIVE = []
|
57
60
|
include Aws::Structure
|
58
61
|
end
|
59
62
|
|
@@ -82,6 +85,7 @@ module Aws::ElastiCache
|
|
82
85
|
class AllowedNodeTypeModificationsMessage < Struct.new(
|
83
86
|
:scale_up_modifications,
|
84
87
|
:scale_down_modifications)
|
88
|
+
SENSITIVE = []
|
85
89
|
include Aws::Structure
|
86
90
|
end
|
87
91
|
|
@@ -132,6 +136,7 @@ module Aws::ElastiCache
|
|
132
136
|
:cache_security_group_name,
|
133
137
|
:ec2_security_group_name,
|
134
138
|
:ec2_security_group_owner_id)
|
139
|
+
SENSITIVE = []
|
135
140
|
include Aws::Structure
|
136
141
|
end
|
137
142
|
|
@@ -149,6 +154,7 @@ module Aws::ElastiCache
|
|
149
154
|
#
|
150
155
|
class AuthorizeCacheSecurityGroupIngressResult < Struct.new(
|
151
156
|
:cache_security_group)
|
157
|
+
SENSITIVE = []
|
152
158
|
include Aws::Structure
|
153
159
|
end
|
154
160
|
|
@@ -162,6 +168,7 @@ module Aws::ElastiCache
|
|
162
168
|
#
|
163
169
|
class AvailabilityZone < Struct.new(
|
164
170
|
:name)
|
171
|
+
SENSITIVE = []
|
165
172
|
include Aws::Structure
|
166
173
|
end
|
167
174
|
|
@@ -192,6 +199,7 @@ module Aws::ElastiCache
|
|
192
199
|
:replication_group_ids,
|
193
200
|
:cache_cluster_ids,
|
194
201
|
:service_update_name)
|
202
|
+
SENSITIVE = []
|
195
203
|
include Aws::Structure
|
196
204
|
end
|
197
205
|
|
@@ -222,6 +230,7 @@ module Aws::ElastiCache
|
|
222
230
|
:replication_group_ids,
|
223
231
|
:cache_cluster_ids,
|
224
232
|
:service_update_name)
|
233
|
+
SENSITIVE = []
|
225
234
|
include Aws::Structure
|
226
235
|
end
|
227
236
|
|
@@ -512,6 +521,7 @@ module Aws::ElastiCache
|
|
512
521
|
:transit_encryption_enabled,
|
513
522
|
:at_rest_encryption_enabled,
|
514
523
|
:arn)
|
524
|
+
SENSITIVE = []
|
515
525
|
include Aws::Structure
|
516
526
|
end
|
517
527
|
|
@@ -537,6 +547,7 @@ module Aws::ElastiCache
|
|
537
547
|
class CacheClusterMessage < Struct.new(
|
538
548
|
:marker,
|
539
549
|
:cache_clusters)
|
550
|
+
SENSITIVE = []
|
540
551
|
include Aws::Structure
|
541
552
|
end
|
542
553
|
|
@@ -580,6 +591,7 @@ module Aws::ElastiCache
|
|
580
591
|
:cache_parameter_group_family,
|
581
592
|
:cache_engine_description,
|
582
593
|
:cache_engine_version_description)
|
594
|
+
SENSITIVE = []
|
583
595
|
include Aws::Structure
|
584
596
|
end
|
585
597
|
|
@@ -599,6 +611,7 @@ module Aws::ElastiCache
|
|
599
611
|
class CacheEngineVersionMessage < Struct.new(
|
600
612
|
:marker,
|
601
613
|
:cache_engine_versions)
|
614
|
+
SENSITIVE = []
|
602
615
|
include Aws::Structure
|
603
616
|
end
|
604
617
|
|
@@ -721,6 +734,7 @@ module Aws::ElastiCache
|
|
721
734
|
:parameter_group_status,
|
722
735
|
:source_cache_node_id,
|
723
736
|
:customer_availability_zone)
|
737
|
+
SENSITIVE = []
|
724
738
|
include Aws::Structure
|
725
739
|
end
|
726
740
|
|
@@ -787,6 +801,7 @@ module Aws::ElastiCache
|
|
787
801
|
:minimum_engine_version,
|
788
802
|
:cache_node_type_specific_values,
|
789
803
|
:change_type)
|
804
|
+
SENSITIVE = []
|
790
805
|
include Aws::Structure
|
791
806
|
end
|
792
807
|
|
@@ -805,6 +820,7 @@ module Aws::ElastiCache
|
|
805
820
|
class CacheNodeTypeSpecificValue < Struct.new(
|
806
821
|
:cache_node_type,
|
807
822
|
:value)
|
823
|
+
SENSITIVE = []
|
808
824
|
include Aws::Structure
|
809
825
|
end
|
810
826
|
|
@@ -854,6 +870,7 @@ module Aws::ElastiCache
|
|
854
870
|
:node_update_initiated_by,
|
855
871
|
:node_update_initiated_date,
|
856
872
|
:node_update_status_modified_date)
|
873
|
+
SENSITIVE = []
|
857
874
|
include Aws::Structure
|
858
875
|
end
|
859
876
|
|
@@ -892,6 +909,7 @@ module Aws::ElastiCache
|
|
892
909
|
:description,
|
893
910
|
:is_global,
|
894
911
|
:arn)
|
912
|
+
SENSITIVE = []
|
895
913
|
include Aws::Structure
|
896
914
|
end
|
897
915
|
|
@@ -923,6 +941,7 @@ module Aws::ElastiCache
|
|
923
941
|
:marker,
|
924
942
|
:parameters,
|
925
943
|
:cache_node_type_specific_parameters)
|
944
|
+
SENSITIVE = []
|
926
945
|
include Aws::Structure
|
927
946
|
end
|
928
947
|
|
@@ -940,6 +959,7 @@ module Aws::ElastiCache
|
|
940
959
|
#
|
941
960
|
class CacheParameterGroupNameMessage < Struct.new(
|
942
961
|
:cache_parameter_group_name)
|
962
|
+
SENSITIVE = []
|
943
963
|
include Aws::Structure
|
944
964
|
end
|
945
965
|
|
@@ -979,6 +999,7 @@ module Aws::ElastiCache
|
|
979
999
|
:cache_parameter_group_name,
|
980
1000
|
:parameter_apply_status,
|
981
1001
|
:cache_node_ids_to_reboot)
|
1002
|
+
SENSITIVE = []
|
982
1003
|
include Aws::Structure
|
983
1004
|
end
|
984
1005
|
|
@@ -998,6 +1019,7 @@ module Aws::ElastiCache
|
|
998
1019
|
class CacheParameterGroupsMessage < Struct.new(
|
999
1020
|
:marker,
|
1000
1021
|
:cache_parameter_groups)
|
1022
|
+
SENSITIVE = []
|
1001
1023
|
include Aws::Structure
|
1002
1024
|
end
|
1003
1025
|
|
@@ -1038,6 +1060,7 @@ module Aws::ElastiCache
|
|
1038
1060
|
:description,
|
1039
1061
|
:ec2_security_groups,
|
1040
1062
|
:arn)
|
1063
|
+
SENSITIVE = []
|
1041
1064
|
include Aws::Structure
|
1042
1065
|
end
|
1043
1066
|
|
@@ -1065,6 +1088,7 @@ module Aws::ElastiCache
|
|
1065
1088
|
class CacheSecurityGroupMembership < Struct.new(
|
1066
1089
|
:cache_security_group_name,
|
1067
1090
|
:status)
|
1091
|
+
SENSITIVE = []
|
1068
1092
|
include Aws::Structure
|
1069
1093
|
end
|
1070
1094
|
|
@@ -1084,6 +1108,7 @@ module Aws::ElastiCache
|
|
1084
1108
|
class CacheSecurityGroupMessage < Struct.new(
|
1085
1109
|
:marker,
|
1086
1110
|
:cache_security_groups)
|
1111
|
+
SENSITIVE = []
|
1087
1112
|
include Aws::Structure
|
1088
1113
|
end
|
1089
1114
|
|
@@ -1136,6 +1161,7 @@ module Aws::ElastiCache
|
|
1136
1161
|
:vpc_id,
|
1137
1162
|
:subnets,
|
1138
1163
|
:arn)
|
1164
|
+
SENSITIVE = []
|
1139
1165
|
include Aws::Structure
|
1140
1166
|
end
|
1141
1167
|
|
@@ -1168,6 +1194,7 @@ module Aws::ElastiCache
|
|
1168
1194
|
class CacheSubnetGroupMessage < Struct.new(
|
1169
1195
|
:marker,
|
1170
1196
|
:cache_subnet_groups)
|
1197
|
+
SENSITIVE = []
|
1171
1198
|
include Aws::Structure
|
1172
1199
|
end
|
1173
1200
|
|
@@ -1223,6 +1250,7 @@ module Aws::ElastiCache
|
|
1223
1250
|
class CompleteMigrationMessage < Struct.new(
|
1224
1251
|
:replication_group_id,
|
1225
1252
|
:force)
|
1253
|
+
SENSITIVE = []
|
1226
1254
|
include Aws::Structure
|
1227
1255
|
end
|
1228
1256
|
|
@@ -1235,6 +1263,7 @@ module Aws::ElastiCache
|
|
1235
1263
|
#
|
1236
1264
|
class CompleteMigrationResponse < Struct.new(
|
1237
1265
|
:replication_group)
|
1266
|
+
SENSITIVE = []
|
1238
1267
|
include Aws::Structure
|
1239
1268
|
end
|
1240
1269
|
|
@@ -1272,9 +1301,9 @@ module Aws::ElastiCache
|
|
1272
1301
|
#
|
1273
1302
|
# * Redis (cluster mode disabled)
|
1274
1303
|
#
|
1275
|
-
# * If Multi-AZ
|
1304
|
+
# * If Multi-AZ: 1
|
1276
1305
|
#
|
1277
|
-
# * If Multi-AZ
|
1306
|
+
# * If Multi-AZ: 0
|
1278
1307
|
#
|
1279
1308
|
# * Redis (cluster mode enabled): 0 (though you will not be able to
|
1280
1309
|
# failover to a replica if your primary node fails)
|
@@ -1295,6 +1324,7 @@ module Aws::ElastiCache
|
|
1295
1324
|
:node_group_id,
|
1296
1325
|
:new_replica_count,
|
1297
1326
|
:preferred_availability_zones)
|
1327
|
+
SENSITIVE = []
|
1298
1328
|
include Aws::Structure
|
1299
1329
|
end
|
1300
1330
|
|
@@ -1350,6 +1380,7 @@ module Aws::ElastiCache
|
|
1350
1380
|
:target_snapshot_name,
|
1351
1381
|
:target_bucket,
|
1352
1382
|
:kms_key_id)
|
1383
|
+
SENSITIVE = []
|
1353
1384
|
include Aws::Structure
|
1354
1385
|
end
|
1355
1386
|
|
@@ -1362,6 +1393,7 @@ module Aws::ElastiCache
|
|
1362
1393
|
#
|
1363
1394
|
class CopySnapshotResult < Struct.new(
|
1364
1395
|
:snapshot)
|
1396
|
+
SENSITIVE = []
|
1365
1397
|
include Aws::Structure
|
1366
1398
|
end
|
1367
1399
|
|
@@ -1447,9 +1479,9 @@ module Aws::ElastiCache
|
|
1447
1479
|
# @!attribute [rw] preferred_availability_zone
|
1448
1480
|
# The EC2 Availability Zone in which the cluster is created.
|
1449
1481
|
#
|
1450
|
-
# All nodes belonging to this
|
1451
|
-
#
|
1452
|
-
#
|
1482
|
+
# All nodes belonging to this cluster are placed in the preferred
|
1483
|
+
# Availability Zone. If you want to create your nodes across multiple
|
1484
|
+
# Availability Zones, use `PreferredAvailabilityZones`.
|
1453
1485
|
#
|
1454
1486
|
# Default: System chosen Availability Zone.
|
1455
1487
|
# @return [String]
|
@@ -1779,6 +1811,7 @@ module Aws::ElastiCache
|
|
1779
1811
|
:snapshot_retention_limit,
|
1780
1812
|
:snapshot_window,
|
1781
1813
|
:auth_token)
|
1814
|
+
SENSITIVE = []
|
1782
1815
|
include Aws::Structure
|
1783
1816
|
end
|
1784
1817
|
|
@@ -1790,6 +1823,7 @@ module Aws::ElastiCache
|
|
1790
1823
|
#
|
1791
1824
|
class CreateCacheClusterResult < Struct.new(
|
1792
1825
|
:cache_cluster)
|
1826
|
+
SENSITIVE = []
|
1793
1827
|
include Aws::Structure
|
1794
1828
|
end
|
1795
1829
|
|
@@ -1826,6 +1860,7 @@ module Aws::ElastiCache
|
|
1826
1860
|
:cache_parameter_group_name,
|
1827
1861
|
:cache_parameter_group_family,
|
1828
1862
|
:description)
|
1863
|
+
SENSITIVE = []
|
1829
1864
|
include Aws::Structure
|
1830
1865
|
end
|
1831
1866
|
|
@@ -1837,6 +1872,7 @@ module Aws::ElastiCache
|
|
1837
1872
|
#
|
1838
1873
|
class CreateCacheParameterGroupResult < Struct.new(
|
1839
1874
|
:cache_parameter_group)
|
1875
|
+
SENSITIVE = []
|
1840
1876
|
include Aws::Structure
|
1841
1877
|
end
|
1842
1878
|
|
@@ -1869,6 +1905,7 @@ module Aws::ElastiCache
|
|
1869
1905
|
class CreateCacheSecurityGroupMessage < Struct.new(
|
1870
1906
|
:cache_security_group_name,
|
1871
1907
|
:description)
|
1908
|
+
SENSITIVE = []
|
1872
1909
|
include Aws::Structure
|
1873
1910
|
end
|
1874
1911
|
|
@@ -1886,6 +1923,7 @@ module Aws::ElastiCache
|
|
1886
1923
|
#
|
1887
1924
|
class CreateCacheSecurityGroupResult < Struct.new(
|
1888
1925
|
:cache_security_group)
|
1926
|
+
SENSITIVE = []
|
1889
1927
|
include Aws::Structure
|
1890
1928
|
end
|
1891
1929
|
|
@@ -1924,6 +1962,7 @@ module Aws::ElastiCache
|
|
1924
1962
|
:cache_subnet_group_name,
|
1925
1963
|
:cache_subnet_group_description,
|
1926
1964
|
:subnet_ids)
|
1965
|
+
SENSITIVE = []
|
1927
1966
|
include Aws::Structure
|
1928
1967
|
end
|
1929
1968
|
|
@@ -1939,6 +1978,7 @@ module Aws::ElastiCache
|
|
1939
1978
|
#
|
1940
1979
|
class CreateCacheSubnetGroupResult < Struct.new(
|
1941
1980
|
:cache_subnet_group)
|
1981
|
+
SENSITIVE = []
|
1942
1982
|
include Aws::Structure
|
1943
1983
|
end
|
1944
1984
|
|
@@ -1971,6 +2011,7 @@ module Aws::ElastiCache
|
|
1971
2011
|
:global_replication_group_id_suffix,
|
1972
2012
|
:global_replication_group_description,
|
1973
2013
|
:primary_replication_group_id)
|
2014
|
+
SENSITIVE = []
|
1974
2015
|
include Aws::Structure
|
1975
2016
|
end
|
1976
2017
|
|
@@ -1991,6 +2032,7 @@ module Aws::ElastiCache
|
|
1991
2032
|
#
|
1992
2033
|
class CreateGlobalReplicationGroupResult < Struct.new(
|
1993
2034
|
:global_replication_group)
|
2035
|
+
SENSITIVE = []
|
1994
2036
|
include Aws::Structure
|
1995
2037
|
end
|
1996
2038
|
|
@@ -2082,29 +2124,24 @@ module Aws::ElastiCache
|
|
2082
2124
|
# Specifies whether a read-only replica is automatically promoted to
|
2083
2125
|
# read/write primary if the existing primary fails.
|
2084
2126
|
#
|
2085
|
-
# If `true`, Multi-AZ is enabled for this replication group. If
|
2086
|
-
# `false`, Multi-AZ is disabled for this replication group.
|
2087
|
-
#
|
2088
2127
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
2089
2128
|
# enabled) replication groups.
|
2090
2129
|
#
|
2091
2130
|
# Default: false
|
2131
|
+
# @return [Boolean]
|
2092
2132
|
#
|
2093
|
-
#
|
2094
|
-
#
|
2095
|
-
#
|
2096
|
-
#
|
2133
|
+
# @!attribute [rw] multi_az_enabled
|
2134
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
2135
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
2136
|
+
# Multi-AZ][1].
|
2097
2137
|
#
|
2098
|
-
# * Redis (cluster mode disabled): T1 node types.
|
2099
2138
|
#
|
2100
|
-
# * Redis (cluster mode enabled): T1 node types.
|
2101
|
-
# @return [Boolean]
|
2102
2139
|
#
|
2103
|
-
#
|
2140
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
2104
2141
|
# @return [Boolean]
|
2105
2142
|
#
|
2106
2143
|
# @!attribute [rw] num_cache_clusters
|
2107
|
-
# The number of
|
2144
|
+
# The number of clusters this replication group initially has.
|
2108
2145
|
#
|
2109
2146
|
# This parameter is not used if there is more than one node group
|
2110
2147
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2514,6 +2551,7 @@ module Aws::ElastiCache
|
|
2514
2551
|
:transit_encryption_enabled,
|
2515
2552
|
:at_rest_encryption_enabled,
|
2516
2553
|
:kms_key_id)
|
2554
|
+
SENSITIVE = []
|
2517
2555
|
include Aws::Structure
|
2518
2556
|
end
|
2519
2557
|
|
@@ -2526,6 +2564,7 @@ module Aws::ElastiCache
|
|
2526
2564
|
#
|
2527
2565
|
class CreateReplicationGroupResult < Struct.new(
|
2528
2566
|
:replication_group)
|
2567
|
+
SENSITIVE = []
|
2529
2568
|
include Aws::Structure
|
2530
2569
|
end
|
2531
2570
|
|
@@ -2566,6 +2605,7 @@ module Aws::ElastiCache
|
|
2566
2605
|
:cache_cluster_id,
|
2567
2606
|
:snapshot_name,
|
2568
2607
|
:kms_key_id)
|
2608
|
+
SENSITIVE = []
|
2569
2609
|
include Aws::Structure
|
2570
2610
|
end
|
2571
2611
|
|
@@ -2578,6 +2618,7 @@ module Aws::ElastiCache
|
|
2578
2618
|
#
|
2579
2619
|
class CreateSnapshotResult < Struct.new(
|
2580
2620
|
:snapshot)
|
2621
|
+
SENSITIVE = []
|
2581
2622
|
include Aws::Structure
|
2582
2623
|
end
|
2583
2624
|
|
@@ -2604,6 +2645,7 @@ module Aws::ElastiCache
|
|
2604
2645
|
class CustomerNodeEndpoint < Struct.new(
|
2605
2646
|
:address,
|
2606
2647
|
:port)
|
2648
|
+
SENSITIVE = []
|
2607
2649
|
include Aws::Structure
|
2608
2650
|
end
|
2609
2651
|
|
@@ -2658,6 +2700,7 @@ module Aws::ElastiCache
|
|
2658
2700
|
:global_node_groups_to_remove,
|
2659
2701
|
:global_node_groups_to_retain,
|
2660
2702
|
:apply_immediately)
|
2703
|
+
SENSITIVE = []
|
2661
2704
|
include Aws::Structure
|
2662
2705
|
end
|
2663
2706
|
|
@@ -2678,6 +2721,7 @@ module Aws::ElastiCache
|
|
2678
2721
|
#
|
2679
2722
|
class DecreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
|
2680
2723
|
:global_replication_group)
|
2724
|
+
SENSITIVE = []
|
2681
2725
|
include Aws::Structure
|
2682
2726
|
end
|
2683
2727
|
|
@@ -2714,9 +2758,9 @@ module Aws::ElastiCache
|
|
2714
2758
|
#
|
2715
2759
|
# * Redis (cluster mode disabled)
|
2716
2760
|
#
|
2717
|
-
# * If Multi-AZ
|
2761
|
+
# * If Multi-AZ is enabled: 1
|
2718
2762
|
#
|
2719
|
-
# * If Multi-AZ
|
2763
|
+
# * If Multi-AZ is not enabled: 0
|
2720
2764
|
#
|
2721
2765
|
# * Redis (cluster mode enabled): 0 (though you will not be able to
|
2722
2766
|
# failover to a replica if your primary node fails)
|
@@ -2747,6 +2791,7 @@ module Aws::ElastiCache
|
|
2747
2791
|
:replica_configuration,
|
2748
2792
|
:replicas_to_remove,
|
2749
2793
|
:apply_immediately)
|
2794
|
+
SENSITIVE = []
|
2750
2795
|
include Aws::Structure
|
2751
2796
|
end
|
2752
2797
|
|
@@ -2759,6 +2804,7 @@ module Aws::ElastiCache
|
|
2759
2804
|
#
|
2760
2805
|
class DecreaseReplicaCountResult < Struct.new(
|
2761
2806
|
:replication_group)
|
2807
|
+
SENSITIVE = []
|
2762
2808
|
include Aws::Structure
|
2763
2809
|
end
|
2764
2810
|
|
@@ -2788,6 +2834,7 @@ module Aws::ElastiCache
|
|
2788
2834
|
class DeleteCacheClusterMessage < Struct.new(
|
2789
2835
|
:cache_cluster_id,
|
2790
2836
|
:final_snapshot_identifier)
|
2837
|
+
SENSITIVE = []
|
2791
2838
|
include Aws::Structure
|
2792
2839
|
end
|
2793
2840
|
|
@@ -2799,6 +2846,7 @@ module Aws::ElastiCache
|
|
2799
2846
|
#
|
2800
2847
|
class DeleteCacheClusterResult < Struct.new(
|
2801
2848
|
:cache_cluster)
|
2849
|
+
SENSITIVE = []
|
2802
2850
|
include Aws::Structure
|
2803
2851
|
end
|
2804
2852
|
|
@@ -2824,6 +2872,7 @@ module Aws::ElastiCache
|
|
2824
2872
|
#
|
2825
2873
|
class DeleteCacheParameterGroupMessage < Struct.new(
|
2826
2874
|
:cache_parameter_group_name)
|
2875
|
+
SENSITIVE = []
|
2827
2876
|
include Aws::Structure
|
2828
2877
|
end
|
2829
2878
|
|
@@ -2848,6 +2897,7 @@ module Aws::ElastiCache
|
|
2848
2897
|
#
|
2849
2898
|
class DeleteCacheSecurityGroupMessage < Struct.new(
|
2850
2899
|
:cache_security_group_name)
|
2900
|
+
SENSITIVE = []
|
2851
2901
|
include Aws::Structure
|
2852
2902
|
end
|
2853
2903
|
|
@@ -2871,6 +2921,7 @@ module Aws::ElastiCache
|
|
2871
2921
|
#
|
2872
2922
|
class DeleteCacheSubnetGroupMessage < Struct.new(
|
2873
2923
|
:cache_subnet_group_name)
|
2924
|
+
SENSITIVE = []
|
2874
2925
|
include Aws::Structure
|
2875
2926
|
end
|
2876
2927
|
|
@@ -2896,6 +2947,7 @@ module Aws::ElastiCache
|
|
2896
2947
|
class DeleteGlobalReplicationGroupMessage < Struct.new(
|
2897
2948
|
:global_replication_group_id,
|
2898
2949
|
:retain_primary_replication_group)
|
2950
|
+
SENSITIVE = []
|
2899
2951
|
include Aws::Structure
|
2900
2952
|
end
|
2901
2953
|
|
@@ -2916,6 +2968,7 @@ module Aws::ElastiCache
|
|
2916
2968
|
#
|
2917
2969
|
class DeleteGlobalReplicationGroupResult < Struct.new(
|
2918
2970
|
:global_replication_group)
|
2971
|
+
SENSITIVE = []
|
2919
2972
|
include Aws::Structure
|
2920
2973
|
end
|
2921
2974
|
|
@@ -2954,6 +3007,7 @@ module Aws::ElastiCache
|
|
2954
3007
|
:replication_group_id,
|
2955
3008
|
:retain_primary_cluster,
|
2956
3009
|
:final_snapshot_identifier)
|
3010
|
+
SENSITIVE = []
|
2957
3011
|
include Aws::Structure
|
2958
3012
|
end
|
2959
3013
|
|
@@ -2966,6 +3020,7 @@ module Aws::ElastiCache
|
|
2966
3020
|
#
|
2967
3021
|
class DeleteReplicationGroupResult < Struct.new(
|
2968
3022
|
:replication_group)
|
3023
|
+
SENSITIVE = []
|
2969
3024
|
include Aws::Structure
|
2970
3025
|
end
|
2971
3026
|
|
@@ -2986,6 +3041,7 @@ module Aws::ElastiCache
|
|
2986
3041
|
#
|
2987
3042
|
class DeleteSnapshotMessage < Struct.new(
|
2988
3043
|
:snapshot_name)
|
3044
|
+
SENSITIVE = []
|
2989
3045
|
include Aws::Structure
|
2990
3046
|
end
|
2991
3047
|
|
@@ -2998,6 +3054,7 @@ module Aws::ElastiCache
|
|
2998
3054
|
#
|
2999
3055
|
class DeleteSnapshotResult < Struct.new(
|
3000
3056
|
:snapshot)
|
3057
|
+
SENSITIVE = []
|
3001
3058
|
include Aws::Structure
|
3002
3059
|
end
|
3003
3060
|
|
@@ -3058,6 +3115,7 @@ module Aws::ElastiCache
|
|
3058
3115
|
:marker,
|
3059
3116
|
:show_cache_node_info,
|
3060
3117
|
:show_cache_clusters_not_in_replication_groups)
|
3118
|
+
SENSITIVE = []
|
3061
3119
|
include Aws::Structure
|
3062
3120
|
end
|
3063
3121
|
|
@@ -3133,6 +3191,7 @@ module Aws::ElastiCache
|
|
3133
3191
|
:max_records,
|
3134
3192
|
:marker,
|
3135
3193
|
:default_only)
|
3194
|
+
SENSITIVE = []
|
3136
3195
|
include Aws::Structure
|
3137
3196
|
end
|
3138
3197
|
|
@@ -3175,6 +3234,7 @@ module Aws::ElastiCache
|
|
3175
3234
|
:cache_parameter_group_name,
|
3176
3235
|
:max_records,
|
3177
3236
|
:marker)
|
3237
|
+
SENSITIVE = []
|
3178
3238
|
include Aws::Structure
|
3179
3239
|
end
|
3180
3240
|
|
@@ -3225,6 +3285,7 @@ module Aws::ElastiCache
|
|
3225
3285
|
:source,
|
3226
3286
|
:max_records,
|
3227
3287
|
:marker)
|
3288
|
+
SENSITIVE = []
|
3228
3289
|
include Aws::Structure
|
3229
3290
|
end
|
3230
3291
|
|
@@ -3267,6 +3328,7 @@ module Aws::ElastiCache
|
|
3267
3328
|
:cache_security_group_name,
|
3268
3329
|
:max_records,
|
3269
3330
|
:marker)
|
3331
|
+
SENSITIVE = []
|
3270
3332
|
include Aws::Structure
|
3271
3333
|
end
|
3272
3334
|
|
@@ -3309,6 +3371,7 @@ module Aws::ElastiCache
|
|
3309
3371
|
:cache_subnet_group_name,
|
3310
3372
|
:max_records,
|
3311
3373
|
:marker)
|
3374
|
+
SENSITIVE = []
|
3312
3375
|
include Aws::Structure
|
3313
3376
|
end
|
3314
3377
|
|
@@ -3354,6 +3417,7 @@ module Aws::ElastiCache
|
|
3354
3417
|
:cache_parameter_group_family,
|
3355
3418
|
:max_records,
|
3356
3419
|
:marker)
|
3420
|
+
SENSITIVE = []
|
3357
3421
|
include Aws::Structure
|
3358
3422
|
end
|
3359
3423
|
|
@@ -3366,6 +3430,7 @@ module Aws::ElastiCache
|
|
3366
3430
|
#
|
3367
3431
|
class DescribeEngineDefaultParametersResult < Struct.new(
|
3368
3432
|
:engine_defaults)
|
3433
|
+
SENSITIVE = []
|
3369
3434
|
include Aws::Structure
|
3370
3435
|
end
|
3371
3436
|
|
@@ -3440,6 +3505,7 @@ module Aws::ElastiCache
|
|
3440
3505
|
:duration,
|
3441
3506
|
:max_records,
|
3442
3507
|
:marker)
|
3508
|
+
SENSITIVE = []
|
3443
3509
|
include Aws::Structure
|
3444
3510
|
end
|
3445
3511
|
|
@@ -3482,6 +3548,7 @@ module Aws::ElastiCache
|
|
3482
3548
|
:max_records,
|
3483
3549
|
:marker,
|
3484
3550
|
:show_member_info)
|
3551
|
+
SENSITIVE = []
|
3485
3552
|
include Aws::Structure
|
3486
3553
|
end
|
3487
3554
|
|
@@ -3502,6 +3569,7 @@ module Aws::ElastiCache
|
|
3502
3569
|
class DescribeGlobalReplicationGroupsResult < Struct.new(
|
3503
3570
|
:marker,
|
3504
3571
|
:global_replication_groups)
|
3572
|
+
SENSITIVE = []
|
3505
3573
|
include Aws::Structure
|
3506
3574
|
end
|
3507
3575
|
|
@@ -3548,6 +3616,7 @@ module Aws::ElastiCache
|
|
3548
3616
|
:replication_group_id,
|
3549
3617
|
:max_records,
|
3550
3618
|
:marker)
|
3619
|
+
SENSITIVE = []
|
3551
3620
|
include Aws::Structure
|
3552
3621
|
end
|
3553
3622
|
|
@@ -3705,6 +3774,7 @@ module Aws::ElastiCache
|
|
3705
3774
|
:offering_type,
|
3706
3775
|
:max_records,
|
3707
3776
|
:marker)
|
3777
|
+
SENSITIVE = []
|
3708
3778
|
include Aws::Structure
|
3709
3779
|
end
|
3710
3780
|
|
@@ -3858,6 +3928,7 @@ module Aws::ElastiCache
|
|
3858
3928
|
:offering_type,
|
3859
3929
|
:max_records,
|
3860
3930
|
:marker)
|
3931
|
+
SENSITIVE = []
|
3861
3932
|
include Aws::Structure
|
3862
3933
|
end
|
3863
3934
|
|
@@ -3897,6 +3968,7 @@ module Aws::ElastiCache
|
|
3897
3968
|
:service_update_status,
|
3898
3969
|
:max_records,
|
3899
3970
|
:marker)
|
3971
|
+
SENSITIVE = []
|
3900
3972
|
include Aws::Structure
|
3901
3973
|
end
|
3902
3974
|
|
@@ -3919,6 +3991,7 @@ module Aws::ElastiCache
|
|
3919
3991
|
class DescribeSnapshotsListMessage < Struct.new(
|
3920
3992
|
:marker,
|
3921
3993
|
:snapshots)
|
3994
|
+
SENSITIVE = []
|
3922
3995
|
include Aws::Structure
|
3923
3996
|
end
|
3924
3997
|
|
@@ -3993,6 +4066,7 @@ module Aws::ElastiCache
|
|
3993
4066
|
:marker,
|
3994
4067
|
:max_records,
|
3995
4068
|
:show_node_group_config)
|
4069
|
+
SENSITIVE = []
|
3996
4070
|
include Aws::Structure
|
3997
4071
|
end
|
3998
4072
|
|
@@ -4073,6 +4147,7 @@ module Aws::ElastiCache
|
|
4073
4147
|
:show_node_level_update_status,
|
4074
4148
|
:max_records,
|
4075
4149
|
:marker)
|
4150
|
+
SENSITIVE = []
|
4076
4151
|
include Aws::Structure
|
4077
4152
|
end
|
4078
4153
|
|
@@ -4105,6 +4180,7 @@ module Aws::ElastiCache
|
|
4105
4180
|
:global_replication_group_id,
|
4106
4181
|
:replication_group_id,
|
4107
4182
|
:replication_group_region)
|
4183
|
+
SENSITIVE = []
|
4108
4184
|
include Aws::Structure
|
4109
4185
|
end
|
4110
4186
|
|
@@ -4125,6 +4201,7 @@ module Aws::ElastiCache
|
|
4125
4201
|
#
|
4126
4202
|
class DisassociateGlobalReplicationGroupResult < Struct.new(
|
4127
4203
|
:global_replication_group)
|
4204
|
+
SENSITIVE = []
|
4128
4205
|
include Aws::Structure
|
4129
4206
|
end
|
4130
4207
|
|
@@ -4149,6 +4226,7 @@ module Aws::ElastiCache
|
|
4149
4226
|
:status,
|
4150
4227
|
:ec2_security_group_name,
|
4151
4228
|
:ec2_security_group_owner_id)
|
4229
|
+
SENSITIVE = []
|
4152
4230
|
include Aws::Structure
|
4153
4231
|
end
|
4154
4232
|
|
@@ -4168,6 +4246,7 @@ module Aws::ElastiCache
|
|
4168
4246
|
class Endpoint < Struct.new(
|
4169
4247
|
:address,
|
4170
4248
|
:port)
|
4249
|
+
SENSITIVE = []
|
4171
4250
|
include Aws::Structure
|
4172
4251
|
end
|
4173
4252
|
|
@@ -4203,6 +4282,7 @@ module Aws::ElastiCache
|
|
4203
4282
|
:marker,
|
4204
4283
|
:parameters,
|
4205
4284
|
:cache_node_type_specific_parameters)
|
4285
|
+
SENSITIVE = []
|
4206
4286
|
include Aws::Structure
|
4207
4287
|
end
|
4208
4288
|
|
@@ -4236,6 +4316,7 @@ module Aws::ElastiCache
|
|
4236
4316
|
:source_type,
|
4237
4317
|
:message,
|
4238
4318
|
:date)
|
4319
|
+
SENSITIVE = []
|
4239
4320
|
include Aws::Structure
|
4240
4321
|
end
|
4241
4322
|
|
@@ -4255,6 +4336,7 @@ module Aws::ElastiCache
|
|
4255
4336
|
class EventsMessage < Struct.new(
|
4256
4337
|
:marker,
|
4257
4338
|
:events)
|
4339
|
+
SENSITIVE = []
|
4258
4340
|
include Aws::Structure
|
4259
4341
|
end
|
4260
4342
|
|
@@ -4285,6 +4367,7 @@ module Aws::ElastiCache
|
|
4285
4367
|
:global_replication_group_id,
|
4286
4368
|
:primary_region,
|
4287
4369
|
:primary_replication_group_id)
|
4370
|
+
SENSITIVE = []
|
4288
4371
|
include Aws::Structure
|
4289
4372
|
end
|
4290
4373
|
|
@@ -4305,6 +4388,7 @@ module Aws::ElastiCache
|
|
4305
4388
|
#
|
4306
4389
|
class FailoverGlobalReplicationGroupResult < Struct.new(
|
4307
4390
|
:global_replication_group)
|
4391
|
+
SENSITIVE = []
|
4308
4392
|
include Aws::Structure
|
4309
4393
|
end
|
4310
4394
|
|
@@ -4324,6 +4408,7 @@ module Aws::ElastiCache
|
|
4324
4408
|
class GlobalNodeGroup < Struct.new(
|
4325
4409
|
:global_node_group_id,
|
4326
4410
|
:slots)
|
4411
|
+
SENSITIVE = []
|
4327
4412
|
include Aws::Structure
|
4328
4413
|
end
|
4329
4414
|
|
@@ -4424,6 +4509,7 @@ module Aws::ElastiCache
|
|
4424
4509
|
:transit_encryption_enabled,
|
4425
4510
|
:at_rest_encryption_enabled,
|
4426
4511
|
:arn)
|
4512
|
+
SENSITIVE = []
|
4427
4513
|
include Aws::Structure
|
4428
4514
|
end
|
4429
4515
|
|
@@ -4450,6 +4536,7 @@ module Aws::ElastiCache
|
|
4450
4536
|
class GlobalReplicationGroupInfo < Struct.new(
|
4451
4537
|
:global_replication_group_id,
|
4452
4538
|
:global_replication_group_member_role)
|
4539
|
+
SENSITIVE = []
|
4453
4540
|
include Aws::Structure
|
4454
4541
|
end
|
4455
4542
|
|
@@ -4485,6 +4572,7 @@ module Aws::ElastiCache
|
|
4485
4572
|
:role,
|
4486
4573
|
:automatic_failover,
|
4487
4574
|
:status)
|
4575
|
+
SENSITIVE = []
|
4488
4576
|
include Aws::Structure
|
4489
4577
|
end
|
4490
4578
|
|
@@ -4541,6 +4629,7 @@ module Aws::ElastiCache
|
|
4541
4629
|
:node_group_count,
|
4542
4630
|
:regional_configurations,
|
4543
4631
|
:apply_immediately)
|
4632
|
+
SENSITIVE = []
|
4544
4633
|
include Aws::Structure
|
4545
4634
|
end
|
4546
4635
|
|
@@ -4561,6 +4650,7 @@ module Aws::ElastiCache
|
|
4561
4650
|
#
|
4562
4651
|
class IncreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
|
4563
4652
|
:global_replication_group)
|
4653
|
+
SENSITIVE = []
|
4564
4654
|
include Aws::Structure
|
4565
4655
|
end
|
4566
4656
|
|
@@ -4612,6 +4702,7 @@ module Aws::ElastiCache
|
|
4612
4702
|
:new_replica_count,
|
4613
4703
|
:replica_configuration,
|
4614
4704
|
:apply_immediately)
|
4705
|
+
SENSITIVE = []
|
4615
4706
|
include Aws::Structure
|
4616
4707
|
end
|
4617
4708
|
|
@@ -4624,6 +4715,7 @@ module Aws::ElastiCache
|
|
4624
4715
|
#
|
4625
4716
|
class IncreaseReplicaCountResult < Struct.new(
|
4626
4717
|
:replication_group)
|
4718
|
+
SENSITIVE = []
|
4627
4719
|
include Aws::Structure
|
4628
4720
|
end
|
4629
4721
|
|
@@ -4688,6 +4780,7 @@ module Aws::ElastiCache
|
|
4688
4780
|
#
|
4689
4781
|
class InvalidParameterCombinationException < Struct.new(
|
4690
4782
|
:message)
|
4783
|
+
SENSITIVE = []
|
4691
4784
|
include Aws::Structure
|
4692
4785
|
end
|
4693
4786
|
|
@@ -4701,6 +4794,7 @@ module Aws::ElastiCache
|
|
4701
4794
|
#
|
4702
4795
|
class InvalidParameterValueException < Struct.new(
|
4703
4796
|
:message)
|
4797
|
+
SENSITIVE = []
|
4704
4798
|
include Aws::Structure
|
4705
4799
|
end
|
4706
4800
|
|
@@ -4765,6 +4859,7 @@ module Aws::ElastiCache
|
|
4765
4859
|
class ListAllowedNodeTypeModificationsMessage < Struct.new(
|
4766
4860
|
:cache_cluster_id,
|
4767
4861
|
:replication_group_id)
|
4862
|
+
SENSITIVE = []
|
4768
4863
|
include Aws::Structure
|
4769
4864
|
end
|
4770
4865
|
|
@@ -4795,6 +4890,7 @@ module Aws::ElastiCache
|
|
4795
4890
|
#
|
4796
4891
|
class ListTagsForResourceMessage < Struct.new(
|
4797
4892
|
:resource_name)
|
4893
|
+
SENSITIVE = []
|
4798
4894
|
include Aws::Structure
|
4799
4895
|
end
|
4800
4896
|
|
@@ -5171,6 +5267,7 @@ module Aws::ElastiCache
|
|
5171
5267
|
:cache_node_type,
|
5172
5268
|
:auth_token,
|
5173
5269
|
:auth_token_update_strategy)
|
5270
|
+
SENSITIVE = []
|
5174
5271
|
include Aws::Structure
|
5175
5272
|
end
|
5176
5273
|
|
@@ -5182,6 +5279,7 @@ module Aws::ElastiCache
|
|
5182
5279
|
#
|
5183
5280
|
class ModifyCacheClusterResult < Struct.new(
|
5184
5281
|
:cache_cluster)
|
5282
|
+
SENSITIVE = []
|
5185
5283
|
include Aws::Structure
|
5186
5284
|
end
|
5187
5285
|
|
@@ -5216,6 +5314,7 @@ module Aws::ElastiCache
|
|
5216
5314
|
class ModifyCacheParameterGroupMessage < Struct.new(
|
5217
5315
|
:cache_parameter_group_name,
|
5218
5316
|
:parameter_name_values)
|
5317
|
+
SENSITIVE = []
|
5219
5318
|
include Aws::Structure
|
5220
5319
|
end
|
5221
5320
|
|
@@ -5254,6 +5353,7 @@ module Aws::ElastiCache
|
|
5254
5353
|
:cache_subnet_group_name,
|
5255
5354
|
:cache_subnet_group_description,
|
5256
5355
|
:subnet_ids)
|
5356
|
+
SENSITIVE = []
|
5257
5357
|
include Aws::Structure
|
5258
5358
|
end
|
5259
5359
|
|
@@ -5269,6 +5369,7 @@ module Aws::ElastiCache
|
|
5269
5369
|
#
|
5270
5370
|
class ModifyCacheSubnetGroupResult < Struct.new(
|
5271
5371
|
:cache_subnet_group)
|
5372
|
+
SENSITIVE = []
|
5272
5373
|
include Aws::Structure
|
5273
5374
|
end
|
5274
5375
|
|
@@ -5323,6 +5424,7 @@ module Aws::ElastiCache
|
|
5323
5424
|
:engine_version,
|
5324
5425
|
:global_replication_group_description,
|
5325
5426
|
:automatic_failover_enabled)
|
5427
|
+
SENSITIVE = []
|
5326
5428
|
include Aws::Structure
|
5327
5429
|
end
|
5328
5430
|
|
@@ -5343,6 +5445,7 @@ module Aws::ElastiCache
|
|
5343
5445
|
#
|
5344
5446
|
class ModifyGlobalReplicationGroupResult < Struct.new(
|
5345
5447
|
:global_replication_group)
|
5448
|
+
SENSITIVE = []
|
5346
5449
|
include Aws::Structure
|
5347
5450
|
end
|
5348
5451
|
|
@@ -5402,18 +5505,16 @@ module Aws::ElastiCache
|
|
5402
5505
|
# read/write primary if the existing primary encounters a failure.
|
5403
5506
|
#
|
5404
5507
|
# Valid values: `true` \| `false`
|
5508
|
+
# @return [Boolean]
|
5405
5509
|
#
|
5406
|
-
#
|
5407
|
-
#
|
5510
|
+
# @!attribute [rw] multi_az_enabled
|
5511
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
5512
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
5513
|
+
# Multi-AZ][1].
|
5408
5514
|
#
|
5409
|
-
# * Redis versions earlier than 2.8.6.
|
5410
5515
|
#
|
5411
|
-
# * Redis (cluster mode disabled): T1 node types.
|
5412
5516
|
#
|
5413
|
-
#
|
5414
|
-
# @return [Boolean]
|
5415
|
-
#
|
5416
|
-
# @!attribute [rw] multi_az_enabled
|
5517
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
5417
5518
|
# @return [Boolean]
|
5418
5519
|
#
|
5419
5520
|
# @!attribute [rw] node_group_id
|
@@ -5611,6 +5712,7 @@ module Aws::ElastiCache
|
|
5611
5712
|
:cache_node_type,
|
5612
5713
|
:auth_token,
|
5613
5714
|
:auth_token_update_strategy)
|
5715
|
+
SENSITIVE = []
|
5614
5716
|
include Aws::Structure
|
5615
5717
|
end
|
5616
5718
|
|
@@ -5623,6 +5725,7 @@ module Aws::ElastiCache
|
|
5623
5725
|
#
|
5624
5726
|
class ModifyReplicationGroupResult < Struct.new(
|
5625
5727
|
:replication_group)
|
5728
|
+
SENSITIVE = []
|
5626
5729
|
include Aws::Structure
|
5627
5730
|
end
|
5628
5731
|
|
@@ -5704,6 +5807,7 @@ module Aws::ElastiCache
|
|
5704
5807
|
:resharding_configuration,
|
5705
5808
|
:node_groups_to_remove,
|
5706
5809
|
:node_groups_to_retain)
|
5810
|
+
SENSITIVE = []
|
5707
5811
|
include Aws::Structure
|
5708
5812
|
end
|
5709
5813
|
|
@@ -5716,6 +5820,7 @@ module Aws::ElastiCache
|
|
5716
5820
|
#
|
5717
5821
|
class ModifyReplicationGroupShardConfigurationResult < Struct.new(
|
5718
5822
|
:replication_group)
|
5823
|
+
SENSITIVE = []
|
5719
5824
|
include Aws::Structure
|
5720
5825
|
end
|
5721
5826
|
|
@@ -5739,7 +5844,7 @@ module Aws::ElastiCache
|
|
5739
5844
|
#
|
5740
5845
|
# @!attribute [rw] status
|
5741
5846
|
# The current state of this replication group - `creating`,
|
5742
|
-
# `available`,
|
5847
|
+
# `available`, `modifying`, `deleting`.
|
5743
5848
|
# @return [String]
|
5744
5849
|
#
|
5745
5850
|
# @!attribute [rw] primary_endpoint
|
@@ -5768,6 +5873,7 @@ module Aws::ElastiCache
|
|
5768
5873
|
:reader_endpoint,
|
5769
5874
|
:slots,
|
5770
5875
|
:node_group_members)
|
5876
|
+
SENSITIVE = []
|
5771
5877
|
include Aws::Structure
|
5772
5878
|
end
|
5773
5879
|
|
@@ -5822,6 +5928,7 @@ module Aws::ElastiCache
|
|
5822
5928
|
:replica_count,
|
5823
5929
|
:primary_availability_zone,
|
5824
5930
|
:replica_availability_zones)
|
5931
|
+
SENSITIVE = []
|
5825
5932
|
include Aws::Structure
|
5826
5933
|
end
|
5827
5934
|
|
@@ -5860,6 +5967,7 @@ module Aws::ElastiCache
|
|
5860
5967
|
:read_endpoint,
|
5861
5968
|
:preferred_availability_zone,
|
5862
5969
|
:current_role)
|
5970
|
+
SENSITIVE = []
|
5863
5971
|
include Aws::Structure
|
5864
5972
|
end
|
5865
5973
|
|
@@ -5914,6 +6022,7 @@ module Aws::ElastiCache
|
|
5914
6022
|
:node_update_initiated_by,
|
5915
6023
|
:node_update_initiated_date,
|
5916
6024
|
:node_update_status_modified_date)
|
6025
|
+
SENSITIVE = []
|
5917
6026
|
include Aws::Structure
|
5918
6027
|
end
|
5919
6028
|
|
@@ -5940,6 +6049,7 @@ module Aws::ElastiCache
|
|
5940
6049
|
class NodeGroupUpdateStatus < Struct.new(
|
5941
6050
|
:node_group_id,
|
5942
6051
|
:node_group_member_update_status)
|
6052
|
+
SENSITIVE = []
|
5943
6053
|
include Aws::Structure
|
5944
6054
|
end
|
5945
6055
|
|
@@ -6007,6 +6117,7 @@ module Aws::ElastiCache
|
|
6007
6117
|
:cache_size,
|
6008
6118
|
:cache_node_create_time,
|
6009
6119
|
:snapshot_create_time)
|
6120
|
+
SENSITIVE = []
|
6010
6121
|
include Aws::Structure
|
6011
6122
|
end
|
6012
6123
|
|
@@ -6027,6 +6138,7 @@ module Aws::ElastiCache
|
|
6027
6138
|
class NotificationConfiguration < Struct.new(
|
6028
6139
|
:topic_arn,
|
6029
6140
|
:topic_status)
|
6141
|
+
SENSITIVE = []
|
6030
6142
|
include Aws::Structure
|
6031
6143
|
end
|
6032
6144
|
|
@@ -6090,6 +6202,7 @@ module Aws::ElastiCache
|
|
6090
6202
|
:is_modifiable,
|
6091
6203
|
:minimum_engine_version,
|
6092
6204
|
:change_type)
|
6205
|
+
SENSITIVE = []
|
6093
6206
|
include Aws::Structure
|
6094
6207
|
end
|
6095
6208
|
|
@@ -6117,6 +6230,7 @@ module Aws::ElastiCache
|
|
6117
6230
|
class ParameterNameValue < Struct.new(
|
6118
6231
|
:parameter_name,
|
6119
6232
|
:parameter_value)
|
6233
|
+
SENSITIVE = []
|
6120
6234
|
include Aws::Structure
|
6121
6235
|
end
|
6122
6236
|
|
@@ -6157,6 +6271,7 @@ module Aws::ElastiCache
|
|
6157
6271
|
:engine_version,
|
6158
6272
|
:cache_node_type,
|
6159
6273
|
:auth_token_status)
|
6274
|
+
SENSITIVE = []
|
6160
6275
|
include Aws::Structure
|
6161
6276
|
end
|
6162
6277
|
|
@@ -6186,6 +6301,7 @@ module Aws::ElastiCache
|
|
6186
6301
|
:cache_cluster_id,
|
6187
6302
|
:service_update_name,
|
6188
6303
|
:update_action_status)
|
6304
|
+
SENSITIVE = []
|
6189
6305
|
include Aws::Structure
|
6190
6306
|
end
|
6191
6307
|
|
@@ -6232,6 +6348,7 @@ module Aws::ElastiCache
|
|
6232
6348
|
:reserved_cache_nodes_offering_id,
|
6233
6349
|
:reserved_cache_node_id,
|
6234
6350
|
:cache_node_count)
|
6351
|
+
SENSITIVE = []
|
6235
6352
|
include Aws::Structure
|
6236
6353
|
end
|
6237
6354
|
|
@@ -6244,6 +6361,7 @@ module Aws::ElastiCache
|
|
6244
6361
|
#
|
6245
6362
|
class PurchaseReservedCacheNodesOfferingResult < Struct.new(
|
6246
6363
|
:reserved_cache_node)
|
6364
|
+
SENSITIVE = []
|
6247
6365
|
include Aws::Structure
|
6248
6366
|
end
|
6249
6367
|
|
@@ -6268,6 +6386,7 @@ module Aws::ElastiCache
|
|
6268
6386
|
class RebalanceSlotsInGlobalReplicationGroupMessage < Struct.new(
|
6269
6387
|
:global_replication_group_id,
|
6270
6388
|
:apply_immediately)
|
6389
|
+
SENSITIVE = []
|
6271
6390
|
include Aws::Structure
|
6272
6391
|
end
|
6273
6392
|
|
@@ -6288,6 +6407,7 @@ module Aws::ElastiCache
|
|
6288
6407
|
#
|
6289
6408
|
class RebalanceSlotsInGlobalReplicationGroupResult < Struct.new(
|
6290
6409
|
:global_replication_group)
|
6410
|
+
SENSITIVE = []
|
6291
6411
|
include Aws::Structure
|
6292
6412
|
end
|
6293
6413
|
|
@@ -6317,6 +6437,7 @@ module Aws::ElastiCache
|
|
6317
6437
|
class RebootCacheClusterMessage < Struct.new(
|
6318
6438
|
:cache_cluster_id,
|
6319
6439
|
:cache_node_ids_to_reboot)
|
6440
|
+
SENSITIVE = []
|
6320
6441
|
include Aws::Structure
|
6321
6442
|
end
|
6322
6443
|
|
@@ -6328,6 +6449,7 @@ module Aws::ElastiCache
|
|
6328
6449
|
#
|
6329
6450
|
class RebootCacheClusterResult < Struct.new(
|
6330
6451
|
:cache_cluster)
|
6452
|
+
SENSITIVE = []
|
6331
6453
|
include Aws::Structure
|
6332
6454
|
end
|
6333
6455
|
|
@@ -6347,6 +6469,7 @@ module Aws::ElastiCache
|
|
6347
6469
|
class RecurringCharge < Struct.new(
|
6348
6470
|
:recurring_charge_amount,
|
6349
6471
|
:recurring_charge_frequency)
|
6472
|
+
SENSITIVE = []
|
6350
6473
|
include Aws::Structure
|
6351
6474
|
end
|
6352
6475
|
|
@@ -6385,6 +6508,7 @@ module Aws::ElastiCache
|
|
6385
6508
|
:replication_group_id,
|
6386
6509
|
:replication_group_region,
|
6387
6510
|
:resharding_configuration)
|
6511
|
+
SENSITIVE = []
|
6388
6512
|
include Aws::Structure
|
6389
6513
|
end
|
6390
6514
|
|
@@ -6422,6 +6546,7 @@ module Aws::ElastiCache
|
|
6422
6546
|
class RemoveTagsFromResourceMessage < Struct.new(
|
6423
6547
|
:resource_name,
|
6424
6548
|
:tag_keys)
|
6549
|
+
SENSITIVE = []
|
6425
6550
|
include Aws::Structure
|
6426
6551
|
end
|
6427
6552
|
|
@@ -6469,20 +6594,18 @@ module Aws::ElastiCache
|
|
6469
6594
|
# @return [String]
|
6470
6595
|
#
|
6471
6596
|
# @!attribute [rw] automatic_failover
|
6472
|
-
# Indicates the status of
|
6473
|
-
#
|
6474
|
-
#
|
6475
|
-
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
6476
|
-
# automatic failover on:
|
6597
|
+
# Indicates the status of automatic failover for this Redis
|
6598
|
+
# replication group.
|
6599
|
+
# @return [String]
|
6477
6600
|
#
|
6478
|
-
#
|
6601
|
+
# @!attribute [rw] multi_az
|
6602
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
6603
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
6604
|
+
# Multi-AZ][1]
|
6479
6605
|
#
|
6480
|
-
# * Redis (cluster mode disabled): T1 node types.
|
6481
6606
|
#
|
6482
|
-
# * Redis (cluster mode enabled): T1 node types.
|
6483
|
-
# @return [String]
|
6484
6607
|
#
|
6485
|
-
#
|
6608
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
6486
6609
|
# @return [String]
|
6487
6610
|
#
|
6488
6611
|
# @!attribute [rw] configuration_endpoint
|
@@ -6598,6 +6721,7 @@ module Aws::ElastiCache
|
|
6598
6721
|
:at_rest_encryption_enabled,
|
6599
6722
|
:kms_key_id,
|
6600
6723
|
:arn)
|
6724
|
+
SENSITIVE = []
|
6601
6725
|
include Aws::Structure
|
6602
6726
|
end
|
6603
6727
|
|
@@ -6629,6 +6753,7 @@ module Aws::ElastiCache
|
|
6629
6753
|
class ReplicationGroupMessage < Struct.new(
|
6630
6754
|
:marker,
|
6631
6755
|
:replication_groups)
|
6756
|
+
SENSITIVE = []
|
6632
6757
|
include Aws::Structure
|
6633
6758
|
end
|
6634
6759
|
|
@@ -6654,17 +6779,8 @@ module Aws::ElastiCache
|
|
6654
6779
|
# @return [String]
|
6655
6780
|
#
|
6656
6781
|
# @!attribute [rw] automatic_failover_status
|
6657
|
-
# Indicates the status of
|
6658
|
-
#
|
6659
|
-
#
|
6660
|
-
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
6661
|
-
# automatic failover on:
|
6662
|
-
#
|
6663
|
-
# * Redis versions earlier than 2.8.6.
|
6664
|
-
#
|
6665
|
-
# * Redis (cluster mode disabled): T1 node types.
|
6666
|
-
#
|
6667
|
-
# * Redis (cluster mode enabled): T1 node types.
|
6782
|
+
# Indicates the status of automatic failover for this Redis
|
6783
|
+
# replication group.
|
6668
6784
|
# @return [String]
|
6669
6785
|
#
|
6670
6786
|
# @!attribute [rw] resharding
|
@@ -6682,6 +6798,7 @@ module Aws::ElastiCache
|
|
6682
6798
|
:automatic_failover_status,
|
6683
6799
|
:resharding,
|
6684
6800
|
:auth_token_status)
|
6801
|
+
SENSITIVE = []
|
6685
6802
|
include Aws::Structure
|
6686
6803
|
end
|
6687
6804
|
|
@@ -6831,6 +6948,7 @@ module Aws::ElastiCache
|
|
6831
6948
|
:state,
|
6832
6949
|
:recurring_charges,
|
6833
6950
|
:reservation_arn)
|
6951
|
+
SENSITIVE = []
|
6834
6952
|
include Aws::Structure
|
6835
6953
|
end
|
6836
6954
|
|
@@ -6856,6 +6974,7 @@ module Aws::ElastiCache
|
|
6856
6974
|
class ReservedCacheNodeMessage < Struct.new(
|
6857
6975
|
:marker,
|
6858
6976
|
:reserved_cache_nodes)
|
6977
|
+
SENSITIVE = []
|
6859
6978
|
include Aws::Structure
|
6860
6979
|
end
|
6861
6980
|
|
@@ -6989,6 +7108,7 @@ module Aws::ElastiCache
|
|
6989
7108
|
:product_description,
|
6990
7109
|
:offering_type,
|
6991
7110
|
:recurring_charges)
|
7111
|
+
SENSITIVE = []
|
6992
7112
|
include Aws::Structure
|
6993
7113
|
end
|
6994
7114
|
|
@@ -7009,6 +7129,7 @@ module Aws::ElastiCache
|
|
7009
7129
|
class ReservedCacheNodesOfferingMessage < Struct.new(
|
7010
7130
|
:marker,
|
7011
7131
|
:reserved_cache_nodes_offerings)
|
7132
|
+
SENSITIVE = []
|
7012
7133
|
include Aws::Structure
|
7013
7134
|
end
|
7014
7135
|
|
@@ -7059,6 +7180,7 @@ module Aws::ElastiCache
|
|
7059
7180
|
:cache_parameter_group_name,
|
7060
7181
|
:reset_all_parameters,
|
7061
7182
|
:parameter_name_values)
|
7183
|
+
SENSITIVE = []
|
7062
7184
|
include Aws::Structure
|
7063
7185
|
end
|
7064
7186
|
|
@@ -7088,6 +7210,7 @@ module Aws::ElastiCache
|
|
7088
7210
|
class ReshardingConfiguration < Struct.new(
|
7089
7211
|
:node_group_id,
|
7090
7212
|
:preferred_availability_zones)
|
7213
|
+
SENSITIVE = []
|
7091
7214
|
include Aws::Structure
|
7092
7215
|
end
|
7093
7216
|
|
@@ -7101,6 +7224,7 @@ module Aws::ElastiCache
|
|
7101
7224
|
#
|
7102
7225
|
class ReshardingStatus < Struct.new(
|
7103
7226
|
:slot_migration)
|
7227
|
+
SENSITIVE = []
|
7104
7228
|
include Aws::Structure
|
7105
7229
|
end
|
7106
7230
|
|
@@ -7135,6 +7259,7 @@ module Aws::ElastiCache
|
|
7135
7259
|
:cache_security_group_name,
|
7136
7260
|
:ec2_security_group_name,
|
7137
7261
|
:ec2_security_group_owner_id)
|
7262
|
+
SENSITIVE = []
|
7138
7263
|
include Aws::Structure
|
7139
7264
|
end
|
7140
7265
|
|
@@ -7152,6 +7277,7 @@ module Aws::ElastiCache
|
|
7152
7277
|
#
|
7153
7278
|
class RevokeCacheSecurityGroupIngressResult < Struct.new(
|
7154
7279
|
:cache_security_group)
|
7280
|
+
SENSITIVE = []
|
7155
7281
|
include Aws::Structure
|
7156
7282
|
end
|
7157
7283
|
|
@@ -7172,6 +7298,7 @@ module Aws::ElastiCache
|
|
7172
7298
|
class SecurityGroupMembership < Struct.new(
|
7173
7299
|
:security_group_id,
|
7174
7300
|
:status)
|
7301
|
+
SENSITIVE = []
|
7175
7302
|
include Aws::Structure
|
7176
7303
|
end
|
7177
7304
|
|
@@ -7255,6 +7382,7 @@ module Aws::ElastiCache
|
|
7255
7382
|
:engine_version,
|
7256
7383
|
:auto_update_after_recommended_apply_by_date,
|
7257
7384
|
:estimated_update_time)
|
7385
|
+
SENSITIVE = []
|
7258
7386
|
include Aws::Structure
|
7259
7387
|
end
|
7260
7388
|
|
@@ -7280,6 +7408,7 @@ module Aws::ElastiCache
|
|
7280
7408
|
class ServiceUpdatesMessage < Struct.new(
|
7281
7409
|
:marker,
|
7282
7410
|
:service_updates)
|
7411
|
+
SENSITIVE = []
|
7283
7412
|
include Aws::Structure
|
7284
7413
|
end
|
7285
7414
|
|
@@ -7293,6 +7422,7 @@ module Aws::ElastiCache
|
|
7293
7422
|
#
|
7294
7423
|
class SlotMigration < Struct.new(
|
7295
7424
|
:progress_percentage)
|
7425
|
+
SENSITIVE = []
|
7296
7426
|
include Aws::Structure
|
7297
7427
|
end
|
7298
7428
|
|
@@ -7509,17 +7639,8 @@ module Aws::ElastiCache
|
|
7509
7639
|
# @return [Integer]
|
7510
7640
|
#
|
7511
7641
|
# @!attribute [rw] automatic_failover
|
7512
|
-
# Indicates the status of
|
7513
|
-
#
|
7514
|
-
#
|
7515
|
-
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
7516
|
-
# automatic failover on:
|
7517
|
-
#
|
7518
|
-
# * Redis versions earlier than 2.8.6.
|
7519
|
-
#
|
7520
|
-
# * Redis (cluster mode disabled): T1 node types.
|
7521
|
-
#
|
7522
|
-
# * Redis (cluster mode enabled): T1 node types.
|
7642
|
+
# Indicates the status of automatic failover for the source Redis
|
7643
|
+
# replication group.
|
7523
7644
|
# @return [String]
|
7524
7645
|
#
|
7525
7646
|
# @!attribute [rw] node_snapshots
|
@@ -7563,6 +7684,7 @@ module Aws::ElastiCache
|
|
7563
7684
|
:node_snapshots,
|
7564
7685
|
:kms_key_id,
|
7565
7686
|
:arn)
|
7687
|
+
SENSITIVE = []
|
7566
7688
|
include Aws::Structure
|
7567
7689
|
end
|
7568
7690
|
|
@@ -7626,6 +7748,7 @@ module Aws::ElastiCache
|
|
7626
7748
|
class StartMigrationMessage < Struct.new(
|
7627
7749
|
:replication_group_id,
|
7628
7750
|
:customer_node_endpoint_list)
|
7751
|
+
SENSITIVE = []
|
7629
7752
|
include Aws::Structure
|
7630
7753
|
end
|
7631
7754
|
|
@@ -7638,6 +7761,7 @@ module Aws::ElastiCache
|
|
7638
7761
|
#
|
7639
7762
|
class StartMigrationResponse < Struct.new(
|
7640
7763
|
:replication_group)
|
7764
|
+
SENSITIVE = []
|
7641
7765
|
include Aws::Structure
|
7642
7766
|
end
|
7643
7767
|
|
@@ -7658,6 +7782,7 @@ module Aws::ElastiCache
|
|
7658
7782
|
class Subnet < Struct.new(
|
7659
7783
|
:subnet_identifier,
|
7660
7784
|
:subnet_availability_zone)
|
7785
|
+
SENSITIVE = []
|
7661
7786
|
include Aws::Structure
|
7662
7787
|
end
|
7663
7788
|
|
@@ -7692,6 +7817,7 @@ module Aws::ElastiCache
|
|
7692
7817
|
class Tag < Struct.new(
|
7693
7818
|
:key,
|
7694
7819
|
:value)
|
7820
|
+
SENSITIVE = []
|
7695
7821
|
include Aws::Structure
|
7696
7822
|
end
|
7697
7823
|
|
@@ -7706,6 +7832,7 @@ module Aws::ElastiCache
|
|
7706
7832
|
#
|
7707
7833
|
class TagListMessage < Struct.new(
|
7708
7834
|
:tag_list)
|
7835
|
+
SENSITIVE = []
|
7709
7836
|
include Aws::Structure
|
7710
7837
|
end
|
7711
7838
|
|
@@ -7748,6 +7875,7 @@ module Aws::ElastiCache
|
|
7748
7875
|
class TestFailoverMessage < Struct.new(
|
7749
7876
|
:replication_group_id,
|
7750
7877
|
:node_group_id)
|
7878
|
+
SENSITIVE = []
|
7751
7879
|
include Aws::Structure
|
7752
7880
|
end
|
7753
7881
|
|
@@ -7766,6 +7894,7 @@ module Aws::ElastiCache
|
|
7766
7894
|
#
|
7767
7895
|
class TestFailoverResult < Struct.new(
|
7768
7896
|
:replication_group)
|
7897
|
+
SENSITIVE = []
|
7769
7898
|
include Aws::Structure
|
7770
7899
|
end
|
7771
7900
|
|
@@ -7793,6 +7922,7 @@ module Aws::ElastiCache
|
|
7793
7922
|
class TimeRangeFilter < Struct.new(
|
7794
7923
|
:start_time,
|
7795
7924
|
:end_time)
|
7925
|
+
SENSITIVE = []
|
7796
7926
|
include Aws::Structure
|
7797
7927
|
end
|
7798
7928
|
|
@@ -7828,6 +7958,7 @@ module Aws::ElastiCache
|
|
7828
7958
|
:service_update_name,
|
7829
7959
|
:error_type,
|
7830
7960
|
:error_message)
|
7961
|
+
SENSITIVE = []
|
7831
7962
|
include Aws::Structure
|
7832
7963
|
end
|
7833
7964
|
|
@@ -7932,6 +8063,7 @@ module Aws::ElastiCache
|
|
7932
8063
|
:cache_node_update_status,
|
7933
8064
|
:estimated_update_time,
|
7934
8065
|
:engine)
|
8066
|
+
SENSITIVE = []
|
7935
8067
|
include Aws::Structure
|
7936
8068
|
end
|
7937
8069
|
|
@@ -7948,6 +8080,7 @@ module Aws::ElastiCache
|
|
7948
8080
|
class UpdateActionResultsMessage < Struct.new(
|
7949
8081
|
:processed_update_actions,
|
7950
8082
|
:unprocessed_update_actions)
|
8083
|
+
SENSITIVE = []
|
7951
8084
|
include Aws::Structure
|
7952
8085
|
end
|
7953
8086
|
|
@@ -7967,6 +8100,7 @@ module Aws::ElastiCache
|
|
7967
8100
|
class UpdateActionsMessage < Struct.new(
|
7968
8101
|
:marker,
|
7969
8102
|
:update_actions)
|
8103
|
+
SENSITIVE = []
|
7970
8104
|
include Aws::Structure
|
7971
8105
|
end
|
7972
8106
|
|