aws-sdk-elasticache 1.35.0 → 1.40.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 +41 -31
- 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 +199 -51
- 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: 490d271b0577d8dd860441e86e67d6b5807ee632ddb5d1f62f8a65a567d5b2fb
|
4
|
+
data.tar.gz: 98d55a2e9bfcb86418145c9c54ed54d9dd5a56a8f862881683767388b40176ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1584689ba0e4ae631bb84b43dafcd23bf82f4f0cdd40154d8ebe7a8aaae9ef6b5d5078581a8caa53b9e7e82390bda2be939cf66742c29179ad901df6fb784827
|
7
|
+
data.tar.gz: 3ef3abe309ef219eff46b20483a382bab881346e7be1809eadf8f8262f6af96a9d4a64adf0b6e198e6938885f45ae51eef18190604bf3b21c204ce3c25a3218a
|
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.40.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
|
@@ -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
|
#
|
@@ -1710,12 +1715,10 @@ module Aws::ElastiCache
|
|
1710
1715
|
#
|
1711
1716
|
# When a Redis (cluster mode disabled) replication group has been
|
1712
1717
|
# successfully created, you can add one or more read replicas to it, up
|
1713
|
-
# to a total of 5 read replicas.
|
1714
|
-
#
|
1715
|
-
#
|
1716
|
-
#
|
1717
|
-
# backup and restore. For more information, see [Restoring From a Backup
|
1718
|
-
# with Cluster Resizing][1] in the *ElastiCache User Guide*.
|
1718
|
+
# to a total of 5 read replicas. If you need to increase or decrease the
|
1719
|
+
# number of node groups (console: shards), you can avail yourself of
|
1720
|
+
# ElastiCache for Redis' scaling. For more information, see [Scaling
|
1721
|
+
# ElastiCache for Redis Clusters][1] in the *ElastiCache User Guide*.
|
1719
1722
|
#
|
1720
1723
|
# <note markdown="1"> This operation is valid for Redis only.
|
1721
1724
|
#
|
@@ -1723,7 +1726,7 @@ module Aws::ElastiCache
|
|
1723
1726
|
#
|
1724
1727
|
#
|
1725
1728
|
#
|
1726
|
-
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/
|
1729
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.html
|
1727
1730
|
#
|
1728
1731
|
# @option params [required, String] :replication_group_id
|
1729
1732
|
# The replication group identifier. This parameter is stored as a
|
@@ -1755,25 +1758,22 @@ module Aws::ElastiCache
|
|
1755
1758
|
# Specifies whether a read-only replica is automatically promoted to
|
1756
1759
|
# read/write primary if the existing primary fails.
|
1757
1760
|
#
|
1758
|
-
# If `true`, Multi-AZ is enabled for this replication group. If `false`,
|
1759
|
-
# Multi-AZ is disabled for this replication group.
|
1760
|
-
#
|
1761
1761
|
# `AutomaticFailoverEnabled` must be enabled for Redis (cluster mode
|
1762
1762
|
# enabled) replication groups.
|
1763
1763
|
#
|
1764
1764
|
# Default: false
|
1765
1765
|
#
|
1766
|
-
#
|
1767
|
-
#
|
1766
|
+
# @option params [Boolean] :multi_az_enabled
|
1767
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
1768
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
1769
|
+
# Multi-AZ][1].
|
1768
1770
|
#
|
1769
|
-
# * Redis versions earlier than 2.8.6.
|
1770
1771
|
#
|
1771
|
-
# * Redis (cluster mode disabled): T1 node types.
|
1772
1772
|
#
|
1773
|
-
#
|
1773
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
1774
1774
|
#
|
1775
1775
|
# @option params [Integer] :num_cache_clusters
|
1776
|
-
# The number of
|
1776
|
+
# The number of clusters this replication group initially has.
|
1777
1777
|
#
|
1778
1778
|
# This parameter is not used if there is more than one node group
|
1779
1779
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2226,6 +2226,7 @@ module Aws::ElastiCache
|
|
2226
2226
|
# global_replication_group_id: "String",
|
2227
2227
|
# primary_cluster_id: "String",
|
2228
2228
|
# automatic_failover_enabled: false,
|
2229
|
+
# multi_az_enabled: false,
|
2229
2230
|
# num_cache_clusters: 1,
|
2230
2231
|
# preferred_cache_cluster_a_zs: ["String"],
|
2231
2232
|
# num_node_groups: 1,
|
@@ -2296,6 +2297,7 @@ module Aws::ElastiCache
|
|
2296
2297
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2297
2298
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2298
2299
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2300
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2299
2301
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2300
2302
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2301
2303
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -2621,9 +2623,9 @@ module Aws::ElastiCache
|
|
2621
2623
|
#
|
2622
2624
|
# * Redis (cluster mode disabled)
|
2623
2625
|
#
|
2624
|
-
# * If Multi-AZ
|
2626
|
+
# * If Multi-AZ is enabled: 1
|
2625
2627
|
#
|
2626
|
-
# * If Multi-AZ
|
2628
|
+
# * If Multi-AZ is not enabled: 0
|
2627
2629
|
#
|
2628
2630
|
# * Redis (cluster mode enabled): 0 (though you will not be able to
|
2629
2631
|
# failover to a replica if your primary node fails)
|
@@ -2692,6 +2694,7 @@ module Aws::ElastiCache
|
|
2692
2694
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
2693
2695
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
2694
2696
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
2697
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
2695
2698
|
# resp.replication_group.configuration_endpoint.address #=> String
|
2696
2699
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
2697
2700
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -3130,6 +3133,7 @@ module Aws::ElastiCache
|
|
3130
3133
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
3131
3134
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
3132
3135
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
3136
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
3133
3137
|
# resp.replication_group.configuration_endpoint.address #=> String
|
3134
3138
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
3135
3139
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -5587,6 +5591,7 @@ module Aws::ElastiCache
|
|
5587
5591
|
# resp.replication_groups[0].node_groups[0].node_group_members[0].current_role #=> String
|
5588
5592
|
# resp.replication_groups[0].snapshotting_cluster_id #=> String
|
5589
5593
|
# resp.replication_groups[0].automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
5594
|
+
# resp.replication_groups[0].multi_az #=> String, one of "enabled", "disabled"
|
5590
5595
|
# resp.replication_groups[0].configuration_endpoint.address #=> String
|
5591
5596
|
# resp.replication_groups[0].configuration_endpoint.port #=> Integer
|
5592
5597
|
# resp.replication_groups[0].snapshot_retention_limit #=> Integer
|
@@ -6670,7 +6675,7 @@ module Aws::ElastiCache
|
|
6670
6675
|
end
|
6671
6676
|
|
6672
6677
|
# Used to failover the primary region to a selected secondary region.
|
6673
|
-
# The selected secondary region will
|
6678
|
+
# The selected secondary region will become primary, and all other
|
6674
6679
|
# clusters will become secondary.
|
6675
6680
|
#
|
6676
6681
|
# @option params [required, String] :global_replication_group_id
|
@@ -6875,6 +6880,7 @@ module Aws::ElastiCache
|
|
6875
6880
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
6876
6881
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
6877
6882
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
6883
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
6878
6884
|
# resp.replication_group.configuration_endpoint.address #=> String
|
6879
6885
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
6880
6886
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -7779,14 +7785,14 @@ module Aws::ElastiCache
|
|
7779
7785
|
#
|
7780
7786
|
# Valid values: `true` \| `false`
|
7781
7787
|
#
|
7782
|
-
#
|
7783
|
-
#
|
7788
|
+
# @option params [Boolean] :multi_az_enabled
|
7789
|
+
# A flag indicating if you have Multi-AZ enabled to enhance fault
|
7790
|
+
# tolerance. For more information, see [Minimizing Downtime:
|
7791
|
+
# Multi-AZ][1].
|
7784
7792
|
#
|
7785
|
-
# * Redis versions earlier than 2.8.6.
|
7786
7793
|
#
|
7787
|
-
# * Redis (cluster mode disabled): T1 node types.
|
7788
7794
|
#
|
7789
|
-
#
|
7795
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
7790
7796
|
#
|
7791
7797
|
# @option params [String] :node_group_id
|
7792
7798
|
# Deprecated. This parameter is not used.
|
@@ -8025,6 +8031,7 @@ module Aws::ElastiCache
|
|
8025
8031
|
# primary_cluster_id: "String",
|
8026
8032
|
# snapshotting_cluster_id: "String",
|
8027
8033
|
# automatic_failover_enabled: false,
|
8034
|
+
# multi_az_enabled: false,
|
8028
8035
|
# node_group_id: "String",
|
8029
8036
|
# cache_security_group_names: ["String"],
|
8030
8037
|
# security_group_ids: ["String"],
|
@@ -8072,6 +8079,7 @@ module Aws::ElastiCache
|
|
8072
8079
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8073
8080
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8074
8081
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8082
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8075
8083
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8076
8084
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8077
8085
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8190,6 +8198,7 @@ module Aws::ElastiCache
|
|
8190
8198
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8191
8199
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8192
8200
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8201
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8193
8202
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8194
8203
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8195
8204
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8751,6 +8760,7 @@ module Aws::ElastiCache
|
|
8751
8760
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8752
8761
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8753
8762
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8763
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8754
8764
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8755
8765
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8756
8766
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8818,8 +8828,7 @@ module Aws::ElastiCache
|
|
8818
8828
|
#
|
8819
8829
|
# * [DescribeEvents][2] in the ElastiCache API Reference
|
8820
8830
|
#
|
8821
|
-
# Also see, [Testing Multi-AZ
|
8822
|
-
# *ElastiCache User Guide*.
|
8831
|
+
# Also see, [Testing Multi-AZ ][3] in the *ElastiCache User Guide*.
|
8823
8832
|
#
|
8824
8833
|
#
|
8825
8834
|
#
|
@@ -8878,6 +8887,7 @@ module Aws::ElastiCache
|
|
8878
8887
|
# resp.replication_group.node_groups[0].node_group_members[0].current_role #=> String
|
8879
8888
|
# resp.replication_group.snapshotting_cluster_id #=> String
|
8880
8889
|
# resp.replication_group.automatic_failover #=> String, one of "enabled", "disabled", "enabling", "disabling"
|
8890
|
+
# resp.replication_group.multi_az #=> String, one of "enabled", "disabled"
|
8881
8891
|
# resp.replication_group.configuration_endpoint.address #=> String
|
8882
8892
|
# resp.replication_group.configuration_endpoint.port #=> Integer
|
8883
8893
|
# resp.replication_group.snapshot_retention_limit #=> Integer
|
@@ -8913,7 +8923,7 @@ module Aws::ElastiCache
|
|
8913
8923
|
params: params,
|
8914
8924
|
config: config)
|
8915
8925
|
context[:gem_name] = 'aws-sdk-elasticache'
|
8916
|
-
context[:gem_version] = '1.
|
8926
|
+
context[:gem_version] = '1.40.0'
|
8917
8927
|
Seahorse::Client::Request.new(handlers, context)
|
8918
8928
|
end
|
8919
8929
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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,26 +2124,24 @@ 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
|
#
|
2090
2130
|
# Default: false
|
2131
|
+
# @return [Boolean]
|
2091
2132
|
#
|
2092
|
-
#
|
2093
|
-
#
|
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].
|
2094
2137
|
#
|
2095
|
-
# * Redis versions earlier than 2.8.6.
|
2096
2138
|
#
|
2097
|
-
# * Redis (cluster mode disabled): T1 node types.
|
2098
2139
|
#
|
2099
|
-
#
|
2140
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
2100
2141
|
# @return [Boolean]
|
2101
2142
|
#
|
2102
2143
|
# @!attribute [rw] num_cache_clusters
|
2103
|
-
# The number of
|
2144
|
+
# The number of clusters this replication group initially has.
|
2104
2145
|
#
|
2105
2146
|
# This parameter is not used if there is more than one node group
|
2106
2147
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2484,6 +2525,7 @@ module Aws::ElastiCache
|
|
2484
2525
|
:global_replication_group_id,
|
2485
2526
|
:primary_cluster_id,
|
2486
2527
|
:automatic_failover_enabled,
|
2528
|
+
:multi_az_enabled,
|
2487
2529
|
:num_cache_clusters,
|
2488
2530
|
:preferred_cache_cluster_a_zs,
|
2489
2531
|
:num_node_groups,
|
@@ -2509,6 +2551,7 @@ module Aws::ElastiCache
|
|
2509
2551
|
:transit_encryption_enabled,
|
2510
2552
|
:at_rest_encryption_enabled,
|
2511
2553
|
:kms_key_id)
|
2554
|
+
SENSITIVE = []
|
2512
2555
|
include Aws::Structure
|
2513
2556
|
end
|
2514
2557
|
|
@@ -2521,6 +2564,7 @@ module Aws::ElastiCache
|
|
2521
2564
|
#
|
2522
2565
|
class CreateReplicationGroupResult < Struct.new(
|
2523
2566
|
:replication_group)
|
2567
|
+
SENSITIVE = []
|
2524
2568
|
include Aws::Structure
|
2525
2569
|
end
|
2526
2570
|
|
@@ -2561,6 +2605,7 @@ module Aws::ElastiCache
|
|
2561
2605
|
:cache_cluster_id,
|
2562
2606
|
:snapshot_name,
|
2563
2607
|
:kms_key_id)
|
2608
|
+
SENSITIVE = []
|
2564
2609
|
include Aws::Structure
|
2565
2610
|
end
|
2566
2611
|
|
@@ -2573,6 +2618,7 @@ module Aws::ElastiCache
|
|
2573
2618
|
#
|
2574
2619
|
class CreateSnapshotResult < Struct.new(
|
2575
2620
|
:snapshot)
|
2621
|
+
SENSITIVE = []
|
2576
2622
|
include Aws::Structure
|
2577
2623
|
end
|
2578
2624
|
|
@@ -2599,6 +2645,7 @@ module Aws::ElastiCache
|
|
2599
2645
|
class CustomerNodeEndpoint < Struct.new(
|
2600
2646
|
:address,
|
2601
2647
|
:port)
|
2648
|
+
SENSITIVE = []
|
2602
2649
|
include Aws::Structure
|
2603
2650
|
end
|
2604
2651
|
|
@@ -2653,6 +2700,7 @@ module Aws::ElastiCache
|
|
2653
2700
|
:global_node_groups_to_remove,
|
2654
2701
|
:global_node_groups_to_retain,
|
2655
2702
|
:apply_immediately)
|
2703
|
+
SENSITIVE = []
|
2656
2704
|
include Aws::Structure
|
2657
2705
|
end
|
2658
2706
|
|
@@ -2673,6 +2721,7 @@ module Aws::ElastiCache
|
|
2673
2721
|
#
|
2674
2722
|
class DecreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
|
2675
2723
|
:global_replication_group)
|
2724
|
+
SENSITIVE = []
|
2676
2725
|
include Aws::Structure
|
2677
2726
|
end
|
2678
2727
|
|
@@ -2709,9 +2758,9 @@ module Aws::ElastiCache
|
|
2709
2758
|
#
|
2710
2759
|
# * Redis (cluster mode disabled)
|
2711
2760
|
#
|
2712
|
-
# * If Multi-AZ
|
2761
|
+
# * If Multi-AZ is enabled: 1
|
2713
2762
|
#
|
2714
|
-
# * If Multi-AZ
|
2763
|
+
# * If Multi-AZ is not enabled: 0
|
2715
2764
|
#
|
2716
2765
|
# * Redis (cluster mode enabled): 0 (though you will not be able to
|
2717
2766
|
# failover to a replica if your primary node fails)
|
@@ -2742,6 +2791,7 @@ module Aws::ElastiCache
|
|
2742
2791
|
:replica_configuration,
|
2743
2792
|
:replicas_to_remove,
|
2744
2793
|
:apply_immediately)
|
2794
|
+
SENSITIVE = []
|
2745
2795
|
include Aws::Structure
|
2746
2796
|
end
|
2747
2797
|
|
@@ -2754,6 +2804,7 @@ module Aws::ElastiCache
|
|
2754
2804
|
#
|
2755
2805
|
class DecreaseReplicaCountResult < Struct.new(
|
2756
2806
|
:replication_group)
|
2807
|
+
SENSITIVE = []
|
2757
2808
|
include Aws::Structure
|
2758
2809
|
end
|
2759
2810
|
|
@@ -2783,6 +2834,7 @@ module Aws::ElastiCache
|
|
2783
2834
|
class DeleteCacheClusterMessage < Struct.new(
|
2784
2835
|
:cache_cluster_id,
|
2785
2836
|
:final_snapshot_identifier)
|
2837
|
+
SENSITIVE = []
|
2786
2838
|
include Aws::Structure
|
2787
2839
|
end
|
2788
2840
|
|
@@ -2794,6 +2846,7 @@ module Aws::ElastiCache
|
|
2794
2846
|
#
|
2795
2847
|
class DeleteCacheClusterResult < Struct.new(
|
2796
2848
|
:cache_cluster)
|
2849
|
+
SENSITIVE = []
|
2797
2850
|
include Aws::Structure
|
2798
2851
|
end
|
2799
2852
|
|
@@ -2819,6 +2872,7 @@ module Aws::ElastiCache
|
|
2819
2872
|
#
|
2820
2873
|
class DeleteCacheParameterGroupMessage < Struct.new(
|
2821
2874
|
:cache_parameter_group_name)
|
2875
|
+
SENSITIVE = []
|
2822
2876
|
include Aws::Structure
|
2823
2877
|
end
|
2824
2878
|
|
@@ -2843,6 +2897,7 @@ module Aws::ElastiCache
|
|
2843
2897
|
#
|
2844
2898
|
class DeleteCacheSecurityGroupMessage < Struct.new(
|
2845
2899
|
:cache_security_group_name)
|
2900
|
+
SENSITIVE = []
|
2846
2901
|
include Aws::Structure
|
2847
2902
|
end
|
2848
2903
|
|
@@ -2866,6 +2921,7 @@ module Aws::ElastiCache
|
|
2866
2921
|
#
|
2867
2922
|
class DeleteCacheSubnetGroupMessage < Struct.new(
|
2868
2923
|
:cache_subnet_group_name)
|
2924
|
+
SENSITIVE = []
|
2869
2925
|
include Aws::Structure
|
2870
2926
|
end
|
2871
2927
|
|
@@ -2891,6 +2947,7 @@ module Aws::ElastiCache
|
|
2891
2947
|
class DeleteGlobalReplicationGroupMessage < Struct.new(
|
2892
2948
|
:global_replication_group_id,
|
2893
2949
|
:retain_primary_replication_group)
|
2950
|
+
SENSITIVE = []
|
2894
2951
|
include Aws::Structure
|
2895
2952
|
end
|
2896
2953
|
|
@@ -2911,6 +2968,7 @@ module Aws::ElastiCache
|
|
2911
2968
|
#
|
2912
2969
|
class DeleteGlobalReplicationGroupResult < Struct.new(
|
2913
2970
|
:global_replication_group)
|
2971
|
+
SENSITIVE = []
|
2914
2972
|
include Aws::Structure
|
2915
2973
|
end
|
2916
2974
|
|
@@ -2949,6 +3007,7 @@ module Aws::ElastiCache
|
|
2949
3007
|
:replication_group_id,
|
2950
3008
|
:retain_primary_cluster,
|
2951
3009
|
:final_snapshot_identifier)
|
3010
|
+
SENSITIVE = []
|
2952
3011
|
include Aws::Structure
|
2953
3012
|
end
|
2954
3013
|
|
@@ -2961,6 +3020,7 @@ module Aws::ElastiCache
|
|
2961
3020
|
#
|
2962
3021
|
class DeleteReplicationGroupResult < Struct.new(
|
2963
3022
|
:replication_group)
|
3023
|
+
SENSITIVE = []
|
2964
3024
|
include Aws::Structure
|
2965
3025
|
end
|
2966
3026
|
|
@@ -2981,6 +3041,7 @@ module Aws::ElastiCache
|
|
2981
3041
|
#
|
2982
3042
|
class DeleteSnapshotMessage < Struct.new(
|
2983
3043
|
:snapshot_name)
|
3044
|
+
SENSITIVE = []
|
2984
3045
|
include Aws::Structure
|
2985
3046
|
end
|
2986
3047
|
|
@@ -2993,6 +3054,7 @@ module Aws::ElastiCache
|
|
2993
3054
|
#
|
2994
3055
|
class DeleteSnapshotResult < Struct.new(
|
2995
3056
|
:snapshot)
|
3057
|
+
SENSITIVE = []
|
2996
3058
|
include Aws::Structure
|
2997
3059
|
end
|
2998
3060
|
|
@@ -3053,6 +3115,7 @@ module Aws::ElastiCache
|
|
3053
3115
|
:marker,
|
3054
3116
|
:show_cache_node_info,
|
3055
3117
|
:show_cache_clusters_not_in_replication_groups)
|
3118
|
+
SENSITIVE = []
|
3056
3119
|
include Aws::Structure
|
3057
3120
|
end
|
3058
3121
|
|
@@ -3128,6 +3191,7 @@ module Aws::ElastiCache
|
|
3128
3191
|
:max_records,
|
3129
3192
|
:marker,
|
3130
3193
|
:default_only)
|
3194
|
+
SENSITIVE = []
|
3131
3195
|
include Aws::Structure
|
3132
3196
|
end
|
3133
3197
|
|
@@ -3170,6 +3234,7 @@ module Aws::ElastiCache
|
|
3170
3234
|
:cache_parameter_group_name,
|
3171
3235
|
:max_records,
|
3172
3236
|
:marker)
|
3237
|
+
SENSITIVE = []
|
3173
3238
|
include Aws::Structure
|
3174
3239
|
end
|
3175
3240
|
|
@@ -3220,6 +3285,7 @@ module Aws::ElastiCache
|
|
3220
3285
|
:source,
|
3221
3286
|
:max_records,
|
3222
3287
|
:marker)
|
3288
|
+
SENSITIVE = []
|
3223
3289
|
include Aws::Structure
|
3224
3290
|
end
|
3225
3291
|
|
@@ -3262,6 +3328,7 @@ module Aws::ElastiCache
|
|
3262
3328
|
:cache_security_group_name,
|
3263
3329
|
:max_records,
|
3264
3330
|
:marker)
|
3331
|
+
SENSITIVE = []
|
3265
3332
|
include Aws::Structure
|
3266
3333
|
end
|
3267
3334
|
|
@@ -3304,6 +3371,7 @@ module Aws::ElastiCache
|
|
3304
3371
|
:cache_subnet_group_name,
|
3305
3372
|
:max_records,
|
3306
3373
|
:marker)
|
3374
|
+
SENSITIVE = []
|
3307
3375
|
include Aws::Structure
|
3308
3376
|
end
|
3309
3377
|
|
@@ -3349,6 +3417,7 @@ module Aws::ElastiCache
|
|
3349
3417
|
:cache_parameter_group_family,
|
3350
3418
|
:max_records,
|
3351
3419
|
:marker)
|
3420
|
+
SENSITIVE = []
|
3352
3421
|
include Aws::Structure
|
3353
3422
|
end
|
3354
3423
|
|
@@ -3361,6 +3430,7 @@ module Aws::ElastiCache
|
|
3361
3430
|
#
|
3362
3431
|
class DescribeEngineDefaultParametersResult < Struct.new(
|
3363
3432
|
:engine_defaults)
|
3433
|
+
SENSITIVE = []
|
3364
3434
|
include Aws::Structure
|
3365
3435
|
end
|
3366
3436
|
|
@@ -3435,6 +3505,7 @@ module Aws::ElastiCache
|
|
3435
3505
|
:duration,
|
3436
3506
|
:max_records,
|
3437
3507
|
:marker)
|
3508
|
+
SENSITIVE = []
|
3438
3509
|
include Aws::Structure
|
3439
3510
|
end
|
3440
3511
|
|
@@ -3477,6 +3548,7 @@ module Aws::ElastiCache
|
|
3477
3548
|
:max_records,
|
3478
3549
|
:marker,
|
3479
3550
|
:show_member_info)
|
3551
|
+
SENSITIVE = []
|
3480
3552
|
include Aws::Structure
|
3481
3553
|
end
|
3482
3554
|
|
@@ -3497,6 +3569,7 @@ module Aws::ElastiCache
|
|
3497
3569
|
class DescribeGlobalReplicationGroupsResult < Struct.new(
|
3498
3570
|
:marker,
|
3499
3571
|
:global_replication_groups)
|
3572
|
+
SENSITIVE = []
|
3500
3573
|
include Aws::Structure
|
3501
3574
|
end
|
3502
3575
|
|
@@ -3543,6 +3616,7 @@ module Aws::ElastiCache
|
|
3543
3616
|
:replication_group_id,
|
3544
3617
|
:max_records,
|
3545
3618
|
:marker)
|
3619
|
+
SENSITIVE = []
|
3546
3620
|
include Aws::Structure
|
3547
3621
|
end
|
3548
3622
|
|
@@ -3700,6 +3774,7 @@ module Aws::ElastiCache
|
|
3700
3774
|
:offering_type,
|
3701
3775
|
:max_records,
|
3702
3776
|
:marker)
|
3777
|
+
SENSITIVE = []
|
3703
3778
|
include Aws::Structure
|
3704
3779
|
end
|
3705
3780
|
|
@@ -3853,6 +3928,7 @@ module Aws::ElastiCache
|
|
3853
3928
|
:offering_type,
|
3854
3929
|
:max_records,
|
3855
3930
|
:marker)
|
3931
|
+
SENSITIVE = []
|
3856
3932
|
include Aws::Structure
|
3857
3933
|
end
|
3858
3934
|
|
@@ -3892,6 +3968,7 @@ module Aws::ElastiCache
|
|
3892
3968
|
:service_update_status,
|
3893
3969
|
:max_records,
|
3894
3970
|
:marker)
|
3971
|
+
SENSITIVE = []
|
3895
3972
|
include Aws::Structure
|
3896
3973
|
end
|
3897
3974
|
|
@@ -3914,6 +3991,7 @@ module Aws::ElastiCache
|
|
3914
3991
|
class DescribeSnapshotsListMessage < Struct.new(
|
3915
3992
|
:marker,
|
3916
3993
|
:snapshots)
|
3994
|
+
SENSITIVE = []
|
3917
3995
|
include Aws::Structure
|
3918
3996
|
end
|
3919
3997
|
|
@@ -3988,6 +4066,7 @@ module Aws::ElastiCache
|
|
3988
4066
|
:marker,
|
3989
4067
|
:max_records,
|
3990
4068
|
:show_node_group_config)
|
4069
|
+
SENSITIVE = []
|
3991
4070
|
include Aws::Structure
|
3992
4071
|
end
|
3993
4072
|
|
@@ -4068,6 +4147,7 @@ module Aws::ElastiCache
|
|
4068
4147
|
:show_node_level_update_status,
|
4069
4148
|
:max_records,
|
4070
4149
|
:marker)
|
4150
|
+
SENSITIVE = []
|
4071
4151
|
include Aws::Structure
|
4072
4152
|
end
|
4073
4153
|
|
@@ -4100,6 +4180,7 @@ module Aws::ElastiCache
|
|
4100
4180
|
:global_replication_group_id,
|
4101
4181
|
:replication_group_id,
|
4102
4182
|
:replication_group_region)
|
4183
|
+
SENSITIVE = []
|
4103
4184
|
include Aws::Structure
|
4104
4185
|
end
|
4105
4186
|
|
@@ -4120,6 +4201,7 @@ module Aws::ElastiCache
|
|
4120
4201
|
#
|
4121
4202
|
class DisassociateGlobalReplicationGroupResult < Struct.new(
|
4122
4203
|
:global_replication_group)
|
4204
|
+
SENSITIVE = []
|
4123
4205
|
include Aws::Structure
|
4124
4206
|
end
|
4125
4207
|
|
@@ -4144,6 +4226,7 @@ module Aws::ElastiCache
|
|
4144
4226
|
:status,
|
4145
4227
|
:ec2_security_group_name,
|
4146
4228
|
:ec2_security_group_owner_id)
|
4229
|
+
SENSITIVE = []
|
4147
4230
|
include Aws::Structure
|
4148
4231
|
end
|
4149
4232
|
|
@@ -4163,6 +4246,7 @@ module Aws::ElastiCache
|
|
4163
4246
|
class Endpoint < Struct.new(
|
4164
4247
|
:address,
|
4165
4248
|
:port)
|
4249
|
+
SENSITIVE = []
|
4166
4250
|
include Aws::Structure
|
4167
4251
|
end
|
4168
4252
|
|
@@ -4198,6 +4282,7 @@ module Aws::ElastiCache
|
|
4198
4282
|
:marker,
|
4199
4283
|
:parameters,
|
4200
4284
|
:cache_node_type_specific_parameters)
|
4285
|
+
SENSITIVE = []
|
4201
4286
|
include Aws::Structure
|
4202
4287
|
end
|
4203
4288
|
|
@@ -4231,6 +4316,7 @@ module Aws::ElastiCache
|
|
4231
4316
|
:source_type,
|
4232
4317
|
:message,
|
4233
4318
|
:date)
|
4319
|
+
SENSITIVE = []
|
4234
4320
|
include Aws::Structure
|
4235
4321
|
end
|
4236
4322
|
|
@@ -4250,6 +4336,7 @@ module Aws::ElastiCache
|
|
4250
4336
|
class EventsMessage < Struct.new(
|
4251
4337
|
:marker,
|
4252
4338
|
:events)
|
4339
|
+
SENSITIVE = []
|
4253
4340
|
include Aws::Structure
|
4254
4341
|
end
|
4255
4342
|
|
@@ -4280,6 +4367,7 @@ module Aws::ElastiCache
|
|
4280
4367
|
:global_replication_group_id,
|
4281
4368
|
:primary_region,
|
4282
4369
|
:primary_replication_group_id)
|
4370
|
+
SENSITIVE = []
|
4283
4371
|
include Aws::Structure
|
4284
4372
|
end
|
4285
4373
|
|
@@ -4300,6 +4388,7 @@ module Aws::ElastiCache
|
|
4300
4388
|
#
|
4301
4389
|
class FailoverGlobalReplicationGroupResult < Struct.new(
|
4302
4390
|
:global_replication_group)
|
4391
|
+
SENSITIVE = []
|
4303
4392
|
include Aws::Structure
|
4304
4393
|
end
|
4305
4394
|
|
@@ -4319,6 +4408,7 @@ module Aws::ElastiCache
|
|
4319
4408
|
class GlobalNodeGroup < Struct.new(
|
4320
4409
|
:global_node_group_id,
|
4321
4410
|
:slots)
|
4411
|
+
SENSITIVE = []
|
4322
4412
|
include Aws::Structure
|
4323
4413
|
end
|
4324
4414
|
|
@@ -4419,6 +4509,7 @@ module Aws::ElastiCache
|
|
4419
4509
|
:transit_encryption_enabled,
|
4420
4510
|
:at_rest_encryption_enabled,
|
4421
4511
|
:arn)
|
4512
|
+
SENSITIVE = []
|
4422
4513
|
include Aws::Structure
|
4423
4514
|
end
|
4424
4515
|
|
@@ -4445,6 +4536,7 @@ module Aws::ElastiCache
|
|
4445
4536
|
class GlobalReplicationGroupInfo < Struct.new(
|
4446
4537
|
:global_replication_group_id,
|
4447
4538
|
:global_replication_group_member_role)
|
4539
|
+
SENSITIVE = []
|
4448
4540
|
include Aws::Structure
|
4449
4541
|
end
|
4450
4542
|
|
@@ -4480,6 +4572,7 @@ module Aws::ElastiCache
|
|
4480
4572
|
:role,
|
4481
4573
|
:automatic_failover,
|
4482
4574
|
:status)
|
4575
|
+
SENSITIVE = []
|
4483
4576
|
include Aws::Structure
|
4484
4577
|
end
|
4485
4578
|
|
@@ -4536,6 +4629,7 @@ module Aws::ElastiCache
|
|
4536
4629
|
:node_group_count,
|
4537
4630
|
:regional_configurations,
|
4538
4631
|
:apply_immediately)
|
4632
|
+
SENSITIVE = []
|
4539
4633
|
include Aws::Structure
|
4540
4634
|
end
|
4541
4635
|
|
@@ -4556,6 +4650,7 @@ module Aws::ElastiCache
|
|
4556
4650
|
#
|
4557
4651
|
class IncreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
|
4558
4652
|
:global_replication_group)
|
4653
|
+
SENSITIVE = []
|
4559
4654
|
include Aws::Structure
|
4560
4655
|
end
|
4561
4656
|
|
@@ -4607,6 +4702,7 @@ module Aws::ElastiCache
|
|
4607
4702
|
:new_replica_count,
|
4608
4703
|
:replica_configuration,
|
4609
4704
|
:apply_immediately)
|
4705
|
+
SENSITIVE = []
|
4610
4706
|
include Aws::Structure
|
4611
4707
|
end
|
4612
4708
|
|
@@ -4619,6 +4715,7 @@ module Aws::ElastiCache
|
|
4619
4715
|
#
|
4620
4716
|
class IncreaseReplicaCountResult < Struct.new(
|
4621
4717
|
:replication_group)
|
4718
|
+
SENSITIVE = []
|
4622
4719
|
include Aws::Structure
|
4623
4720
|
end
|
4624
4721
|
|
@@ -4683,6 +4780,7 @@ module Aws::ElastiCache
|
|
4683
4780
|
#
|
4684
4781
|
class InvalidParameterCombinationException < Struct.new(
|
4685
4782
|
:message)
|
4783
|
+
SENSITIVE = []
|
4686
4784
|
include Aws::Structure
|
4687
4785
|
end
|
4688
4786
|
|
@@ -4696,6 +4794,7 @@ module Aws::ElastiCache
|
|
4696
4794
|
#
|
4697
4795
|
class InvalidParameterValueException < Struct.new(
|
4698
4796
|
:message)
|
4797
|
+
SENSITIVE = []
|
4699
4798
|
include Aws::Structure
|
4700
4799
|
end
|
4701
4800
|
|
@@ -4760,6 +4859,7 @@ module Aws::ElastiCache
|
|
4760
4859
|
class ListAllowedNodeTypeModificationsMessage < Struct.new(
|
4761
4860
|
:cache_cluster_id,
|
4762
4861
|
:replication_group_id)
|
4862
|
+
SENSITIVE = []
|
4763
4863
|
include Aws::Structure
|
4764
4864
|
end
|
4765
4865
|
|
@@ -4790,6 +4890,7 @@ module Aws::ElastiCache
|
|
4790
4890
|
#
|
4791
4891
|
class ListTagsForResourceMessage < Struct.new(
|
4792
4892
|
:resource_name)
|
4893
|
+
SENSITIVE = []
|
4793
4894
|
include Aws::Structure
|
4794
4895
|
end
|
4795
4896
|
|
@@ -5166,6 +5267,7 @@ module Aws::ElastiCache
|
|
5166
5267
|
:cache_node_type,
|
5167
5268
|
:auth_token,
|
5168
5269
|
:auth_token_update_strategy)
|
5270
|
+
SENSITIVE = []
|
5169
5271
|
include Aws::Structure
|
5170
5272
|
end
|
5171
5273
|
|
@@ -5177,6 +5279,7 @@ module Aws::ElastiCache
|
|
5177
5279
|
#
|
5178
5280
|
class ModifyCacheClusterResult < Struct.new(
|
5179
5281
|
:cache_cluster)
|
5282
|
+
SENSITIVE = []
|
5180
5283
|
include Aws::Structure
|
5181
5284
|
end
|
5182
5285
|
|
@@ -5211,6 +5314,7 @@ module Aws::ElastiCache
|
|
5211
5314
|
class ModifyCacheParameterGroupMessage < Struct.new(
|
5212
5315
|
:cache_parameter_group_name,
|
5213
5316
|
:parameter_name_values)
|
5317
|
+
SENSITIVE = []
|
5214
5318
|
include Aws::Structure
|
5215
5319
|
end
|
5216
5320
|
|
@@ -5249,6 +5353,7 @@ module Aws::ElastiCache
|
|
5249
5353
|
:cache_subnet_group_name,
|
5250
5354
|
:cache_subnet_group_description,
|
5251
5355
|
:subnet_ids)
|
5356
|
+
SENSITIVE = []
|
5252
5357
|
include Aws::Structure
|
5253
5358
|
end
|
5254
5359
|
|
@@ -5264,6 +5369,7 @@ module Aws::ElastiCache
|
|
5264
5369
|
#
|
5265
5370
|
class ModifyCacheSubnetGroupResult < Struct.new(
|
5266
5371
|
:cache_subnet_group)
|
5372
|
+
SENSITIVE = []
|
5267
5373
|
include Aws::Structure
|
5268
5374
|
end
|
5269
5375
|
|
@@ -5318,6 +5424,7 @@ module Aws::ElastiCache
|
|
5318
5424
|
:engine_version,
|
5319
5425
|
:global_replication_group_description,
|
5320
5426
|
:automatic_failover_enabled)
|
5427
|
+
SENSITIVE = []
|
5321
5428
|
include Aws::Structure
|
5322
5429
|
end
|
5323
5430
|
|
@@ -5338,6 +5445,7 @@ module Aws::ElastiCache
|
|
5338
5445
|
#
|
5339
5446
|
class ModifyGlobalReplicationGroupResult < Struct.new(
|
5340
5447
|
:global_replication_group)
|
5448
|
+
SENSITIVE = []
|
5341
5449
|
include Aws::Structure
|
5342
5450
|
end
|
5343
5451
|
|
@@ -5352,6 +5460,7 @@ module Aws::ElastiCache
|
|
5352
5460
|
# primary_cluster_id: "String",
|
5353
5461
|
# snapshotting_cluster_id: "String",
|
5354
5462
|
# automatic_failover_enabled: false,
|
5463
|
+
# multi_az_enabled: false,
|
5355
5464
|
# node_group_id: "String",
|
5356
5465
|
# cache_security_group_names: ["String"],
|
5357
5466
|
# security_group_ids: ["String"],
|
@@ -5396,15 +5505,16 @@ module Aws::ElastiCache
|
|
5396
5505
|
# read/write primary if the existing primary encounters a failure.
|
5397
5506
|
#
|
5398
5507
|
# Valid values: `true` \| `false`
|
5508
|
+
# @return [Boolean]
|
5399
5509
|
#
|
5400
|
-
#
|
5401
|
-
#
|
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].
|
5402
5514
|
#
|
5403
|
-
# * Redis versions earlier than 2.8.6.
|
5404
5515
|
#
|
5405
|
-
# * Redis (cluster mode disabled): T1 node types.
|
5406
5516
|
#
|
5407
|
-
#
|
5517
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
5408
5518
|
# @return [Boolean]
|
5409
5519
|
#
|
5410
5520
|
# @!attribute [rw] node_group_id
|
@@ -5586,6 +5696,7 @@ module Aws::ElastiCache
|
|
5586
5696
|
:primary_cluster_id,
|
5587
5697
|
:snapshotting_cluster_id,
|
5588
5698
|
:automatic_failover_enabled,
|
5699
|
+
:multi_az_enabled,
|
5589
5700
|
:node_group_id,
|
5590
5701
|
:cache_security_group_names,
|
5591
5702
|
:security_group_ids,
|
@@ -5601,6 +5712,7 @@ module Aws::ElastiCache
|
|
5601
5712
|
:cache_node_type,
|
5602
5713
|
:auth_token,
|
5603
5714
|
:auth_token_update_strategy)
|
5715
|
+
SENSITIVE = []
|
5604
5716
|
include Aws::Structure
|
5605
5717
|
end
|
5606
5718
|
|
@@ -5613,6 +5725,7 @@ module Aws::ElastiCache
|
|
5613
5725
|
#
|
5614
5726
|
class ModifyReplicationGroupResult < Struct.new(
|
5615
5727
|
:replication_group)
|
5728
|
+
SENSITIVE = []
|
5616
5729
|
include Aws::Structure
|
5617
5730
|
end
|
5618
5731
|
|
@@ -5694,6 +5807,7 @@ module Aws::ElastiCache
|
|
5694
5807
|
:resharding_configuration,
|
5695
5808
|
:node_groups_to_remove,
|
5696
5809
|
:node_groups_to_retain)
|
5810
|
+
SENSITIVE = []
|
5697
5811
|
include Aws::Structure
|
5698
5812
|
end
|
5699
5813
|
|
@@ -5706,6 +5820,7 @@ module Aws::ElastiCache
|
|
5706
5820
|
#
|
5707
5821
|
class ModifyReplicationGroupShardConfigurationResult < Struct.new(
|
5708
5822
|
:replication_group)
|
5823
|
+
SENSITIVE = []
|
5709
5824
|
include Aws::Structure
|
5710
5825
|
end
|
5711
5826
|
|
@@ -5729,7 +5844,7 @@ module Aws::ElastiCache
|
|
5729
5844
|
#
|
5730
5845
|
# @!attribute [rw] status
|
5731
5846
|
# The current state of this replication group - `creating`,
|
5732
|
-
# `available`,
|
5847
|
+
# `available`, `modifying`, `deleting`.
|
5733
5848
|
# @return [String]
|
5734
5849
|
#
|
5735
5850
|
# @!attribute [rw] primary_endpoint
|
@@ -5758,6 +5873,7 @@ module Aws::ElastiCache
|
|
5758
5873
|
:reader_endpoint,
|
5759
5874
|
:slots,
|
5760
5875
|
:node_group_members)
|
5876
|
+
SENSITIVE = []
|
5761
5877
|
include Aws::Structure
|
5762
5878
|
end
|
5763
5879
|
|
@@ -5812,6 +5928,7 @@ module Aws::ElastiCache
|
|
5812
5928
|
:replica_count,
|
5813
5929
|
:primary_availability_zone,
|
5814
5930
|
:replica_availability_zones)
|
5931
|
+
SENSITIVE = []
|
5815
5932
|
include Aws::Structure
|
5816
5933
|
end
|
5817
5934
|
|
@@ -5850,6 +5967,7 @@ module Aws::ElastiCache
|
|
5850
5967
|
:read_endpoint,
|
5851
5968
|
:preferred_availability_zone,
|
5852
5969
|
:current_role)
|
5970
|
+
SENSITIVE = []
|
5853
5971
|
include Aws::Structure
|
5854
5972
|
end
|
5855
5973
|
|
@@ -5904,6 +6022,7 @@ module Aws::ElastiCache
|
|
5904
6022
|
:node_update_initiated_by,
|
5905
6023
|
:node_update_initiated_date,
|
5906
6024
|
:node_update_status_modified_date)
|
6025
|
+
SENSITIVE = []
|
5907
6026
|
include Aws::Structure
|
5908
6027
|
end
|
5909
6028
|
|
@@ -5930,6 +6049,7 @@ module Aws::ElastiCache
|
|
5930
6049
|
class NodeGroupUpdateStatus < Struct.new(
|
5931
6050
|
:node_group_id,
|
5932
6051
|
:node_group_member_update_status)
|
6052
|
+
SENSITIVE = []
|
5933
6053
|
include Aws::Structure
|
5934
6054
|
end
|
5935
6055
|
|
@@ -5997,6 +6117,7 @@ module Aws::ElastiCache
|
|
5997
6117
|
:cache_size,
|
5998
6118
|
:cache_node_create_time,
|
5999
6119
|
:snapshot_create_time)
|
6120
|
+
SENSITIVE = []
|
6000
6121
|
include Aws::Structure
|
6001
6122
|
end
|
6002
6123
|
|
@@ -6017,6 +6138,7 @@ module Aws::ElastiCache
|
|
6017
6138
|
class NotificationConfiguration < Struct.new(
|
6018
6139
|
:topic_arn,
|
6019
6140
|
:topic_status)
|
6141
|
+
SENSITIVE = []
|
6020
6142
|
include Aws::Structure
|
6021
6143
|
end
|
6022
6144
|
|
@@ -6080,6 +6202,7 @@ module Aws::ElastiCache
|
|
6080
6202
|
:is_modifiable,
|
6081
6203
|
:minimum_engine_version,
|
6082
6204
|
:change_type)
|
6205
|
+
SENSITIVE = []
|
6083
6206
|
include Aws::Structure
|
6084
6207
|
end
|
6085
6208
|
|
@@ -6107,6 +6230,7 @@ module Aws::ElastiCache
|
|
6107
6230
|
class ParameterNameValue < Struct.new(
|
6108
6231
|
:parameter_name,
|
6109
6232
|
:parameter_value)
|
6233
|
+
SENSITIVE = []
|
6110
6234
|
include Aws::Structure
|
6111
6235
|
end
|
6112
6236
|
|
@@ -6147,6 +6271,7 @@ module Aws::ElastiCache
|
|
6147
6271
|
:engine_version,
|
6148
6272
|
:cache_node_type,
|
6149
6273
|
:auth_token_status)
|
6274
|
+
SENSITIVE = []
|
6150
6275
|
include Aws::Structure
|
6151
6276
|
end
|
6152
6277
|
|
@@ -6176,6 +6301,7 @@ module Aws::ElastiCache
|
|
6176
6301
|
:cache_cluster_id,
|
6177
6302
|
:service_update_name,
|
6178
6303
|
:update_action_status)
|
6304
|
+
SENSITIVE = []
|
6179
6305
|
include Aws::Structure
|
6180
6306
|
end
|
6181
6307
|
|
@@ -6222,6 +6348,7 @@ module Aws::ElastiCache
|
|
6222
6348
|
:reserved_cache_nodes_offering_id,
|
6223
6349
|
:reserved_cache_node_id,
|
6224
6350
|
:cache_node_count)
|
6351
|
+
SENSITIVE = []
|
6225
6352
|
include Aws::Structure
|
6226
6353
|
end
|
6227
6354
|
|
@@ -6234,6 +6361,7 @@ module Aws::ElastiCache
|
|
6234
6361
|
#
|
6235
6362
|
class PurchaseReservedCacheNodesOfferingResult < Struct.new(
|
6236
6363
|
:reserved_cache_node)
|
6364
|
+
SENSITIVE = []
|
6237
6365
|
include Aws::Structure
|
6238
6366
|
end
|
6239
6367
|
|
@@ -6258,6 +6386,7 @@ module Aws::ElastiCache
|
|
6258
6386
|
class RebalanceSlotsInGlobalReplicationGroupMessage < Struct.new(
|
6259
6387
|
:global_replication_group_id,
|
6260
6388
|
:apply_immediately)
|
6389
|
+
SENSITIVE = []
|
6261
6390
|
include Aws::Structure
|
6262
6391
|
end
|
6263
6392
|
|
@@ -6278,6 +6407,7 @@ module Aws::ElastiCache
|
|
6278
6407
|
#
|
6279
6408
|
class RebalanceSlotsInGlobalReplicationGroupResult < Struct.new(
|
6280
6409
|
:global_replication_group)
|
6410
|
+
SENSITIVE = []
|
6281
6411
|
include Aws::Structure
|
6282
6412
|
end
|
6283
6413
|
|
@@ -6307,6 +6437,7 @@ module Aws::ElastiCache
|
|
6307
6437
|
class RebootCacheClusterMessage < Struct.new(
|
6308
6438
|
:cache_cluster_id,
|
6309
6439
|
:cache_node_ids_to_reboot)
|
6440
|
+
SENSITIVE = []
|
6310
6441
|
include Aws::Structure
|
6311
6442
|
end
|
6312
6443
|
|
@@ -6318,6 +6449,7 @@ module Aws::ElastiCache
|
|
6318
6449
|
#
|
6319
6450
|
class RebootCacheClusterResult < Struct.new(
|
6320
6451
|
:cache_cluster)
|
6452
|
+
SENSITIVE = []
|
6321
6453
|
include Aws::Structure
|
6322
6454
|
end
|
6323
6455
|
|
@@ -6337,6 +6469,7 @@ module Aws::ElastiCache
|
|
6337
6469
|
class RecurringCharge < Struct.new(
|
6338
6470
|
:recurring_charge_amount,
|
6339
6471
|
:recurring_charge_frequency)
|
6472
|
+
SENSITIVE = []
|
6340
6473
|
include Aws::Structure
|
6341
6474
|
end
|
6342
6475
|
|
@@ -6375,6 +6508,7 @@ module Aws::ElastiCache
|
|
6375
6508
|
:replication_group_id,
|
6376
6509
|
:replication_group_region,
|
6377
6510
|
:resharding_configuration)
|
6511
|
+
SENSITIVE = []
|
6378
6512
|
include Aws::Structure
|
6379
6513
|
end
|
6380
6514
|
|
@@ -6412,6 +6546,7 @@ module Aws::ElastiCache
|
|
6412
6546
|
class RemoveTagsFromResourceMessage < Struct.new(
|
6413
6547
|
:resource_name,
|
6414
6548
|
:tag_keys)
|
6549
|
+
SENSITIVE = []
|
6415
6550
|
include Aws::Structure
|
6416
6551
|
end
|
6417
6552
|
|
@@ -6459,17 +6594,18 @@ module Aws::ElastiCache
|
|
6459
6594
|
# @return [String]
|
6460
6595
|
#
|
6461
6596
|
# @!attribute [rw] automatic_failover
|
6462
|
-
# Indicates the status of
|
6463
|
-
#
|
6597
|
+
# Indicates the status of automatic failover for this Redis
|
6598
|
+
# replication group.
|
6599
|
+
# @return [String]
|
6464
6600
|
#
|
6465
|
-
#
|
6466
|
-
#
|
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]
|
6467
6605
|
#
|
6468
|
-
# * Redis versions earlier than 2.8.6.
|
6469
6606
|
#
|
6470
|
-
# * Redis (cluster mode disabled): T1 node types.
|
6471
6607
|
#
|
6472
|
-
#
|
6608
|
+
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
6473
6609
|
# @return [String]
|
6474
6610
|
#
|
6475
6611
|
# @!attribute [rw] configuration_endpoint
|
@@ -6573,6 +6709,7 @@ module Aws::ElastiCache
|
|
6573
6709
|
:node_groups,
|
6574
6710
|
:snapshotting_cluster_id,
|
6575
6711
|
:automatic_failover,
|
6712
|
+
:multi_az,
|
6576
6713
|
:configuration_endpoint,
|
6577
6714
|
:snapshot_retention_limit,
|
6578
6715
|
:snapshot_window,
|
@@ -6584,6 +6721,7 @@ module Aws::ElastiCache
|
|
6584
6721
|
:at_rest_encryption_enabled,
|
6585
6722
|
:kms_key_id,
|
6586
6723
|
:arn)
|
6724
|
+
SENSITIVE = []
|
6587
6725
|
include Aws::Structure
|
6588
6726
|
end
|
6589
6727
|
|
@@ -6615,6 +6753,7 @@ module Aws::ElastiCache
|
|
6615
6753
|
class ReplicationGroupMessage < Struct.new(
|
6616
6754
|
:marker,
|
6617
6755
|
:replication_groups)
|
6756
|
+
SENSITIVE = []
|
6618
6757
|
include Aws::Structure
|
6619
6758
|
end
|
6620
6759
|
|
@@ -6640,17 +6779,8 @@ module Aws::ElastiCache
|
|
6640
6779
|
# @return [String]
|
6641
6780
|
#
|
6642
6781
|
# @!attribute [rw] automatic_failover_status
|
6643
|
-
# Indicates the status of
|
6644
|
-
#
|
6645
|
-
#
|
6646
|
-
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
6647
|
-
# automatic failover on:
|
6648
|
-
#
|
6649
|
-
# * Redis versions earlier than 2.8.6.
|
6650
|
-
#
|
6651
|
-
# * Redis (cluster mode disabled): T1 node types.
|
6652
|
-
#
|
6653
|
-
# * Redis (cluster mode enabled): T1 node types.
|
6782
|
+
# Indicates the status of automatic failover for this Redis
|
6783
|
+
# replication group.
|
6654
6784
|
# @return [String]
|
6655
6785
|
#
|
6656
6786
|
# @!attribute [rw] resharding
|
@@ -6668,6 +6798,7 @@ module Aws::ElastiCache
|
|
6668
6798
|
:automatic_failover_status,
|
6669
6799
|
:resharding,
|
6670
6800
|
:auth_token_status)
|
6801
|
+
SENSITIVE = []
|
6671
6802
|
include Aws::Structure
|
6672
6803
|
end
|
6673
6804
|
|
@@ -6817,6 +6948,7 @@ module Aws::ElastiCache
|
|
6817
6948
|
:state,
|
6818
6949
|
:recurring_charges,
|
6819
6950
|
:reservation_arn)
|
6951
|
+
SENSITIVE = []
|
6820
6952
|
include Aws::Structure
|
6821
6953
|
end
|
6822
6954
|
|
@@ -6842,6 +6974,7 @@ module Aws::ElastiCache
|
|
6842
6974
|
class ReservedCacheNodeMessage < Struct.new(
|
6843
6975
|
:marker,
|
6844
6976
|
:reserved_cache_nodes)
|
6977
|
+
SENSITIVE = []
|
6845
6978
|
include Aws::Structure
|
6846
6979
|
end
|
6847
6980
|
|
@@ -6975,6 +7108,7 @@ module Aws::ElastiCache
|
|
6975
7108
|
:product_description,
|
6976
7109
|
:offering_type,
|
6977
7110
|
:recurring_charges)
|
7111
|
+
SENSITIVE = []
|
6978
7112
|
include Aws::Structure
|
6979
7113
|
end
|
6980
7114
|
|
@@ -6995,6 +7129,7 @@ module Aws::ElastiCache
|
|
6995
7129
|
class ReservedCacheNodesOfferingMessage < Struct.new(
|
6996
7130
|
:marker,
|
6997
7131
|
:reserved_cache_nodes_offerings)
|
7132
|
+
SENSITIVE = []
|
6998
7133
|
include Aws::Structure
|
6999
7134
|
end
|
7000
7135
|
|
@@ -7045,6 +7180,7 @@ module Aws::ElastiCache
|
|
7045
7180
|
:cache_parameter_group_name,
|
7046
7181
|
:reset_all_parameters,
|
7047
7182
|
:parameter_name_values)
|
7183
|
+
SENSITIVE = []
|
7048
7184
|
include Aws::Structure
|
7049
7185
|
end
|
7050
7186
|
|
@@ -7074,6 +7210,7 @@ module Aws::ElastiCache
|
|
7074
7210
|
class ReshardingConfiguration < Struct.new(
|
7075
7211
|
:node_group_id,
|
7076
7212
|
:preferred_availability_zones)
|
7213
|
+
SENSITIVE = []
|
7077
7214
|
include Aws::Structure
|
7078
7215
|
end
|
7079
7216
|
|
@@ -7087,6 +7224,7 @@ module Aws::ElastiCache
|
|
7087
7224
|
#
|
7088
7225
|
class ReshardingStatus < Struct.new(
|
7089
7226
|
:slot_migration)
|
7227
|
+
SENSITIVE = []
|
7090
7228
|
include Aws::Structure
|
7091
7229
|
end
|
7092
7230
|
|
@@ -7121,6 +7259,7 @@ module Aws::ElastiCache
|
|
7121
7259
|
:cache_security_group_name,
|
7122
7260
|
:ec2_security_group_name,
|
7123
7261
|
:ec2_security_group_owner_id)
|
7262
|
+
SENSITIVE = []
|
7124
7263
|
include Aws::Structure
|
7125
7264
|
end
|
7126
7265
|
|
@@ -7138,6 +7277,7 @@ module Aws::ElastiCache
|
|
7138
7277
|
#
|
7139
7278
|
class RevokeCacheSecurityGroupIngressResult < Struct.new(
|
7140
7279
|
:cache_security_group)
|
7280
|
+
SENSITIVE = []
|
7141
7281
|
include Aws::Structure
|
7142
7282
|
end
|
7143
7283
|
|
@@ -7158,6 +7298,7 @@ module Aws::ElastiCache
|
|
7158
7298
|
class SecurityGroupMembership < Struct.new(
|
7159
7299
|
:security_group_id,
|
7160
7300
|
:status)
|
7301
|
+
SENSITIVE = []
|
7161
7302
|
include Aws::Structure
|
7162
7303
|
end
|
7163
7304
|
|
@@ -7241,6 +7382,7 @@ module Aws::ElastiCache
|
|
7241
7382
|
:engine_version,
|
7242
7383
|
:auto_update_after_recommended_apply_by_date,
|
7243
7384
|
:estimated_update_time)
|
7385
|
+
SENSITIVE = []
|
7244
7386
|
include Aws::Structure
|
7245
7387
|
end
|
7246
7388
|
|
@@ -7266,6 +7408,7 @@ module Aws::ElastiCache
|
|
7266
7408
|
class ServiceUpdatesMessage < Struct.new(
|
7267
7409
|
:marker,
|
7268
7410
|
:service_updates)
|
7411
|
+
SENSITIVE = []
|
7269
7412
|
include Aws::Structure
|
7270
7413
|
end
|
7271
7414
|
|
@@ -7279,6 +7422,7 @@ module Aws::ElastiCache
|
|
7279
7422
|
#
|
7280
7423
|
class SlotMigration < Struct.new(
|
7281
7424
|
:progress_percentage)
|
7425
|
+
SENSITIVE = []
|
7282
7426
|
include Aws::Structure
|
7283
7427
|
end
|
7284
7428
|
|
@@ -7495,17 +7639,8 @@ module Aws::ElastiCache
|
|
7495
7639
|
# @return [Integer]
|
7496
7640
|
#
|
7497
7641
|
# @!attribute [rw] automatic_failover
|
7498
|
-
# Indicates the status of
|
7499
|
-
#
|
7500
|
-
#
|
7501
|
-
# Amazon ElastiCache for Redis does not support Multi-AZ with
|
7502
|
-
# automatic failover on:
|
7503
|
-
#
|
7504
|
-
# * Redis versions earlier than 2.8.6.
|
7505
|
-
#
|
7506
|
-
# * Redis (cluster mode disabled): T1 node types.
|
7507
|
-
#
|
7508
|
-
# * Redis (cluster mode enabled): T1 node types.
|
7642
|
+
# Indicates the status of automatic failover for the source Redis
|
7643
|
+
# replication group.
|
7509
7644
|
# @return [String]
|
7510
7645
|
#
|
7511
7646
|
# @!attribute [rw] node_snapshots
|
@@ -7549,6 +7684,7 @@ module Aws::ElastiCache
|
|
7549
7684
|
:node_snapshots,
|
7550
7685
|
:kms_key_id,
|
7551
7686
|
:arn)
|
7687
|
+
SENSITIVE = []
|
7552
7688
|
include Aws::Structure
|
7553
7689
|
end
|
7554
7690
|
|
@@ -7612,6 +7748,7 @@ module Aws::ElastiCache
|
|
7612
7748
|
class StartMigrationMessage < Struct.new(
|
7613
7749
|
:replication_group_id,
|
7614
7750
|
:customer_node_endpoint_list)
|
7751
|
+
SENSITIVE = []
|
7615
7752
|
include Aws::Structure
|
7616
7753
|
end
|
7617
7754
|
|
@@ -7624,6 +7761,7 @@ module Aws::ElastiCache
|
|
7624
7761
|
#
|
7625
7762
|
class StartMigrationResponse < Struct.new(
|
7626
7763
|
:replication_group)
|
7764
|
+
SENSITIVE = []
|
7627
7765
|
include Aws::Structure
|
7628
7766
|
end
|
7629
7767
|
|
@@ -7644,6 +7782,7 @@ module Aws::ElastiCache
|
|
7644
7782
|
class Subnet < Struct.new(
|
7645
7783
|
:subnet_identifier,
|
7646
7784
|
:subnet_availability_zone)
|
7785
|
+
SENSITIVE = []
|
7647
7786
|
include Aws::Structure
|
7648
7787
|
end
|
7649
7788
|
|
@@ -7678,6 +7817,7 @@ module Aws::ElastiCache
|
|
7678
7817
|
class Tag < Struct.new(
|
7679
7818
|
:key,
|
7680
7819
|
:value)
|
7820
|
+
SENSITIVE = []
|
7681
7821
|
include Aws::Structure
|
7682
7822
|
end
|
7683
7823
|
|
@@ -7692,6 +7832,7 @@ module Aws::ElastiCache
|
|
7692
7832
|
#
|
7693
7833
|
class TagListMessage < Struct.new(
|
7694
7834
|
:tag_list)
|
7835
|
+
SENSITIVE = []
|
7695
7836
|
include Aws::Structure
|
7696
7837
|
end
|
7697
7838
|
|
@@ -7734,6 +7875,7 @@ module Aws::ElastiCache
|
|
7734
7875
|
class TestFailoverMessage < Struct.new(
|
7735
7876
|
:replication_group_id,
|
7736
7877
|
:node_group_id)
|
7878
|
+
SENSITIVE = []
|
7737
7879
|
include Aws::Structure
|
7738
7880
|
end
|
7739
7881
|
|
@@ -7752,6 +7894,7 @@ module Aws::ElastiCache
|
|
7752
7894
|
#
|
7753
7895
|
class TestFailoverResult < Struct.new(
|
7754
7896
|
:replication_group)
|
7897
|
+
SENSITIVE = []
|
7755
7898
|
include Aws::Structure
|
7756
7899
|
end
|
7757
7900
|
|
@@ -7779,6 +7922,7 @@ module Aws::ElastiCache
|
|
7779
7922
|
class TimeRangeFilter < Struct.new(
|
7780
7923
|
:start_time,
|
7781
7924
|
:end_time)
|
7925
|
+
SENSITIVE = []
|
7782
7926
|
include Aws::Structure
|
7783
7927
|
end
|
7784
7928
|
|
@@ -7814,6 +7958,7 @@ module Aws::ElastiCache
|
|
7814
7958
|
:service_update_name,
|
7815
7959
|
:error_type,
|
7816
7960
|
:error_message)
|
7961
|
+
SENSITIVE = []
|
7817
7962
|
include Aws::Structure
|
7818
7963
|
end
|
7819
7964
|
|
@@ -7918,6 +8063,7 @@ module Aws::ElastiCache
|
|
7918
8063
|
:cache_node_update_status,
|
7919
8064
|
:estimated_update_time,
|
7920
8065
|
:engine)
|
8066
|
+
SENSITIVE = []
|
7921
8067
|
include Aws::Structure
|
7922
8068
|
end
|
7923
8069
|
|
@@ -7934,6 +8080,7 @@ module Aws::ElastiCache
|
|
7934
8080
|
class UpdateActionResultsMessage < Struct.new(
|
7935
8081
|
:processed_update_actions,
|
7936
8082
|
:unprocessed_update_actions)
|
8083
|
+
SENSITIVE = []
|
7937
8084
|
include Aws::Structure
|
7938
8085
|
end
|
7939
8086
|
|
@@ -7953,6 +8100,7 @@ module Aws::ElastiCache
|
|
7953
8100
|
class UpdateActionsMessage < Struct.new(
|
7954
8101
|
:marker,
|
7955
8102
|
:update_actions)
|
8103
|
+
SENSITIVE = []
|
7956
8104
|
include Aws::Structure
|
7957
8105
|
end
|
7958
8106
|
|