aws-sdk-elasticache 1.34.0 → 1.39.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 +3 -1
- data/lib/aws-sdk-elasticache/client.rb +42 -11
- data/lib/aws-sdk-elasticache/client_api.rb +6 -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 +201 -8
- 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: a3163328df9f6c7e0d051c41f27122e677e99b42e38cac0e7f3a9ce17a54c7a4
|
4
|
+
data.tar.gz: b985c03f78d1dfd5e11d5ad532133fade9c278fd29f210297ebe44da2994bbaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ea8a5f71fbd48af2fd11ab3c7f5037cf5f28a6fd205b00387e68b71b1676242a1a8cbba6e6f6800a4e47d43f21b345a45e0fc1a11d6ae1d0bcc83c33eceaf36
|
7
|
+
data.tar.gz: ec3f9d36664e056eb20b33595829cdd005dec81675cc91c9f5aa0f73aef28fc8795660a41b9dda17ba0aff3719abb5e5e703da01817d91fea3e018bee4c69f4b
|
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:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-elasticache/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::ElastiCache
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.39.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
|
|
@@ -161,7 +165,7 @@ module Aws::ElastiCache
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::ElastiCache
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -628,6 +632,7 @@ module Aws::ElastiCache
|
|
628
632
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
629
633
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
630
634
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
635
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
631
636
|
# resp.replication_group.configuration_endpoint.address #=> String
|
632
637
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
633
638
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -908,9 +913,9 @@ module Aws::ElastiCache
|
|
908
913
|
# @option params [String] :preferred_availability_zone
|
909
914
|
# The EC2 Availability Zone in which the cluster is created.
|
910
915
|
#
|
911
|
-
# All nodes belonging to this
|
912
|
-
#
|
913
|
-
#
|
916
|
+
# All nodes belonging to this cluster are placed in the preferred
|
917
|
+
# Availability Zone. If you want to create your nodes across multiple
|
918
|
+
# Availability Zones, use `PreferredAvailabilityZones`.
|
914
919
|
#
|
915
920
|
# Default: System chosen Availability Zone.
|
916
921
|
#
|
@@ -1755,9 +1760,6 @@ module Aws::ElastiCache
|
|
1755
1760
|
# Specifies whether a read-only replica is automatically promoted to
|
1756
1761
|
# read/write primary if the existing primary fails.
|
1757
1762
|
#
|
1758
|
-
# If `true`, Multi-AZ is enabled for this replication group. If `false`,
|
1759
|
-
# Multi-AZ is disabled for this replication group.
|
1760
|
-
#
|
1761
1763
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
1762
1764
|
# enabled) replication groups.
|
1763
1765
|
#
|
@@ -1772,8 +1774,17 @@ module Aws::ElastiCache
|
|
1772
1774
|
#
|
1773
1775
|
# * Redis (cluster mode enabled): T1 node types.
|
1774
1776
|
#
|
1777
|
+
# @option params [Boolean] :multi_az_enabled
|
1778
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
1779
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
1780
|
+
# Multi-AZ][1].
|
1781
|
+
#
|
1782
|
+
#
|
1783
|
+
#
|
1784
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
1785
|
+
#
|
1775
1786
|
# @option params [Integer] :num_cache_clusters
|
1776
|
-
# The number of
|
1787
|
+
# The number of clusters this replication group initially has.
|
1777
1788
|
#
|
1778
1789
|
# This parameter is not used if there is more than one node group
|
1779
1790
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2226,6 +2237,7 @@ module Aws::ElastiCache
|
|
2226
2237
|
# global_replication_group_id: "String",
|
2227
2238
|
# primary_cluster_id: "String",
|
2228
2239
|
# automatic_failover_enabled: false,
|
2240
|
+
# multi_az_enabled: false,
|
2229
2241
|
# num_cache_clusters: 1,
|
2230
2242
|
# preferred_cache_cluster_a_zs: ["String"],
|
2231
2243
|
# num_node_groups: 1,
|
@@ -2296,6 +2308,7 @@ module Aws::ElastiCache
|
|
2296
2308
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2297
2309
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2298
2310
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2311
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2299
2312
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2300
2313
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2301
2314
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -2692,6 +2705,7 @@ module Aws::ElastiCache
|
|
2692
2705
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2693
2706
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2694
2707
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2708
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2695
2709
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2696
2710
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2697
2711
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -3130,6 +3144,7 @@ module Aws::ElastiCache
|
|
3130
3144
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
3131
3145
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
3132
3146
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
3147
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
3133
3148
|
# resp.replication_group.configuration_endpoint.address #=> String
|
3134
3149
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
3135
3150
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -5587,6 +5602,7 @@ module Aws::ElastiCache
|
|
5587
5602
|
# resp.replication_groups[0].node_groups[0].node_group_members[0].current_role #=> String
|
5588
5603
|
# resp.replication_groups[0].snapshotting_cluster_id #=> String
|
5589
5604
|
# resp.replication_groups[0].automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
5605
|
+
# resp.replication_groups[0].multi_az #=> String, one of "enabled", "disabled"
|
5590
5606
|
# resp.replication_groups[0].configuration_endpoint.address #=> String
|
5591
5607
|
# resp.replication_groups[0].configuration_endpoint.port #=> Integer
|
5592
5608
|
# resp.replication_groups[0].snapshot_retention_limit #=> Integer
|
@@ -6670,7 +6686,7 @@ module Aws::ElastiCache
|
|
6670
6686
|
end
|
6671
6687
|
|
6672
6688
|
# Used to failover the primary region to a selected secondary region.
|
6673
|
-
# The selected secondary region will
|
6689
|
+
# The selected secondary region will become primary, and all other
|
6674
6690
|
# clusters will become secondary.
|
6675
6691
|
#
|
6676
6692
|
# @option params [required, String] :global_replication_group_id
|
@@ -6875,6 +6891,7 @@ module Aws::ElastiCache
|
|
6875
6891
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
6876
6892
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
6877
6893
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
6894
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
6878
6895
|
# resp.replication_group.configuration_endpoint.address #=> String
|
6879
6896
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
6880
6897
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -7788,6 +7805,15 @@ module Aws::ElastiCache
|
|
7788
7805
|
#
|
7789
7806
|
# * Redis (cluster mode enabled): T1 node types.
|
7790
7807
|
#
|
7808
|
+
# @option params [Boolean] :multi_az_enabled
|
7809
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
7810
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
7811
|
+
# Multi-AZ][1].
|
7812
|
+
#
|
7813
|
+
#
|
7814
|
+
#
|
7815
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
7816
|
+
#
|
7791
7817
|
# @option params [String] :node_group_id
|
7792
7818
|
# Deprecated. This parameter is not used.
|
7793
7819
|
#
|
@@ -8025,6 +8051,7 @@ module Aws::ElastiCache
|
|
8025
8051
|
# primary_cluster_id: "String",
|
8026
8052
|
# snapshotting_cluster_id: "String",
|
8027
8053
|
# automatic_failover_enabled: false,
|
8054
|
+
# multi_az_enabled: false,
|
8028
8055
|
# node_group_id: "String",
|
8029
8056
|
# cache_security_group_names: ["String"],
|
8030
8057
|
# security_group_ids: ["String"],
|
@@ -8072,6 +8099,7 @@ module Aws::ElastiCache
|
|
8072
8099
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8073
8100
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8074
8101
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8102
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8075
8103
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8076
8104
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8077
8105
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8190,6 +8218,7 @@ module Aws::ElastiCache
|
|
8190
8218
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8191
8219
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8192
8220
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8221
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8193
8222
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8194
8223
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8195
8224
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8751,6 +8780,7 @@ module Aws::ElastiCache
|
|
8751
8780
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8752
8781
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8753
8782
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8783
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8754
8784
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8755
8785
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8756
8786
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8878,6 +8908,7 @@ module Aws::ElastiCache
|
|
8878
8908
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8879
8909
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8880
8910
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8911
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8881
8912
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8882
8913
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8883
8914
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8913,7 +8944,7 @@ module Aws::ElastiCache
|
|
8913
8944
|
params: params,
|
8914
8945
|
config: config)
|
8915
8946
|
context[:gem_name] = 'aws-sdk-elasticache'
|
8916
|
-
context[:gem_version] = '1.
|
8947
|
+
context[:gem_version] = '1.39.0'
|
8917
8948
|
Seahorse::Client::Request.new(handlers, context)
|
8918
8949
|
end
|
8919
8950
|
|
@@ -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:
|
@@ -186,6 +188,7 @@ module Aws::ElastiCache
|
|
186
188
|
ModifyReplicationGroupResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupResult')
|
187
189
|
ModifyReplicationGroupShardConfigurationMessage = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationMessage')
|
188
190
|
ModifyReplicationGroupShardConfigurationResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationResult')
|
191
|
+
MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
|
189
192
|
NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
|
190
193
|
NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
|
191
194
|
NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
|
@@ -610,6 +613,7 @@ module Aws::ElastiCache
|
|
610
613
|
CreateReplicationGroupMessage.add_member(:global_replication_group_id, Shapes::ShapeRef.new(shape: String, location_name: "GlobalReplicationGroupId"))
|
611
614
|
CreateReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
612
615
|
CreateReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
616
|
+
CreateReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
613
617
|
CreateReplicationGroupMessage.add_member(:num_cache_clusters, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumCacheClusters"))
|
614
618
|
CreateReplicationGroupMessage.add_member(:preferred_cache_cluster_a_zs, Shapes::ShapeRef.new(shape: AvailabilityZonesList, location_name: "PreferredCacheClusterAZs"))
|
615
619
|
CreateReplicationGroupMessage.add_member(:num_node_groups, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumNodeGroups"))
|
@@ -1024,6 +1028,7 @@ module Aws::ElastiCache
|
|
1024
1028
|
ModifyReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
1025
1029
|
ModifyReplicationGroupMessage.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1026
1030
|
ModifyReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
1031
|
+
ModifyReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
1027
1032
|
ModifyReplicationGroupMessage.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "NodeGroupId"))
|
1028
1033
|
ModifyReplicationGroupMessage.add_member(:cache_security_group_names, Shapes::ShapeRef.new(shape: CacheSecurityGroupNameList, location_name: "CacheSecurityGroupNames"))
|
1029
1034
|
ModifyReplicationGroupMessage.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdsList, location_name: "SecurityGroupIds"))
|
@@ -1221,6 +1226,7 @@ module Aws::ElastiCache
|
|
1221
1226
|
ReplicationGroup.add_member(:node_groups, Shapes::ShapeRef.new(shape: NodeGroupList, location_name: "NodeGroups"))
|
1222
1227
|
ReplicationGroup.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1223
1228
|
ReplicationGroup.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1229
|
+
ReplicationGroup.add_member(:multi_az, Shapes::ShapeRef.new(shape: MultiAZStatus, location_name: "MultiAZ"))
|
1224
1230
|
ReplicationGroup.add_member(:configuration_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ConfigurationEndpoint"))
|
1225
1231
|
ReplicationGroup.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
1226
1232
|
ReplicationGroup.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
@@ -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
|
|
@@ -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
|
|
@@ -2005,6 +2047,7 @@ module Aws::ElastiCache
|
|
2005
2047
|
# global_replication_group_id: "String",
|
2006
2048
|
# primary_cluster_id: "String",
|
2007
2049
|
# automatic_failover_enabled: false,
|
2050
|
+
# multi_az_enabled: false,
|
2008
2051
|
# num_cache_clusters: 1,
|
2009
2052
|
# preferred_cache_cluster_a_zs: ["String"],
|
2010
2053
|
# num_node_groups: 1,
|
@@ -2081,9 +2124,6 @@ module Aws::ElastiCache
|
|
2081
2124
|
# Specifies whether a read-only replica is automatically promoted to
|
2082
2125
|
# read/write primary if the existing primary fails.
|
2083
2126
|
#
|
2084
|
-
# If `true`, Multi-AZ is enabled for this replication group. If
|
2085
|
-
# `false`, Multi-AZ is disabled for this replication group.
|
2086
|
-
#
|
2087
2127
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
2088
2128
|
# enabled) replication groups.
|
2089
2129
|
#
|
@@ -2099,8 +2139,18 @@ module Aws::ElastiCache
|
|
2099
2139
|
# * Redis (cluster mode enabled): T1 node types.
|
2100
2140
|
# @return [Boolean]
|
2101
2141
|
#
|
2142
|
+
# @!attribute [rw] multi_az_enabled
|
2143
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
2144
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
2145
|
+
# Multi-AZ][1].
|
2146
|
+
#
|
2147
|
+
#
|
2148
|
+
#
|
2149
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
2150
|
+
# @return [Boolean]
|
2151
|
+
#
|
2102
2152
|
# @!attribute [rw] num_cache_clusters
|
2103
|
-
# The number of
|
2153
|
+
# The number of clusters this replication group initially has.
|
2104
2154
|
#
|
2105
2155
|
# This parameter is not used if there is more than one node group
|
2106
2156
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2484,6 +2534,7 @@ module Aws::ElastiCache
|
|
2484
2534
|
:global_replication_group_id,
|
2485
2535
|
:primary_cluster_id,
|
2486
2536
|
:automatic_failover_enabled,
|
2537
|
+
:multi_az_enabled,
|
2487
2538
|
:num_cache_clusters,
|
2488
2539
|
:preferred_cache_cluster_a_zs,
|
2489
2540
|
:num_node_groups,
|
@@ -2509,6 +2560,7 @@ module Aws::ElastiCache
|
|
2509
2560
|
:transit_encryption_enabled,
|
2510
2561
|
:at_rest_encryption_enabled,
|
2511
2562
|
:kms_key_id)
|
2563
|
+
SENSITIVE = []
|
2512
2564
|
include Aws::Structure
|
2513
2565
|
end
|
2514
2566
|
|
@@ -2521,6 +2573,7 @@ module Aws::ElastiCache
|
|
2521
2573
|
#
|
2522
2574
|
class CreateReplicationGroupResult < Struct.new(
|
2523
2575
|
:replication_group)
|
2576
|
+
SENSITIVE = []
|
2524
2577
|
include Aws::Structure
|
2525
2578
|
end
|
2526
2579
|
|
@@ -2561,6 +2614,7 @@ module Aws::ElastiCache
|
|
2561
2614
|
:cache_cluster_id,
|
2562
2615
|
:snapshot_name,
|
2563
2616
|
:kms_key_id)
|
2617
|
+
SENSITIVE = []
|
2564
2618
|
include Aws::Structure
|
2565
2619
|
end
|
2566
2620
|
|
@@ -2573,6 +2627,7 @@ module Aws::ElastiCache
|
|
2573
2627
|
#
|
2574
2628
|
class CreateSnapshotResult < Struct.new(
|
2575
2629
|
:snapshot)
|
2630
|
+
SENSITIVE = []
|
2576
2631
|
include Aws::Structure
|
2577
2632
|
end
|
2578
2633
|
|
@@ -2599,6 +2654,7 @@ module Aws::ElastiCache
|
|
2599
2654
|
class CustomerNodeEndpoint < Struct.new(
|
2600
2655
|
:address,
|
2601
2656
|
:port)
|
2657
|
+
SENSITIVE = []
|
2602
2658
|
include Aws::Structure
|
2603
2659
|
end
|
2604
2660
|
|
@@ -2653,6 +2709,7 @@ module Aws::ElastiCache
|
|
2653
2709
|
:global_node_groups_to_remove,
|
2654
2710
|
:global_node_groups_to_retain,
|
2655
2711
|
:apply_immediately)
|
2712
|
+
SENSITIVE = []
|
2656
2713
|
include Aws::Structure
|
2657
2714
|
end
|
2658
2715
|
|
@@ -2673,6 +2730,7 @@ module Aws::ElastiCache
|
|
2673
2730
|
#
|
2674
2731
|
class DecreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
|
2675
2732
|
:global_replication_group)
|
2733
|
+
SENSITIVE = []
|
2676
2734
|
include Aws::Structure
|
2677
2735
|
end
|
2678
2736
|
|
@@ -2742,6 +2800,7 @@ module Aws::ElastiCache
|
|
2742
2800
|
:replica_configuration,
|
2743
2801
|
:replicas_to_remove,
|
2744
2802
|
:apply_immediately)
|
2803
|
+
SENSITIVE = []
|
2745
2804
|
include Aws::Structure
|
2746
2805
|
end
|
2747
2806
|
|
@@ -2754,6 +2813,7 @@ module Aws::ElastiCache
|
|
2754
2813
|
#
|
2755
2814
|
class DecreaseReplicaCountResult < Struct.new(
|
2756
2815
|
:replication_group)
|
2816
|
+
SENSITIVE = []
|
2757
2817
|
include Aws::Structure
|
2758
2818
|
end
|
2759
2819
|
|
@@ -2783,6 +2843,7 @@ module Aws::ElastiCache
|
|
2783
2843
|
class DeleteCacheClusterMessage < Struct.new(
|
2784
2844
|
:cache_cluster_id,
|
2785
2845
|
:final_snapshot_identifier)
|
2846
|
+
SENSITIVE = []
|
2786
2847
|
include Aws::Structure
|
2787
2848
|
end
|
2788
2849
|
|
@@ -2794,6 +2855,7 @@ module Aws::ElastiCache
|
|
2794
2855
|
#
|
2795
2856
|
class DeleteCacheClusterResult < Struct.new(
|
2796
2857
|
:cache_cluster)
|
2858
|
+
SENSITIVE = []
|
2797
2859
|
include Aws::Structure
|
2798
2860
|
end
|
2799
2861
|
|
@@ -2819,6 +2881,7 @@ module Aws::ElastiCache
|
|
2819
2881
|
#
|
2820
2882
|
class DeleteCacheParameterGroupMessage < Struct.new(
|
2821
2883
|
:cache_parameter_group_name)
|
2884
|
+
SENSITIVE = []
|
2822
2885
|
include Aws::Structure
|
2823
2886
|
end
|
2824
2887
|
|
@@ -2843,6 +2906,7 @@ module Aws::ElastiCache
|
|
2843
2906
|
#
|
2844
2907
|
class DeleteCacheSecurityGroupMessage < Struct.new(
|
2845
2908
|
:cache_security_group_name)
|
2909
|
+
SENSITIVE = []
|
2846
2910
|
include Aws::Structure
|
2847
2911
|
end
|
2848
2912
|
|
@@ -2866,6 +2930,7 @@ module Aws::ElastiCache
|
|
2866
2930
|
#
|
2867
2931
|
class DeleteCacheSubnetGroupMessage < Struct.new(
|
2868
2932
|
:cache_subnet_group_name)
|
2933
|
+
SENSITIVE = []
|
2869
2934
|
include Aws::Structure
|
2870
2935
|
end
|
2871
2936
|
|
@@ -2891,6 +2956,7 @@ module Aws::ElastiCache
|
|
2891
2956
|
class DeleteGlobalReplicationGroupMessage < Struct.new(
|
2892
2957
|
:global_replication_group_id,
|
2893
2958
|
:retain_primary_replication_group)
|
2959
|
+
SENSITIVE = []
|
2894
2960
|
include Aws::Structure
|
2895
2961
|
end
|
2896
2962
|
|
@@ -2911,6 +2977,7 @@ module Aws::ElastiCache
|
|
2911
2977
|
#
|
2912
2978
|
class DeleteGlobalReplicationGroupResult < Struct.new(
|
2913
2979
|
:global_replication_group)
|
2980
|
+
SENSITIVE = []
|
2914
2981
|
include Aws::Structure
|
2915
2982
|
end
|
2916
2983
|
|
@@ -2949,6 +3016,7 @@ module Aws::ElastiCache
|
|
2949
3016
|
:replication_group_id,
|
2950
3017
|
:retain_primary_cluster,
|
2951
3018
|
:final_snapshot_identifier)
|
3019
|
+
SENSITIVE = []
|
2952
3020
|
include Aws::Structure
|
2953
3021
|
end
|
2954
3022
|
|
@@ -2961,6 +3029,7 @@ module Aws::ElastiCache
|
|
2961
3029
|
#
|
2962
3030
|
class DeleteReplicationGroupResult < Struct.new(
|
2963
3031
|
:replication_group)
|
3032
|
+
SENSITIVE = []
|
2964
3033
|
include Aws::Structure
|
2965
3034
|
end
|
2966
3035
|
|
@@ -2981,6 +3050,7 @@ module Aws::ElastiCache
|
|
2981
3050
|
#
|
2982
3051
|
class DeleteSnapshotMessage < Struct.new(
|
2983
3052
|
:snapshot_name)
|
3053
|
+
SENSITIVE = []
|
2984
3054
|
include Aws::Structure
|
2985
3055
|
end
|
2986
3056
|
|
@@ -2993,6 +3063,7 @@ module Aws::ElastiCache
|
|
2993
3063
|
#
|
2994
3064
|
class DeleteSnapshotResult < Struct.new(
|
2995
3065
|
:snapshot)
|
3066
|
+
SENSITIVE = []
|
2996
3067
|
include Aws::Structure
|
2997
3068
|
end
|
2998
3069
|
|
@@ -3053,6 +3124,7 @@ module Aws::ElastiCache
|
|
3053
3124
|
:marker,
|
3054
3125
|
:show_cache_node_info,
|
3055
3126
|
:show_cache_clusters_not_in_replication_groups)
|
3127
|
+
SENSITIVE = []
|
3056
3128
|
include Aws::Structure
|
3057
3129
|
end
|
3058
3130
|
|
@@ -3128,6 +3200,7 @@ module Aws::ElastiCache
|
|
3128
3200
|
:max_records,
|
3129
3201
|
:marker,
|
3130
3202
|
:default_only)
|
3203
|
+
SENSITIVE = []
|
3131
3204
|
include Aws::Structure
|
3132
3205
|
end
|
3133
3206
|
|
@@ -3170,6 +3243,7 @@ module Aws::ElastiCache
|
|
3170
3243
|
:cache_parameter_group_name,
|
3171
3244
|
:max_records,
|
3172
3245
|
:marker)
|
3246
|
+
SENSITIVE = []
|
3173
3247
|
include Aws::Structure
|
3174
3248
|
end
|
3175
3249
|
|
@@ -3220,6 +3294,7 @@ module Aws::ElastiCache
|
|
3220
3294
|
:source,
|
3221
3295
|
:max_records,
|
3222
3296
|
:marker)
|
3297
|
+
SENSITIVE = []
|
3223
3298
|
include Aws::Structure
|
3224
3299
|
end
|
3225
3300
|
|
@@ -3262,6 +3337,7 @@ module Aws::ElastiCache
|
|
3262
3337
|
:cache_security_group_name,
|
3263
3338
|
:max_records,
|
3264
3339
|
:marker)
|
3340
|
+
SENSITIVE = []
|
3265
3341
|
include Aws::Structure
|
3266
3342
|
end
|
3267
3343
|
|
@@ -3304,6 +3380,7 @@ module Aws::ElastiCache
|
|
3304
3380
|
:cache_subnet_group_name,
|
3305
3381
|
:max_records,
|
3306
3382
|
:marker)
|
3383
|
+
SENSITIVE = []
|
3307
3384
|
include Aws::Structure
|
3308
3385
|
end
|
3309
3386
|
|
@@ -3349,6 +3426,7 @@ module Aws::ElastiCache
|
|
3349
3426
|
:cache_parameter_group_family,
|
3350
3427
|
:max_records,
|
3351
3428
|
:marker)
|
3429
|
+
SENSITIVE = []
|
3352
3430
|
include Aws::Structure
|
3353
3431
|
end
|
3354
3432
|
|
@@ -3361,6 +3439,7 @@ module Aws::ElastiCache
|
|
3361
3439
|
#
|
3362
3440
|
class DescribeEngineDefaultParametersResult < Struct.new(
|
3363
3441
|
:engine_defaults)
|
3442
|
+
SENSITIVE = []
|
3364
3443
|
include Aws::Structure
|
3365
3444
|
end
|
3366
3445
|
|
@@ -3435,6 +3514,7 @@ module Aws::ElastiCache
|
|
3435
3514
|
:duration,
|
3436
3515
|
:max_records,
|
3437
3516
|
:marker)
|
3517
|
+
SENSITIVE = []
|
3438
3518
|
include Aws::Structure
|
3439
3519
|
end
|
3440
3520
|
|
@@ -3477,6 +3557,7 @@ module Aws::ElastiCache
|
|
3477
3557
|
:max_records,
|
3478
3558
|
:marker,
|
3479
3559
|
:show_member_info)
|
3560
|
+
SENSITIVE = []
|
3480
3561
|
include Aws::Structure
|
3481
3562
|
end
|
3482
3563
|
|
@@ -3497,6 +3578,7 @@ module Aws::ElastiCache
|
|
3497
3578
|
class DescribeGlobalReplicationGroupsResult < Struct.new(
|
3498
3579
|
:marker,
|
3499
3580
|
:global_replication_groups)
|
3581
|
+
SENSITIVE = []
|
3500
3582
|
include Aws::Structure
|
3501
3583
|
end
|
3502
3584
|
|
@@ -3543,6 +3625,7 @@ module Aws::ElastiCache
|
|
3543
3625
|
:replication_group_id,
|
3544
3626
|
:max_records,
|
3545
3627
|
:marker)
|
3628
|
+
SENSITIVE = []
|
3546
3629
|
include Aws::Structure
|
3547
3630
|
end
|
3548
3631
|
|
@@ -3700,6 +3783,7 @@ module Aws::ElastiCache
|
|
3700
3783
|
:offering_type,
|
3701
3784
|
:max_records,
|
3702
3785
|
:marker)
|
3786
|
+
SENSITIVE = []
|
3703
3787
|
include Aws::Structure
|
3704
3788
|
end
|
3705
3789
|
|
@@ -3853,6 +3937,7 @@ module Aws::ElastiCache
|
|
3853
3937
|
:offering_type,
|
3854
3938
|
:max_records,
|
3855
3939
|
:marker)
|
3940
|
+
SENSITIVE = []
|
3856
3941
|
include Aws::Structure
|
3857
3942
|
end
|
3858
3943
|
|
@@ -3892,6 +3977,7 @@ module Aws::ElastiCache
|
|
3892
3977
|
:service_update_status,
|
3893
3978
|
:max_records,
|
3894
3979
|
:marker)
|
3980
|
+
SENSITIVE = []
|
3895
3981
|
include Aws::Structure
|
3896
3982
|
end
|
3897
3983
|
|
@@ -3914,6 +4000,7 @@ module Aws::ElastiCache
|
|
3914
4000
|
class DescribeSnapshotsListMessage < Struct.new(
|
3915
4001
|
:marker,
|
3916
4002
|
:snapshots)
|
4003
|
+
SENSITIVE = []
|
3917
4004
|
include Aws::Structure
|
3918
4005
|
end
|
3919
4006
|
|
@@ -3988,6 +4075,7 @@ module Aws::ElastiCache
|
|
3988
4075
|
:marker,
|
3989
4076
|
:max_records,
|
3990
4077
|
:show_node_group_config)
|
4078
|
+
SENSITIVE = []
|
3991
4079
|
include Aws::Structure
|
3992
4080
|
end
|
3993
4081
|
|
@@ -4068,6 +4156,7 @@ module Aws::ElastiCache
|
|
4068
4156
|
:show_node_level_update_status,
|
4069
4157
|
:max_records,
|
4070
4158
|
:marker)
|
4159
|
+
SENSITIVE = []
|
4071
4160
|
include Aws::Structure
|
4072
4161
|
end
|
4073
4162
|
|
@@ -4100,6 +4189,7 @@ module Aws::ElastiCache
|
|
4100
4189
|
:global_replication_group_id,
|
4101
4190
|
:replication_group_id,
|
4102
4191
|
:replication_group_region)
|
4192
|
+
SENSITIVE = []
|
4103
4193
|
include Aws::Structure
|
4104
4194
|
end
|
4105
4195
|
|
@@ -4120,6 +4210,7 @@ module Aws::ElastiCache
|
|
4120
4210
|
#
|
4121
4211
|
class DisassociateGlobalReplicationGroupResult < Struct.new(
|
4122
4212
|
:global_replication_group)
|
4213
|
+
SENSITIVE = []
|
4123
4214
|
include Aws::Structure
|
4124
4215
|
end
|
4125
4216
|
|
@@ -4144,6 +4235,7 @@ module Aws::ElastiCache
|
|
4144
4235
|
:status,
|
4145
4236
|
:ec2_security_group_name,
|
4146
4237
|
:ec2_security_group_owner_id)
|
4238
|
+
SENSITIVE = []
|
4147
4239
|
include Aws::Structure
|
4148
4240
|
end
|
4149
4241
|
|
@@ -4163,6 +4255,7 @@ module Aws::ElastiCache
|
|
4163
4255
|
class Endpoint < Struct.new(
|
4164
4256
|
:address,
|
4165
4257
|
:port)
|
4258
|
+
SENSITIVE = []
|
4166
4259
|
include Aws::Structure
|
4167
4260
|
end
|
4168
4261
|
|
@@ -4198,6 +4291,7 @@ module Aws::ElastiCache
|
|
4198
4291
|
:marker,
|
4199
4292
|
:parameters,
|
4200
4293
|
:cache_node_type_specific_parameters)
|
4294
|
+
SENSITIVE = []
|
4201
4295
|
include Aws::Structure
|
4202
4296
|
end
|
4203
4297
|
|
@@ -4231,6 +4325,7 @@ module Aws::ElastiCache
|
|
4231
4325
|
:source_type,
|
4232
4326
|
:message,
|
4233
4327
|
:date)
|
4328
|
+
SENSITIVE = []
|
4234
4329
|
include Aws::Structure
|
4235
4330
|
end
|
4236
4331
|
|
@@ -4250,6 +4345,7 @@ module Aws::ElastiCache
|
|
4250
4345
|
class EventsMessage < Struct.new(
|
4251
4346
|
:marker,
|
4252
4347
|
:events)
|
4348
|
+
SENSITIVE = []
|
4253
4349
|
include Aws::Structure
|
4254
4350
|
end
|
4255
4351
|
|
@@ -4280,6 +4376,7 @@ module Aws::ElastiCache
|
|
4280
4376
|
:global_replication_group_id,
|
4281
4377
|
:primary_region,
|
4282
4378
|
:primary_replication_group_id)
|
4379
|
+
SENSITIVE = []
|
4283
4380
|
include Aws::Structure
|
4284
4381
|
end
|
4285
4382
|
|
@@ -4300,6 +4397,7 @@ module Aws::ElastiCache
|
|
4300
4397
|
#
|
4301
4398
|
class FailoverGlobalReplicationGroupResult < Struct.new(
|
4302
4399
|
:global_replication_group)
|
4400
|
+
SENSITIVE = []
|
4303
4401
|
include Aws::Structure
|
4304
4402
|
end
|
4305
4403
|
|
@@ -4319,6 +4417,7 @@ module Aws::ElastiCache
|
|
4319
4417
|
class GlobalNodeGroup < Struct.new(
|
4320
4418
|
:global_node_group_id,
|
4321
4419
|
:slots)
|
4420
|
+
SENSITIVE = []
|
4322
4421
|
include Aws::Structure
|
4323
4422
|
end
|
4324
4423
|
|
@@ -4419,6 +4518,7 @@ module Aws::ElastiCache
|
|
4419
4518
|
:transit_encryption_enabled,
|
4420
4519
|
:at_rest_encryption_enabled,
|
4421
4520
|
:arn)
|
4521
|
+
SENSITIVE = []
|
4422
4522
|
include Aws::Structure
|
4423
4523
|
end
|
4424
4524
|
|
@@ -4445,6 +4545,7 @@ module Aws::ElastiCache
|
|
4445
4545
|
class GlobalReplicationGroupInfo < Struct.new(
|
4446
4546
|
:global_replication_group_id,
|
4447
4547
|
:global_replication_group_member_role)
|
4548
|
+
SENSITIVE = []
|
4448
4549
|
include Aws::Structure
|
4449
4550
|
end
|
4450
4551
|
|
@@ -4480,6 +4581,7 @@ module Aws::ElastiCache
|
|
4480
4581
|
:role,
|
4481
4582
|
:automatic_failover,
|
4482
4583
|
:status)
|
4584
|
+
SENSITIVE = []
|
4483
4585
|
include Aws::Structure
|
4484
4586
|
end
|
4485
4587
|
|
@@ -4536,6 +4638,7 @@ module Aws::ElastiCache
|
|
4536
4638
|
:node_group_count,
|
4537
4639
|
:regional_configurations,
|
4538
4640
|
:apply_immediately)
|
4641
|
+
SENSITIVE = []
|
4539
4642
|
include Aws::Structure
|
4540
4643
|
end
|
4541
4644
|
|
@@ -4556,6 +4659,7 @@ module Aws::ElastiCache
|
|
4556
4659
|
#
|
4557
4660
|
class IncreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
|
4558
4661
|
:global_replication_group)
|
4662
|
+
SENSITIVE = []
|
4559
4663
|
include Aws::Structure
|
4560
4664
|
end
|
4561
4665
|
|
@@ -4607,6 +4711,7 @@ module Aws::ElastiCache
|
|
4607
4711
|
:new_replica_count,
|
4608
4712
|
:replica_configuration,
|
4609
4713
|
:apply_immediately)
|
4714
|
+
SENSITIVE = []
|
4610
4715
|
include Aws::Structure
|
4611
4716
|
end
|
4612
4717
|
|
@@ -4619,6 +4724,7 @@ module Aws::ElastiCache
|
|
4619
4724
|
#
|
4620
4725
|
class IncreaseReplicaCountResult < Struct.new(
|
4621
4726
|
:replication_group)
|
4727
|
+
SENSITIVE = []
|
4622
4728
|
include Aws::Structure
|
4623
4729
|
end
|
4624
4730
|
|
@@ -4683,6 +4789,7 @@ module Aws::ElastiCache
|
|
4683
4789
|
#
|
4684
4790
|
class InvalidParameterCombinationException < Struct.new(
|
4685
4791
|
:message)
|
4792
|
+
SENSITIVE = []
|
4686
4793
|
include Aws::Structure
|
4687
4794
|
end
|
4688
4795
|
|
@@ -4696,6 +4803,7 @@ module Aws::ElastiCache
|
|
4696
4803
|
#
|
4697
4804
|
class InvalidParameterValueException < Struct.new(
|
4698
4805
|
:message)
|
4806
|
+
SENSITIVE = []
|
4699
4807
|
include Aws::Structure
|
4700
4808
|
end
|
4701
4809
|
|
@@ -4760,6 +4868,7 @@ module Aws::ElastiCache
|
|
4760
4868
|
class ListAllowedNodeTypeModificationsMessage < Struct.new(
|
4761
4869
|
:cache_cluster_id,
|
4762
4870
|
:replication_group_id)
|
4871
|
+
SENSITIVE = []
|
4763
4872
|
include Aws::Structure
|
4764
4873
|
end
|
4765
4874
|
|
@@ -4790,6 +4899,7 @@ module Aws::ElastiCache
|
|
4790
4899
|
#
|
4791
4900
|
class ListTagsForResourceMessage < Struct.new(
|
4792
4901
|
:resource_name)
|
4902
|
+
SENSITIVE = []
|
4793
4903
|
include Aws::Structure
|
4794
4904
|
end
|
4795
4905
|
|
@@ -5166,6 +5276,7 @@ module Aws::ElastiCache
|
|
5166
5276
|
:cache_node_type,
|
5167
5277
|
:auth_token,
|
5168
5278
|
:auth_token_update_strategy)
|
5279
|
+
SENSITIVE = []
|
5169
5280
|
include Aws::Structure
|
5170
5281
|
end
|
5171
5282
|
|
@@ -5177,6 +5288,7 @@ module Aws::ElastiCache
|
|
5177
5288
|
#
|
5178
5289
|
class ModifyCacheClusterResult < Struct.new(
|
5179
5290
|
:cache_cluster)
|
5291
|
+
SENSITIVE = []
|
5180
5292
|
include Aws::Structure
|
5181
5293
|
end
|
5182
5294
|
|
@@ -5211,6 +5323,7 @@ module Aws::ElastiCache
|
|
5211
5323
|
class ModifyCacheParameterGroupMessage < Struct.new(
|
5212
5324
|
:cache_parameter_group_name,
|
5213
5325
|
:parameter_name_values)
|
5326
|
+
SENSITIVE = []
|
5214
5327
|
include Aws::Structure
|
5215
5328
|
end
|
5216
5329
|
|
@@ -5249,6 +5362,7 @@ module Aws::ElastiCache
|
|
5249
5362
|
:cache_subnet_group_name,
|
5250
5363
|
:cache_subnet_group_description,
|
5251
5364
|
:subnet_ids)
|
5365
|
+
SENSITIVE = []
|
5252
5366
|
include Aws::Structure
|
5253
5367
|
end
|
5254
5368
|
|
@@ -5264,6 +5378,7 @@ module Aws::ElastiCache
|
|
5264
5378
|
#
|
5265
5379
|
class ModifyCacheSubnetGroupResult < Struct.new(
|
5266
5380
|
:cache_subnet_group)
|
5381
|
+
SENSITIVE = []
|
5267
5382
|
include Aws::Structure
|
5268
5383
|
end
|
5269
5384
|
|
@@ -5318,6 +5433,7 @@ module Aws::ElastiCache
|
|
5318
5433
|
:engine_version,
|
5319
5434
|
:global_replication_group_description,
|
5320
5435
|
:automatic_failover_enabled)
|
5436
|
+
SENSITIVE = []
|
5321
5437
|
include Aws::Structure
|
5322
5438
|
end
|
5323
5439
|
|
@@ -5338,6 +5454,7 @@ module Aws::ElastiCache
|
|
5338
5454
|
#
|
5339
5455
|
class ModifyGlobalReplicationGroupResult < Struct.new(
|
5340
5456
|
:global_replication_group)
|
5457
|
+
SENSITIVE = []
|
5341
5458
|
include Aws::Structure
|
5342
5459
|
end
|
5343
5460
|
|
@@ -5352,6 +5469,7 @@ module Aws::ElastiCache
|
|
5352
5469
|
# primary_cluster_id: "String",
|
5353
5470
|
# snapshotting_cluster_id: "String",
|
5354
5471
|
# automatic_failover_enabled: false,
|
5472
|
+
# multi_az_enabled: false,
|
5355
5473
|
# node_group_id: "String",
|
5356
5474
|
# cache_security_group_names: ["String"],
|
5357
5475
|
# security_group_ids: ["String"],
|
@@ -5407,6 +5525,16 @@ module Aws::ElastiCache
|
|
5407
5525
|
# * Redis (cluster mode enabled): T1 node types.
|
5408
5526
|
# @return [Boolean]
|
5409
5527
|
#
|
5528
|
+
# @!attribute [rw] multi_az_enabled
|
5529
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
5530
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
5531
|
+
# Multi-AZ][1].
|
5532
|
+
#
|
5533
|
+
#
|
5534
|
+
#
|
5535
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
5536
|
+
# @return [Boolean]
|
5537
|
+
#
|
5410
5538
|
# @!attribute [rw] node_group_id
|
5411
5539
|
# Deprecated. This parameter is not used.
|
5412
5540
|
# @return [String]
|
@@ -5586,6 +5714,7 @@ module Aws::ElastiCache
|
|
5586
5714
|
:primary_cluster_id,
|
5587
5715
|
:snapshotting_cluster_id,
|
5588
5716
|
:automatic_failover_enabled,
|
5717
|
+
:multi_az_enabled,
|
5589
5718
|
:node_group_id,
|
5590
5719
|
:cache_security_group_names,
|
5591
5720
|
:security_group_ids,
|
@@ -5601,6 +5730,7 @@ module Aws::ElastiCache
|
|
5601
5730
|
:cache_node_type,
|
5602
5731
|
:auth_token,
|
5603
5732
|
:auth_token_update_strategy)
|
5733
|
+
SENSITIVE = []
|
5604
5734
|
include Aws::Structure
|
5605
5735
|
end
|
5606
5736
|
|
@@ -5613,6 +5743,7 @@ module Aws::ElastiCache
|
|
5613
5743
|
#
|
5614
5744
|
class ModifyReplicationGroupResult < Struct.new(
|
5615
5745
|
:replication_group)
|
5746
|
+
SENSITIVE = []
|
5616
5747
|
include Aws::Structure
|
5617
5748
|
end
|
5618
5749
|
|
@@ -5694,6 +5825,7 @@ module Aws::ElastiCache
|
|
5694
5825
|
:resharding_configuration,
|
5695
5826
|
:node_groups_to_remove,
|
5696
5827
|
:node_groups_to_retain)
|
5828
|
+
SENSITIVE = []
|
5697
5829
|
include Aws::Structure
|
5698
5830
|
end
|
5699
5831
|
|
@@ -5706,6 +5838,7 @@ module Aws::ElastiCache
|
|
5706
5838
|
#
|
5707
5839
|
class ModifyReplicationGroupShardConfigurationResult < Struct.new(
|
5708
5840
|
:replication_group)
|
5841
|
+
SENSITIVE = []
|
5709
5842
|
include Aws::Structure
|
5710
5843
|
end
|
5711
5844
|
|
@@ -5729,7 +5862,7 @@ module Aws::ElastiCache
|
|
5729
5862
|
#
|
5730
5863
|
# @!attribute [rw] status
|
5731
5864
|
# The current state of this replication group - `creating`,
|
5732
|
-
# `available`,
|
5865
|
+
# `available`, `modifying`, `deleting`.
|
5733
5866
|
# @return [String]
|
5734
5867
|
#
|
5735
5868
|
# @!attribute [rw] primary_endpoint
|
@@ -5758,6 +5891,7 @@ module Aws::ElastiCache
|
|
5758
5891
|
:reader_endpoint,
|
5759
5892
|
:slots,
|
5760
5893
|
:node_group_members)
|
5894
|
+
SENSITIVE = []
|
5761
5895
|
include Aws::Structure
|
5762
5896
|
end
|
5763
5897
|
|
@@ -5812,6 +5946,7 @@ module Aws::ElastiCache
|
|
5812
5946
|
:replica_count,
|
5813
5947
|
:primary_availability_zone,
|
5814
5948
|
:replica_availability_zones)
|
5949
|
+
SENSITIVE = []
|
5815
5950
|
include Aws::Structure
|
5816
5951
|
end
|
5817
5952
|
|
@@ -5850,6 +5985,7 @@ module Aws::ElastiCache
|
|
5850
5985
|
:read_endpoint,
|
5851
5986
|
:preferred_availability_zone,
|
5852
5987
|
:current_role)
|
5988
|
+
SENSITIVE = []
|
5853
5989
|
include Aws::Structure
|
5854
5990
|
end
|
5855
5991
|
|
@@ -5904,6 +6040,7 @@ module Aws::ElastiCache
|
|
5904
6040
|
:node_update_initiated_by,
|
5905
6041
|
:node_update_initiated_date,
|
5906
6042
|
:node_update_status_modified_date)
|
6043
|
+
SENSITIVE = []
|
5907
6044
|
include Aws::Structure
|
5908
6045
|
end
|
5909
6046
|
|
@@ -5930,6 +6067,7 @@ module Aws::ElastiCache
|
|
5930
6067
|
class NodeGroupUpdateStatus < Struct.new(
|
5931
6068
|
:node_group_id,
|
5932
6069
|
:node_group_member_update_status)
|
6070
|
+
SENSITIVE = []
|
5933
6071
|
include Aws::Structure
|
5934
6072
|
end
|
5935
6073
|
|
@@ -5997,6 +6135,7 @@ module Aws::ElastiCache
|
|
5997
6135
|
:cache_size,
|
5998
6136
|
:cache_node_create_time,
|
5999
6137
|
:snapshot_create_time)
|
6138
|
+
SENSITIVE = []
|
6000
6139
|
include Aws::Structure
|
6001
6140
|
end
|
6002
6141
|
|
@@ -6017,6 +6156,7 @@ module Aws::ElastiCache
|
|
6017
6156
|
class NotificationConfiguration < Struct.new(
|
6018
6157
|
:topic_arn,
|
6019
6158
|
:topic_status)
|
6159
|
+
SENSITIVE = []
|
6020
6160
|
include Aws::Structure
|
6021
6161
|
end
|
6022
6162
|
|
@@ -6080,6 +6220,7 @@ module Aws::ElastiCache
|
|
6080
6220
|
:is_modifiable,
|
6081
6221
|
:minimum_engine_version,
|
6082
6222
|
:change_type)
|
6223
|
+
SENSITIVE = []
|
6083
6224
|
include Aws::Structure
|
6084
6225
|
end
|
6085
6226
|
|
@@ -6107,6 +6248,7 @@ module Aws::ElastiCache
|
|
6107
6248
|
class ParameterNameValue < Struct.new(
|
6108
6249
|
:parameter_name,
|
6109
6250
|
:parameter_value)
|
6251
|
+
SENSITIVE = []
|
6110
6252
|
include Aws::Structure
|
6111
6253
|
end
|
6112
6254
|
|
@@ -6147,6 +6289,7 @@ module Aws::ElastiCache
|
|
6147
6289
|
:engine_version,
|
6148
6290
|
:cache_node_type,
|
6149
6291
|
:auth_token_status)
|
6292
|
+
SENSITIVE = []
|
6150
6293
|
include Aws::Structure
|
6151
6294
|
end
|
6152
6295
|
|
@@ -6176,6 +6319,7 @@ module Aws::ElastiCache
|
|
6176
6319
|
:cache_cluster_id,
|
6177
6320
|
:service_update_name,
|
6178
6321
|
:update_action_status)
|
6322
|
+
SENSITIVE = []
|
6179
6323
|
include Aws::Structure
|
6180
6324
|
end
|
6181
6325
|
|
@@ -6222,6 +6366,7 @@ module Aws::ElastiCache
|
|
6222
6366
|
:reserved_cache_nodes_offering_id,
|
6223
6367
|
:reserved_cache_node_id,
|
6224
6368
|
:cache_node_count)
|
6369
|
+
SENSITIVE = []
|
6225
6370
|
include Aws::Structure
|
6226
6371
|
end
|
6227
6372
|
|
@@ -6234,6 +6379,7 @@ module Aws::ElastiCache
|
|
6234
6379
|
#
|
6235
6380
|
class PurchaseReservedCacheNodesOfferingResult < Struct.new(
|
6236
6381
|
:reserved_cache_node)
|
6382
|
+
SENSITIVE = []
|
6237
6383
|
include Aws::Structure
|
6238
6384
|
end
|
6239
6385
|
|
@@ -6258,6 +6404,7 @@ module Aws::ElastiCache
|
|
6258
6404
|
class RebalanceSlotsInGlobalReplicationGroupMessage < Struct.new(
|
6259
6405
|
:global_replication_group_id,
|
6260
6406
|
:apply_immediately)
|
6407
|
+
SENSITIVE = []
|
6261
6408
|
include Aws::Structure
|
6262
6409
|
end
|
6263
6410
|
|
@@ -6278,6 +6425,7 @@ module Aws::ElastiCache
|
|
6278
6425
|
#
|
6279
6426
|
class RebalanceSlotsInGlobalReplicationGroupResult < Struct.new(
|
6280
6427
|
:global_replication_group)
|
6428
|
+
SENSITIVE = []
|
6281
6429
|
include Aws::Structure
|
6282
6430
|
end
|
6283
6431
|
|
@@ -6307,6 +6455,7 @@ module Aws::ElastiCache
|
|
6307
6455
|
class RebootCacheClusterMessage < Struct.new(
|
6308
6456
|
:cache_cluster_id,
|
6309
6457
|
:cache_node_ids_to_reboot)
|
6458
|
+
SENSITIVE = []
|
6310
6459
|
include Aws::Structure
|
6311
6460
|
end
|
6312
6461
|
|
@@ -6318,6 +6467,7 @@ module Aws::ElastiCache
|
|
6318
6467
|
#
|
6319
6468
|
class RebootCacheClusterResult < Struct.new(
|
6320
6469
|
:cache_cluster)
|
6470
|
+
SENSITIVE = []
|
6321
6471
|
include Aws::Structure
|
6322
6472
|
end
|
6323
6473
|
|
@@ -6337,6 +6487,7 @@ module Aws::ElastiCache
|
|
6337
6487
|
class RecurringCharge < Struct.new(
|
6338
6488
|
:recurring_charge_amount,
|
6339
6489
|
:recurring_charge_frequency)
|
6490
|
+
SENSITIVE = []
|
6340
6491
|
include Aws::Structure
|
6341
6492
|
end
|
6342
6493
|
|
@@ -6375,6 +6526,7 @@ module Aws::ElastiCache
|
|
6375
6526
|
:replication_group_id,
|
6376
6527
|
:replication_group_region,
|
6377
6528
|
:resharding_configuration)
|
6529
|
+
SENSITIVE = []
|
6378
6530
|
include Aws::Structure
|
6379
6531
|
end
|
6380
6532
|
|
@@ -6412,6 +6564,7 @@ module Aws::ElastiCache
|
|
6412
6564
|
class RemoveTagsFromResourceMessage < Struct.new(
|
6413
6565
|
:resource_name,
|
6414
6566
|
:tag_keys)
|
6567
|
+
SENSITIVE = []
|
6415
6568
|
include Aws::Structure
|
6416
6569
|
end
|
6417
6570
|
|
@@ -6472,6 +6625,16 @@ module Aws::ElastiCache
|
|
6472
6625
|
# * Redis (cluster mode enabled): T1 node types.
|
6473
6626
|
# @return [String]
|
6474
6627
|
#
|
6628
|
+
# @!attribute [rw] multi_az
|
6629
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
6630
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
6631
|
+
# Multi-AZ][1]
|
6632
|
+
#
|
6633
|
+
#
|
6634
|
+
#
|
6635
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
6636
|
+
# @return [String]
|
6637
|
+
#
|
6475
6638
|
# @!attribute [rw] configuration_endpoint
|
6476
6639
|
# The configuration endpoint for this replication group. Use the
|
6477
6640
|
# configuration endpoint to connect to this replication group.
|
@@ -6573,6 +6736,7 @@ module Aws::ElastiCache
|
|
6573
6736
|
:node_groups,
|
6574
6737
|
:snapshotting_cluster_id,
|
6575
6738
|
:automatic_failover,
|
6739
|
+
:multi_az,
|
6576
6740
|
:configuration_endpoint,
|
6577
6741
|
:snapshot_retention_limit,
|
6578
6742
|
:snapshot_window,
|
@@ -6584,6 +6748,7 @@ module Aws::ElastiCache
|
|
6584
6748
|
:at_rest_encryption_enabled,
|
6585
6749
|
:kms_key_id,
|
6586
6750
|
:arn)
|
6751
|
+
SENSITIVE = []
|
6587
6752
|
include Aws::Structure
|
6588
6753
|
end
|
6589
6754
|
|
@@ -6615,6 +6780,7 @@ module Aws::ElastiCache
|
|
6615
6780
|
class ReplicationGroupMessage < Struct.new(
|
6616
6781
|
:marker,
|
6617
6782
|
:replication_groups)
|
6783
|
+
SENSITIVE = []
|
6618
6784
|
include Aws::Structure
|
6619
6785
|
end
|
6620
6786
|
|
@@ -6668,6 +6834,7 @@ module Aws::ElastiCache
|
|
6668
6834
|
:automatic_failover_status,
|
6669
6835
|
:resharding,
|
6670
6836
|
:auth_token_status)
|
6837
|
+
SENSITIVE = []
|
6671
6838
|
include Aws::Structure
|
6672
6839
|
end
|
6673
6840
|
|
@@ -6817,6 +6984,7 @@ module Aws::ElastiCache
|
|
6817
6984
|
:state,
|
6818
6985
|
:recurring_charges,
|
6819
6986
|
:reservation_arn)
|
6987
|
+
SENSITIVE = []
|
6820
6988
|
include Aws::Structure
|
6821
6989
|
end
|
6822
6990
|
|
@@ -6842,6 +7010,7 @@ module Aws::ElastiCache
|
|
6842
7010
|
class ReservedCacheNodeMessage < Struct.new(
|
6843
7011
|
:marker,
|
6844
7012
|
:reserved_cache_nodes)
|
7013
|
+
SENSITIVE = []
|
6845
7014
|
include Aws::Structure
|
6846
7015
|
end
|
6847
7016
|
|
@@ -6975,6 +7144,7 @@ module Aws::ElastiCache
|
|
6975
7144
|
:product_description,
|
6976
7145
|
:offering_type,
|
6977
7146
|
:recurring_charges)
|
7147
|
+
SENSITIVE = []
|
6978
7148
|
include Aws::Structure
|
6979
7149
|
end
|
6980
7150
|
|
@@ -6995,6 +7165,7 @@ module Aws::ElastiCache
|
|
6995
7165
|
class ReservedCacheNodesOfferingMessage < Struct.new(
|
6996
7166
|
:marker,
|
6997
7167
|
:reserved_cache_nodes_offerings)
|
7168
|
+
SENSITIVE = []
|
6998
7169
|
include Aws::Structure
|
6999
7170
|
end
|
7000
7171
|
|
@@ -7045,6 +7216,7 @@ module Aws::ElastiCache
|
|
7045
7216
|
:cache_parameter_group_name,
|
7046
7217
|
:reset_all_parameters,
|
7047
7218
|
:parameter_name_values)
|
7219
|
+
SENSITIVE = []
|
7048
7220
|
include Aws::Structure
|
7049
7221
|
end
|
7050
7222
|
|
@@ -7074,6 +7246,7 @@ module Aws::ElastiCache
|
|
7074
7246
|
class ReshardingConfiguration < Struct.new(
|
7075
7247
|
:node_group_id,
|
7076
7248
|
:preferred_availability_zones)
|
7249
|
+
SENSITIVE = []
|
7077
7250
|
include Aws::Structure
|
7078
7251
|
end
|
7079
7252
|
|
@@ -7087,6 +7260,7 @@ module Aws::ElastiCache
|
|
7087
7260
|
#
|
7088
7261
|
class ReshardingStatus < Struct.new(
|
7089
7262
|
:slot_migration)
|
7263
|
+
SENSITIVE = []
|
7090
7264
|
include Aws::Structure
|
7091
7265
|
end
|
7092
7266
|
|
@@ -7121,6 +7295,7 @@ module Aws::ElastiCache
|
|
7121
7295
|
:cache_security_group_name,
|
7122
7296
|
:ec2_security_group_name,
|
7123
7297
|
:ec2_security_group_owner_id)
|
7298
|
+
SENSITIVE = []
|
7124
7299
|
include Aws::Structure
|
7125
7300
|
end
|
7126
7301
|
|
@@ -7138,6 +7313,7 @@ module Aws::ElastiCache
|
|
7138
7313
|
#
|
7139
7314
|
class RevokeCacheSecurityGroupIngressResult < Struct.new(
|
7140
7315
|
:cache_security_group)
|
7316
|
+
SENSITIVE = []
|
7141
7317
|
include Aws::Structure
|
7142
7318
|
end
|
7143
7319
|
|
@@ -7158,6 +7334,7 @@ module Aws::ElastiCache
|
|
7158
7334
|
class SecurityGroupMembership < Struct.new(
|
7159
7335
|
:security_group_id,
|
7160
7336
|
:status)
|
7337
|
+
SENSITIVE = []
|
7161
7338
|
include Aws::Structure
|
7162
7339
|
end
|
7163
7340
|
|
@@ -7241,6 +7418,7 @@ module Aws::ElastiCache
|
|
7241
7418
|
:engine_version,
|
7242
7419
|
:auto_update_after_recommended_apply_by_date,
|
7243
7420
|
:estimated_update_time)
|
7421
|
+
SENSITIVE = []
|
7244
7422
|
include Aws::Structure
|
7245
7423
|
end
|
7246
7424
|
|
@@ -7266,6 +7444,7 @@ module Aws::ElastiCache
|
|
7266
7444
|
class ServiceUpdatesMessage < Struct.new(
|
7267
7445
|
:marker,
|
7268
7446
|
:service_updates)
|
7447
|
+
SENSITIVE = []
|
7269
7448
|
include Aws::Structure
|
7270
7449
|
end
|
7271
7450
|
|
@@ -7279,6 +7458,7 @@ module Aws::ElastiCache
|
|
7279
7458
|
#
|
7280
7459
|
class SlotMigration < Struct.new(
|
7281
7460
|
:progress_percentage)
|
7461
|
+
SENSITIVE = []
|
7282
7462
|
include Aws::Structure
|
7283
7463
|
end
|
7284
7464
|
|
@@ -7549,6 +7729,7 @@ module Aws::ElastiCache
|
|
7549
7729
|
:node_snapshots,
|
7550
7730
|
:kms_key_id,
|
7551
7731
|
:arn)
|
7732
|
+
SENSITIVE = []
|
7552
7733
|
include Aws::Structure
|
7553
7734
|
end
|
7554
7735
|
|
@@ -7612,6 +7793,7 @@ module Aws::ElastiCache
|
|
7612
7793
|
class StartMigrationMessage < Struct.new(
|
7613
7794
|
:replication_group_id,
|
7614
7795
|
:customer_node_endpoint_list)
|
7796
|
+
SENSITIVE = []
|
7615
7797
|
include Aws::Structure
|
7616
7798
|
end
|
7617
7799
|
|
@@ -7624,6 +7806,7 @@ module Aws::ElastiCache
|
|
7624
7806
|
#
|
7625
7807
|
class StartMigrationResponse < Struct.new(
|
7626
7808
|
:replication_group)
|
7809
|
+
SENSITIVE = []
|
7627
7810
|
include Aws::Structure
|
7628
7811
|
end
|
7629
7812
|
|
@@ -7644,6 +7827,7 @@ module Aws::ElastiCache
|
|
7644
7827
|
class Subnet < Struct.new(
|
7645
7828
|
:subnet_identifier,
|
7646
7829
|
:subnet_availability_zone)
|
7830
|
+
SENSITIVE = []
|
7647
7831
|
include Aws::Structure
|
7648
7832
|
end
|
7649
7833
|
|
@@ -7678,6 +7862,7 @@ module Aws::ElastiCache
|
|
7678
7862
|
class Tag < Struct.new(
|
7679
7863
|
:key,
|
7680
7864
|
:value)
|
7865
|
+
SENSITIVE = []
|
7681
7866
|
include Aws::Structure
|
7682
7867
|
end
|
7683
7868
|
|
@@ -7692,6 +7877,7 @@ module Aws::ElastiCache
|
|
7692
7877
|
#
|
7693
7878
|
class TagListMessage < Struct.new(
|
7694
7879
|
:tag_list)
|
7880
|
+
SENSITIVE = []
|
7695
7881
|
include Aws::Structure
|
7696
7882
|
end
|
7697
7883
|
|
@@ -7734,6 +7920,7 @@ module Aws::ElastiCache
|
|
7734
7920
|
class TestFailoverMessage < Struct.new(
|
7735
7921
|
:replication_group_id,
|
7736
7922
|
:node_group_id)
|
7923
|
+
SENSITIVE = []
|
7737
7924
|
include Aws::Structure
|
7738
7925
|
end
|
7739
7926
|
|
@@ -7752,6 +7939,7 @@ module Aws::ElastiCache
|
|
7752
7939
|
#
|
7753
7940
|
class TestFailoverResult < Struct.new(
|
7754
7941
|
:replication_group)
|
7942
|
+
SENSITIVE = []
|
7755
7943
|
include Aws::Structure
|
7756
7944
|
end
|
7757
7945
|
|
@@ -7779,6 +7967,7 @@ module Aws::ElastiCache
|
|
7779
7967
|
class TimeRangeFilter < Struct.new(
|
7780
7968
|
:start_time,
|
7781
7969
|
:end_time)
|
7970
|
+
SENSITIVE = []
|
7782
7971
|
include Aws::Structure
|
7783
7972
|
end
|
7784
7973
|
|
@@ -7814,6 +8003,7 @@ module Aws::ElastiCache
|
|
7814
8003
|
:service_update_name,
|
7815
8004
|
:error_type,
|
7816
8005
|
:error_message)
|
8006
|
+
SENSITIVE = []
|
7817
8007
|
include Aws::Structure
|
7818
8008
|
end
|
7819
8009
|
|
@@ -7918,6 +8108,7 @@ module Aws::ElastiCache
|
|
7918
8108
|
:cache_node_update_status,
|
7919
8109
|
:estimated_update_time,
|
7920
8110
|
:engine)
|
8111
|
+
SENSITIVE = []
|
7921
8112
|
include Aws::Structure
|
7922
8113
|
end
|
7923
8114
|
|
@@ -7934,6 +8125,7 @@ module Aws::ElastiCache
|
|
7934
8125
|
class UpdateActionResultsMessage < Struct.new(
|
7935
8126
|
:processed_update_actions,
|
7936
8127
|
:unprocessed_update_actions)
|
8128
|
+
SENSITIVE = []
|
7937
8129
|
include Aws::Structure
|
7938
8130
|
end
|
7939
8131
|
|
@@ -7953,6 +8145,7 @@ module Aws::ElastiCache
|
|
7953
8145
|
class UpdateActionsMessage < Struct.new(
|
7954
8146
|
:marker,
|
7955
8147
|
:update_actions)
|
8148
|
+
SENSITIVE = []
|
7956
8149
|
include Aws::Structure
|
7957
8150
|
end
|
7958
8151
|
|