aws-sdk-elasticache 1.38.0 → 1.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68a773d54dfe4a2219a00d0a038a8f741e7bd42ca7dcaeeb7f584e1aceb3ff9d
4
- data.tar.gz: 9e0c9d9fc7dd0012ed6f6614382ddbfa19ada888b5c42b61b6ab49e3b0327be8
3
+ metadata.gz: 7b528b4abd764f3f7c82f3ed814a026707e54bf265e9d1f29306667212d219df
4
+ data.tar.gz: 5ea90193ddded0a4d2e1a5ebe03da3bda79a21653c86892088dab5617915040b
5
5
  SHA512:
6
- metadata.gz: da0e50efc093a4216b547fa47df94f4b245d9215c597a51f45826377dd1e35874f584b771f8092c9d150edbe32864a389e8a3c2d5e8034ced7baf1e12af8f4ec
7
- data.tar.gz: 24c5b8871f37c8af24fa61a8caf2c741bad3b959fe5a226fbcada1be9e28d1db7768146b4e48097aa8ca0afc122059f94b706863a0f2a615a4fdbaf040e03984
6
+ metadata.gz: 90955b6f7514fb429ddcf574dcfe1259733dcfb41536c47d098ce18c49155f29d0635d474f1285a48352cccfacc5dbeb2db8c0c9caec40b545acc512ee3a08e3
7
+ data.tar.gz: c60ec41faabac14e107f538ae008d1bb748f01b8af7ba25eca4f17cdcc381b05c2f5294fa725d381037a5095e5564105c11a0af42c2ed1671db9991e0a8e16cc
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -45,9 +46,9 @@ require_relative 'aws-sdk-elasticache/customizations'
45
46
  #
46
47
  # See {Errors} for more information.
47
48
  #
48
- # @service
49
+ # @!group service
49
50
  module Aws::ElastiCache
50
51
 
51
- GEM_VERSION = '1.38.0'
52
+ GEM_VERSION = '1.43.0'
52
53
 
53
54
  end
@@ -85,13 +85,28 @@ module Aws::ElastiCache
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::ElastiCache
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -1715,12 +1730,10 @@ module Aws::ElastiCache
1715
1730
  #
1716
1731
  # When a Redis (cluster mode disabled) replication group has been
1717
1732
  # successfully created, you can add one or more read replicas to it, up
1718
- # to a total of 5 read replicas. You cannot alter a Redis (cluster mode
1719
- # enabled) replication group after it has been created. However, if you
1720
- # need to increase or decrease the number of node groups (console:
1721
- # shards), you can avail yourself of ElastiCache for Redis' enhanced
1722
- # backup and restore. For more information, see [Restoring From a Backup
1723
- # with Cluster Resizing][1] in the *ElastiCache User Guide*.
1733
+ # to a total of 5 read replicas. If you need to increase or decrease the
1734
+ # number of node groups (console: shards), you can avail yourself of
1735
+ # ElastiCache for Redis' scaling. For more information, see [Scaling
1736
+ # ElastiCache for Redis Clusters][1] in the *ElastiCache User Guide*.
1724
1737
  #
1725
1738
  # <note markdown="1"> This operation is valid for Redis only.
1726
1739
  #
@@ -1728,7 +1741,7 @@ module Aws::ElastiCache
1728
1741
  #
1729
1742
  #
1730
1743
  #
1731
- # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-restoring.html
1744
+ # [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Scaling.html
1732
1745
  #
1733
1746
  # @option params [required, String] :replication_group_id
1734
1747
  # The replication group identifier. This parameter is stored as a
@@ -1765,15 +1778,6 @@ module Aws::ElastiCache
1765
1778
  #
1766
1779
  # Default: false
1767
1780
  #
1768
- # Amazon ElastiCache for Redis does not support Multi-AZ with automatic
1769
- # failover on:
1770
- #
1771
- # * Redis versions earlier than 2.8.6.
1772
- #
1773
- # * Redis (cluster mode disabled): T1 node types.
1774
- #
1775
- # * Redis (cluster mode enabled): T1 node types.
1776
- #
1777
1781
  # @option params [Boolean] :multi_az_enabled
1778
1782
  # A flag indicating if you have Multi-AZ enabled to enhance fault
1779
1783
  # tolerance. For more information, see [Minimizing Downtime:
@@ -2634,9 +2638,9 @@ module Aws::ElastiCache
2634
2638
  #
2635
2639
  # * Redis (cluster mode disabled)
2636
2640
  #
2637
- # * If Multi-AZ with Automatic Failover is enabled: 1
2641
+ # * If Multi-AZ is enabled: 1
2638
2642
  #
2639
- # * If Multi-AZ with Automatic Failover is not enabled: 0
2643
+ # * If Multi-AZ is not enabled: 0
2640
2644
  #
2641
2645
  # * Redis (cluster mode enabled): 0 (though you will not be able to
2642
2646
  # failover to a replica if your primary node fails)
@@ -7796,15 +7800,6 @@ module Aws::ElastiCache
7796
7800
  #
7797
7801
  # Valid values: `true` \| `false`
7798
7802
  #
7799
- # Amazon ElastiCache for Redis does not support Multi-AZ with automatic
7800
- # failover on:
7801
- #
7802
- # * Redis versions earlier than 2.8.6.
7803
- #
7804
- # * Redis (cluster mode disabled): T1 node types.
7805
- #
7806
- # * Redis (cluster mode enabled): T1 node types.
7807
- #
7808
7803
  # @option params [Boolean] :multi_az_enabled
7809
7804
  # A flag indicating if you have Multi-AZ enabled to enhance fault
7810
7805
  # tolerance. For more information, see [Minimizing Downtime:
@@ -8848,8 +8843,7 @@ module Aws::ElastiCache
8848
8843
  #
8849
8844
  # * [DescribeEvents][2] in the ElastiCache API Reference
8850
8845
  #
8851
- # Also see, [Testing Multi-AZ with Automatic Failover][3] in the
8852
- # *ElastiCache User Guide*.
8846
+ # Also see, [Testing Multi-AZ ][3] in the *ElastiCache User Guide*.
8853
8847
  #
8854
8848
  #
8855
8849
  #
@@ -8944,7 +8938,7 @@ module Aws::ElastiCache
8944
8938
  params: params,
8945
8939
  config: config)
8946
8940
  context[:gem_name] = 'aws-sdk-elasticache'
8947
- context[:gem_version] = '1.38.0'
8941
+ context[:gem_version] = '1.43.0'
8948
8942
  Seahorse::Client::Request.new(handlers, context)
8949
8943
  end
8950
8944
 
@@ -56,6 +56,7 @@ module Aws::ElastiCache
56
56
  class AddTagsToResourceMessage < Struct.new(
57
57
  :resource_name,
58
58
  :tags)
59
+ SENSITIVE = []
59
60
  include Aws::Structure
60
61
  end
61
62
 
@@ -84,6 +85,7 @@ module Aws::ElastiCache
84
85
  class AllowedNodeTypeModificationsMessage < Struct.new(
85
86
  :scale_up_modifications,
86
87
  :scale_down_modifications)
88
+ SENSITIVE = []
87
89
  include Aws::Structure
88
90
  end
89
91
 
@@ -134,6 +136,7 @@ module Aws::ElastiCache
134
136
  :cache_security_group_name,
135
137
  :ec2_security_group_name,
136
138
  :ec2_security_group_owner_id)
139
+ SENSITIVE = []
137
140
  include Aws::Structure
138
141
  end
139
142
 
@@ -151,6 +154,7 @@ module Aws::ElastiCache
151
154
  #
152
155
  class AuthorizeCacheSecurityGroupIngressResult < Struct.new(
153
156
  :cache_security_group)
157
+ SENSITIVE = []
154
158
  include Aws::Structure
155
159
  end
156
160
 
@@ -164,6 +168,7 @@ module Aws::ElastiCache
164
168
  #
165
169
  class AvailabilityZone < Struct.new(
166
170
  :name)
171
+ SENSITIVE = []
167
172
  include Aws::Structure
168
173
  end
169
174
 
@@ -194,6 +199,7 @@ module Aws::ElastiCache
194
199
  :replication_group_ids,
195
200
  :cache_cluster_ids,
196
201
  :service_update_name)
202
+ SENSITIVE = []
197
203
  include Aws::Structure
198
204
  end
199
205
 
@@ -224,6 +230,7 @@ module Aws::ElastiCache
224
230
  :replication_group_ids,
225
231
  :cache_cluster_ids,
226
232
  :service_update_name)
233
+ SENSITIVE = []
227
234
  include Aws::Structure
228
235
  end
229
236
 
@@ -514,6 +521,7 @@ module Aws::ElastiCache
514
521
  :transit_encryption_enabled,
515
522
  :at_rest_encryption_enabled,
516
523
  :arn)
524
+ SENSITIVE = []
517
525
  include Aws::Structure
518
526
  end
519
527
 
@@ -539,6 +547,7 @@ module Aws::ElastiCache
539
547
  class CacheClusterMessage < Struct.new(
540
548
  :marker,
541
549
  :cache_clusters)
550
+ SENSITIVE = []
542
551
  include Aws::Structure
543
552
  end
544
553
 
@@ -582,6 +591,7 @@ module Aws::ElastiCache
582
591
  :cache_parameter_group_family,
583
592
  :cache_engine_description,
584
593
  :cache_engine_version_description)
594
+ SENSITIVE = []
585
595
  include Aws::Structure
586
596
  end
587
597
 
@@ -601,6 +611,7 @@ module Aws::ElastiCache
601
611
  class CacheEngineVersionMessage < Struct.new(
602
612
  :marker,
603
613
  :cache_engine_versions)
614
+ SENSITIVE = []
604
615
  include Aws::Structure
605
616
  end
606
617
 
@@ -723,6 +734,7 @@ module Aws::ElastiCache
723
734
  :parameter_group_status,
724
735
  :source_cache_node_id,
725
736
  :customer_availability_zone)
737
+ SENSITIVE = []
726
738
  include Aws::Structure
727
739
  end
728
740
 
@@ -789,6 +801,7 @@ module Aws::ElastiCache
789
801
  :minimum_engine_version,
790
802
  :cache_node_type_specific_values,
791
803
  :change_type)
804
+ SENSITIVE = []
792
805
  include Aws::Structure
793
806
  end
794
807
 
@@ -807,6 +820,7 @@ module Aws::ElastiCache
807
820
  class CacheNodeTypeSpecificValue < Struct.new(
808
821
  :cache_node_type,
809
822
  :value)
823
+ SENSITIVE = []
810
824
  include Aws::Structure
811
825
  end
812
826
 
@@ -856,6 +870,7 @@ module Aws::ElastiCache
856
870
  :node_update_initiated_by,
857
871
  :node_update_initiated_date,
858
872
  :node_update_status_modified_date)
873
+ SENSITIVE = []
859
874
  include Aws::Structure
860
875
  end
861
876
 
@@ -894,6 +909,7 @@ module Aws::ElastiCache
894
909
  :description,
895
910
  :is_global,
896
911
  :arn)
912
+ SENSITIVE = []
897
913
  include Aws::Structure
898
914
  end
899
915
 
@@ -925,6 +941,7 @@ module Aws::ElastiCache
925
941
  :marker,
926
942
  :parameters,
927
943
  :cache_node_type_specific_parameters)
944
+ SENSITIVE = []
928
945
  include Aws::Structure
929
946
  end
930
947
 
@@ -942,6 +959,7 @@ module Aws::ElastiCache
942
959
  #
943
960
  class CacheParameterGroupNameMessage < Struct.new(
944
961
  :cache_parameter_group_name)
962
+ SENSITIVE = []
945
963
  include Aws::Structure
946
964
  end
947
965
 
@@ -981,6 +999,7 @@ module Aws::ElastiCache
981
999
  :cache_parameter_group_name,
982
1000
  :parameter_apply_status,
983
1001
  :cache_node_ids_to_reboot)
1002
+ SENSITIVE = []
984
1003
  include Aws::Structure
985
1004
  end
986
1005
 
@@ -1000,6 +1019,7 @@ module Aws::ElastiCache
1000
1019
  class CacheParameterGroupsMessage < Struct.new(
1001
1020
  :marker,
1002
1021
  :cache_parameter_groups)
1022
+ SENSITIVE = []
1003
1023
  include Aws::Structure
1004
1024
  end
1005
1025
 
@@ -1040,6 +1060,7 @@ module Aws::ElastiCache
1040
1060
  :description,
1041
1061
  :ec2_security_groups,
1042
1062
  :arn)
1063
+ SENSITIVE = []
1043
1064
  include Aws::Structure
1044
1065
  end
1045
1066
 
@@ -1067,6 +1088,7 @@ module Aws::ElastiCache
1067
1088
  class CacheSecurityGroupMembership < Struct.new(
1068
1089
  :cache_security_group_name,
1069
1090
  :status)
1091
+ SENSITIVE = []
1070
1092
  include Aws::Structure
1071
1093
  end
1072
1094
 
@@ -1086,6 +1108,7 @@ module Aws::ElastiCache
1086
1108
  class CacheSecurityGroupMessage < Struct.new(
1087
1109
  :marker,
1088
1110
  :cache_security_groups)
1111
+ SENSITIVE = []
1089
1112
  include Aws::Structure
1090
1113
  end
1091
1114
 
@@ -1138,6 +1161,7 @@ module Aws::ElastiCache
1138
1161
  :vpc_id,
1139
1162
  :subnets,
1140
1163
  :arn)
1164
+ SENSITIVE = []
1141
1165
  include Aws::Structure
1142
1166
  end
1143
1167
 
@@ -1170,6 +1194,7 @@ module Aws::ElastiCache
1170
1194
  class CacheSubnetGroupMessage < Struct.new(
1171
1195
  :marker,
1172
1196
  :cache_subnet_groups)
1197
+ SENSITIVE = []
1173
1198
  include Aws::Structure
1174
1199
  end
1175
1200
 
@@ -1225,6 +1250,7 @@ module Aws::ElastiCache
1225
1250
  class CompleteMigrationMessage < Struct.new(
1226
1251
  :replication_group_id,
1227
1252
  :force)
1253
+ SENSITIVE = []
1228
1254
  include Aws::Structure
1229
1255
  end
1230
1256
 
@@ -1237,6 +1263,7 @@ module Aws::ElastiCache
1237
1263
  #
1238
1264
  class CompleteMigrationResponse < Struct.new(
1239
1265
  :replication_group)
1266
+ SENSITIVE = []
1240
1267
  include Aws::Structure
1241
1268
  end
1242
1269
 
@@ -1274,9 +1301,9 @@ module Aws::ElastiCache
1274
1301
  #
1275
1302
  # * Redis (cluster mode disabled)
1276
1303
  #
1277
- # * If Multi-AZ with Automatic Failover is enabled: 1
1304
+ # * If Multi-AZ: 1
1278
1305
  #
1279
- # * If Multi-AZ with Automatic Failover is not enable: 0
1306
+ # * If Multi-AZ: 0
1280
1307
  #
1281
1308
  # * Redis (cluster mode enabled): 0 (though you will not be able to
1282
1309
  # failover to a replica if your primary node fails)
@@ -1297,6 +1324,7 @@ module Aws::ElastiCache
1297
1324
  :node_group_id,
1298
1325
  :new_replica_count,
1299
1326
  :preferred_availability_zones)
1327
+ SENSITIVE = []
1300
1328
  include Aws::Structure
1301
1329
  end
1302
1330
 
@@ -1352,6 +1380,7 @@ module Aws::ElastiCache
1352
1380
  :target_snapshot_name,
1353
1381
  :target_bucket,
1354
1382
  :kms_key_id)
1383
+ SENSITIVE = []
1355
1384
  include Aws::Structure
1356
1385
  end
1357
1386
 
@@ -1364,6 +1393,7 @@ module Aws::ElastiCache
1364
1393
  #
1365
1394
  class CopySnapshotResult < Struct.new(
1366
1395
  :snapshot)
1396
+ SENSITIVE = []
1367
1397
  include Aws::Structure
1368
1398
  end
1369
1399
 
@@ -1781,6 +1811,7 @@ module Aws::ElastiCache
1781
1811
  :snapshot_retention_limit,
1782
1812
  :snapshot_window,
1783
1813
  :auth_token)
1814
+ SENSITIVE = []
1784
1815
  include Aws::Structure
1785
1816
  end
1786
1817
 
@@ -1792,6 +1823,7 @@ module Aws::ElastiCache
1792
1823
  #
1793
1824
  class CreateCacheClusterResult < Struct.new(
1794
1825
  :cache_cluster)
1826
+ SENSITIVE = []
1795
1827
  include Aws::Structure
1796
1828
  end
1797
1829
 
@@ -1828,6 +1860,7 @@ module Aws::ElastiCache
1828
1860
  :cache_parameter_group_name,
1829
1861
  :cache_parameter_group_family,
1830
1862
  :description)
1863
+ SENSITIVE = []
1831
1864
  include Aws::Structure
1832
1865
  end
1833
1866
 
@@ -1839,6 +1872,7 @@ module Aws::ElastiCache
1839
1872
  #
1840
1873
  class CreateCacheParameterGroupResult < Struct.new(
1841
1874
  :cache_parameter_group)
1875
+ SENSITIVE = []
1842
1876
  include Aws::Structure
1843
1877
  end
1844
1878
 
@@ -1871,6 +1905,7 @@ module Aws::ElastiCache
1871
1905
  class CreateCacheSecurityGroupMessage < Struct.new(
1872
1906
  :cache_security_group_name,
1873
1907
  :description)
1908
+ SENSITIVE = []
1874
1909
  include Aws::Structure
1875
1910
  end
1876
1911
 
@@ -1888,6 +1923,7 @@ module Aws::ElastiCache
1888
1923
  #
1889
1924
  class CreateCacheSecurityGroupResult < Struct.new(
1890
1925
  :cache_security_group)
1926
+ SENSITIVE = []
1891
1927
  include Aws::Structure
1892
1928
  end
1893
1929
 
@@ -1926,6 +1962,7 @@ module Aws::ElastiCache
1926
1962
  :cache_subnet_group_name,
1927
1963
  :cache_subnet_group_description,
1928
1964
  :subnet_ids)
1965
+ SENSITIVE = []
1929
1966
  include Aws::Structure
1930
1967
  end
1931
1968
 
@@ -1941,6 +1978,7 @@ module Aws::ElastiCache
1941
1978
  #
1942
1979
  class CreateCacheSubnetGroupResult < Struct.new(
1943
1980
  :cache_subnet_group)
1981
+ SENSITIVE = []
1944
1982
  include Aws::Structure
1945
1983
  end
1946
1984
 
@@ -1973,6 +2011,7 @@ module Aws::ElastiCache
1973
2011
  :global_replication_group_id_suffix,
1974
2012
  :global_replication_group_description,
1975
2013
  :primary_replication_group_id)
2014
+ SENSITIVE = []
1976
2015
  include Aws::Structure
1977
2016
  end
1978
2017
 
@@ -1993,6 +2032,7 @@ module Aws::ElastiCache
1993
2032
  #
1994
2033
  class CreateGlobalReplicationGroupResult < Struct.new(
1995
2034
  :global_replication_group)
2035
+ SENSITIVE = []
1996
2036
  include Aws::Structure
1997
2037
  end
1998
2038
 
@@ -2088,15 +2128,6 @@ module Aws::ElastiCache
2088
2128
  # enabled) replication groups.
2089
2129
  #
2090
2130
  # Default: false
2091
- #
2092
- # Amazon ElastiCache for Redis does not support Multi-AZ with
2093
- # automatic failover on:
2094
- #
2095
- # * Redis versions earlier than 2.8.6.
2096
- #
2097
- # * Redis (cluster mode disabled): T1 node types.
2098
- #
2099
- # * Redis (cluster mode enabled): T1 node types.
2100
2131
  # @return [Boolean]
2101
2132
  #
2102
2133
  # @!attribute [rw] multi_az_enabled
@@ -2520,6 +2551,7 @@ module Aws::ElastiCache
2520
2551
  :transit_encryption_enabled,
2521
2552
  :at_rest_encryption_enabled,
2522
2553
  :kms_key_id)
2554
+ SENSITIVE = []
2523
2555
  include Aws::Structure
2524
2556
  end
2525
2557
 
@@ -2532,6 +2564,7 @@ module Aws::ElastiCache
2532
2564
  #
2533
2565
  class CreateReplicationGroupResult < Struct.new(
2534
2566
  :replication_group)
2567
+ SENSITIVE = []
2535
2568
  include Aws::Structure
2536
2569
  end
2537
2570
 
@@ -2572,6 +2605,7 @@ module Aws::ElastiCache
2572
2605
  :cache_cluster_id,
2573
2606
  :snapshot_name,
2574
2607
  :kms_key_id)
2608
+ SENSITIVE = []
2575
2609
  include Aws::Structure
2576
2610
  end
2577
2611
 
@@ -2584,6 +2618,7 @@ module Aws::ElastiCache
2584
2618
  #
2585
2619
  class CreateSnapshotResult < Struct.new(
2586
2620
  :snapshot)
2621
+ SENSITIVE = []
2587
2622
  include Aws::Structure
2588
2623
  end
2589
2624
 
@@ -2610,6 +2645,7 @@ module Aws::ElastiCache
2610
2645
  class CustomerNodeEndpoint < Struct.new(
2611
2646
  :address,
2612
2647
  :port)
2648
+ SENSITIVE = []
2613
2649
  include Aws::Structure
2614
2650
  end
2615
2651
 
@@ -2664,6 +2700,7 @@ module Aws::ElastiCache
2664
2700
  :global_node_groups_to_remove,
2665
2701
  :global_node_groups_to_retain,
2666
2702
  :apply_immediately)
2703
+ SENSITIVE = []
2667
2704
  include Aws::Structure
2668
2705
  end
2669
2706
 
@@ -2684,6 +2721,7 @@ module Aws::ElastiCache
2684
2721
  #
2685
2722
  class DecreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
2686
2723
  :global_replication_group)
2724
+ SENSITIVE = []
2687
2725
  include Aws::Structure
2688
2726
  end
2689
2727
 
@@ -2720,9 +2758,9 @@ module Aws::ElastiCache
2720
2758
  #
2721
2759
  # * Redis (cluster mode disabled)
2722
2760
  #
2723
- # * If Multi-AZ with Automatic Failover is enabled: 1
2761
+ # * If Multi-AZ is enabled: 1
2724
2762
  #
2725
- # * If Multi-AZ with Automatic Failover is not enabled: 0
2763
+ # * If Multi-AZ is not enabled: 0
2726
2764
  #
2727
2765
  # * Redis (cluster mode enabled): 0 (though you will not be able to
2728
2766
  # failover to a replica if your primary node fails)
@@ -2753,6 +2791,7 @@ module Aws::ElastiCache
2753
2791
  :replica_configuration,
2754
2792
  :replicas_to_remove,
2755
2793
  :apply_immediately)
2794
+ SENSITIVE = []
2756
2795
  include Aws::Structure
2757
2796
  end
2758
2797
 
@@ -2765,6 +2804,7 @@ module Aws::ElastiCache
2765
2804
  #
2766
2805
  class DecreaseReplicaCountResult < Struct.new(
2767
2806
  :replication_group)
2807
+ SENSITIVE = []
2768
2808
  include Aws::Structure
2769
2809
  end
2770
2810
 
@@ -2794,6 +2834,7 @@ module Aws::ElastiCache
2794
2834
  class DeleteCacheClusterMessage < Struct.new(
2795
2835
  :cache_cluster_id,
2796
2836
  :final_snapshot_identifier)
2837
+ SENSITIVE = []
2797
2838
  include Aws::Structure
2798
2839
  end
2799
2840
 
@@ -2805,6 +2846,7 @@ module Aws::ElastiCache
2805
2846
  #
2806
2847
  class DeleteCacheClusterResult < Struct.new(
2807
2848
  :cache_cluster)
2849
+ SENSITIVE = []
2808
2850
  include Aws::Structure
2809
2851
  end
2810
2852
 
@@ -2830,6 +2872,7 @@ module Aws::ElastiCache
2830
2872
  #
2831
2873
  class DeleteCacheParameterGroupMessage < Struct.new(
2832
2874
  :cache_parameter_group_name)
2875
+ SENSITIVE = []
2833
2876
  include Aws::Structure
2834
2877
  end
2835
2878
 
@@ -2854,6 +2897,7 @@ module Aws::ElastiCache
2854
2897
  #
2855
2898
  class DeleteCacheSecurityGroupMessage < Struct.new(
2856
2899
  :cache_security_group_name)
2900
+ SENSITIVE = []
2857
2901
  include Aws::Structure
2858
2902
  end
2859
2903
 
@@ -2877,6 +2921,7 @@ module Aws::ElastiCache
2877
2921
  #
2878
2922
  class DeleteCacheSubnetGroupMessage < Struct.new(
2879
2923
  :cache_subnet_group_name)
2924
+ SENSITIVE = []
2880
2925
  include Aws::Structure
2881
2926
  end
2882
2927
 
@@ -2902,6 +2947,7 @@ module Aws::ElastiCache
2902
2947
  class DeleteGlobalReplicationGroupMessage < Struct.new(
2903
2948
  :global_replication_group_id,
2904
2949
  :retain_primary_replication_group)
2950
+ SENSITIVE = []
2905
2951
  include Aws::Structure
2906
2952
  end
2907
2953
 
@@ -2922,6 +2968,7 @@ module Aws::ElastiCache
2922
2968
  #
2923
2969
  class DeleteGlobalReplicationGroupResult < Struct.new(
2924
2970
  :global_replication_group)
2971
+ SENSITIVE = []
2925
2972
  include Aws::Structure
2926
2973
  end
2927
2974
 
@@ -2960,6 +3007,7 @@ module Aws::ElastiCache
2960
3007
  :replication_group_id,
2961
3008
  :retain_primary_cluster,
2962
3009
  :final_snapshot_identifier)
3010
+ SENSITIVE = []
2963
3011
  include Aws::Structure
2964
3012
  end
2965
3013
 
@@ -2972,6 +3020,7 @@ module Aws::ElastiCache
2972
3020
  #
2973
3021
  class DeleteReplicationGroupResult < Struct.new(
2974
3022
  :replication_group)
3023
+ SENSITIVE = []
2975
3024
  include Aws::Structure
2976
3025
  end
2977
3026
 
@@ -2992,6 +3041,7 @@ module Aws::ElastiCache
2992
3041
  #
2993
3042
  class DeleteSnapshotMessage < Struct.new(
2994
3043
  :snapshot_name)
3044
+ SENSITIVE = []
2995
3045
  include Aws::Structure
2996
3046
  end
2997
3047
 
@@ -3004,6 +3054,7 @@ module Aws::ElastiCache
3004
3054
  #
3005
3055
  class DeleteSnapshotResult < Struct.new(
3006
3056
  :snapshot)
3057
+ SENSITIVE = []
3007
3058
  include Aws::Structure
3008
3059
  end
3009
3060
 
@@ -3064,6 +3115,7 @@ module Aws::ElastiCache
3064
3115
  :marker,
3065
3116
  :show_cache_node_info,
3066
3117
  :show_cache_clusters_not_in_replication_groups)
3118
+ SENSITIVE = []
3067
3119
  include Aws::Structure
3068
3120
  end
3069
3121
 
@@ -3139,6 +3191,7 @@ module Aws::ElastiCache
3139
3191
  :max_records,
3140
3192
  :marker,
3141
3193
  :default_only)
3194
+ SENSITIVE = []
3142
3195
  include Aws::Structure
3143
3196
  end
3144
3197
 
@@ -3181,6 +3234,7 @@ module Aws::ElastiCache
3181
3234
  :cache_parameter_group_name,
3182
3235
  :max_records,
3183
3236
  :marker)
3237
+ SENSITIVE = []
3184
3238
  include Aws::Structure
3185
3239
  end
3186
3240
 
@@ -3231,6 +3285,7 @@ module Aws::ElastiCache
3231
3285
  :source,
3232
3286
  :max_records,
3233
3287
  :marker)
3288
+ SENSITIVE = []
3234
3289
  include Aws::Structure
3235
3290
  end
3236
3291
 
@@ -3273,6 +3328,7 @@ module Aws::ElastiCache
3273
3328
  :cache_security_group_name,
3274
3329
  :max_records,
3275
3330
  :marker)
3331
+ SENSITIVE = []
3276
3332
  include Aws::Structure
3277
3333
  end
3278
3334
 
@@ -3315,6 +3371,7 @@ module Aws::ElastiCache
3315
3371
  :cache_subnet_group_name,
3316
3372
  :max_records,
3317
3373
  :marker)
3374
+ SENSITIVE = []
3318
3375
  include Aws::Structure
3319
3376
  end
3320
3377
 
@@ -3360,6 +3417,7 @@ module Aws::ElastiCache
3360
3417
  :cache_parameter_group_family,
3361
3418
  :max_records,
3362
3419
  :marker)
3420
+ SENSITIVE = []
3363
3421
  include Aws::Structure
3364
3422
  end
3365
3423
 
@@ -3372,6 +3430,7 @@ module Aws::ElastiCache
3372
3430
  #
3373
3431
  class DescribeEngineDefaultParametersResult < Struct.new(
3374
3432
  :engine_defaults)
3433
+ SENSITIVE = []
3375
3434
  include Aws::Structure
3376
3435
  end
3377
3436
 
@@ -3446,6 +3505,7 @@ module Aws::ElastiCache
3446
3505
  :duration,
3447
3506
  :max_records,
3448
3507
  :marker)
3508
+ SENSITIVE = []
3449
3509
  include Aws::Structure
3450
3510
  end
3451
3511
 
@@ -3488,6 +3548,7 @@ module Aws::ElastiCache
3488
3548
  :max_records,
3489
3549
  :marker,
3490
3550
  :show_member_info)
3551
+ SENSITIVE = []
3491
3552
  include Aws::Structure
3492
3553
  end
3493
3554
 
@@ -3508,6 +3569,7 @@ module Aws::ElastiCache
3508
3569
  class DescribeGlobalReplicationGroupsResult < Struct.new(
3509
3570
  :marker,
3510
3571
  :global_replication_groups)
3572
+ SENSITIVE = []
3511
3573
  include Aws::Structure
3512
3574
  end
3513
3575
 
@@ -3554,6 +3616,7 @@ module Aws::ElastiCache
3554
3616
  :replication_group_id,
3555
3617
  :max_records,
3556
3618
  :marker)
3619
+ SENSITIVE = []
3557
3620
  include Aws::Structure
3558
3621
  end
3559
3622
 
@@ -3711,6 +3774,7 @@ module Aws::ElastiCache
3711
3774
  :offering_type,
3712
3775
  :max_records,
3713
3776
  :marker)
3777
+ SENSITIVE = []
3714
3778
  include Aws::Structure
3715
3779
  end
3716
3780
 
@@ -3864,6 +3928,7 @@ module Aws::ElastiCache
3864
3928
  :offering_type,
3865
3929
  :max_records,
3866
3930
  :marker)
3931
+ SENSITIVE = []
3867
3932
  include Aws::Structure
3868
3933
  end
3869
3934
 
@@ -3903,6 +3968,7 @@ module Aws::ElastiCache
3903
3968
  :service_update_status,
3904
3969
  :max_records,
3905
3970
  :marker)
3971
+ SENSITIVE = []
3906
3972
  include Aws::Structure
3907
3973
  end
3908
3974
 
@@ -3925,6 +3991,7 @@ module Aws::ElastiCache
3925
3991
  class DescribeSnapshotsListMessage < Struct.new(
3926
3992
  :marker,
3927
3993
  :snapshots)
3994
+ SENSITIVE = []
3928
3995
  include Aws::Structure
3929
3996
  end
3930
3997
 
@@ -3999,6 +4066,7 @@ module Aws::ElastiCache
3999
4066
  :marker,
4000
4067
  :max_records,
4001
4068
  :show_node_group_config)
4069
+ SENSITIVE = []
4002
4070
  include Aws::Structure
4003
4071
  end
4004
4072
 
@@ -4079,6 +4147,7 @@ module Aws::ElastiCache
4079
4147
  :show_node_level_update_status,
4080
4148
  :max_records,
4081
4149
  :marker)
4150
+ SENSITIVE = []
4082
4151
  include Aws::Structure
4083
4152
  end
4084
4153
 
@@ -4111,6 +4180,7 @@ module Aws::ElastiCache
4111
4180
  :global_replication_group_id,
4112
4181
  :replication_group_id,
4113
4182
  :replication_group_region)
4183
+ SENSITIVE = []
4114
4184
  include Aws::Structure
4115
4185
  end
4116
4186
 
@@ -4131,6 +4201,7 @@ module Aws::ElastiCache
4131
4201
  #
4132
4202
  class DisassociateGlobalReplicationGroupResult < Struct.new(
4133
4203
  :global_replication_group)
4204
+ SENSITIVE = []
4134
4205
  include Aws::Structure
4135
4206
  end
4136
4207
 
@@ -4155,6 +4226,7 @@ module Aws::ElastiCache
4155
4226
  :status,
4156
4227
  :ec2_security_group_name,
4157
4228
  :ec2_security_group_owner_id)
4229
+ SENSITIVE = []
4158
4230
  include Aws::Structure
4159
4231
  end
4160
4232
 
@@ -4174,6 +4246,7 @@ module Aws::ElastiCache
4174
4246
  class Endpoint < Struct.new(
4175
4247
  :address,
4176
4248
  :port)
4249
+ SENSITIVE = []
4177
4250
  include Aws::Structure
4178
4251
  end
4179
4252
 
@@ -4209,6 +4282,7 @@ module Aws::ElastiCache
4209
4282
  :marker,
4210
4283
  :parameters,
4211
4284
  :cache_node_type_specific_parameters)
4285
+ SENSITIVE = []
4212
4286
  include Aws::Structure
4213
4287
  end
4214
4288
 
@@ -4242,6 +4316,7 @@ module Aws::ElastiCache
4242
4316
  :source_type,
4243
4317
  :message,
4244
4318
  :date)
4319
+ SENSITIVE = []
4245
4320
  include Aws::Structure
4246
4321
  end
4247
4322
 
@@ -4261,6 +4336,7 @@ module Aws::ElastiCache
4261
4336
  class EventsMessage < Struct.new(
4262
4337
  :marker,
4263
4338
  :events)
4339
+ SENSITIVE = []
4264
4340
  include Aws::Structure
4265
4341
  end
4266
4342
 
@@ -4291,6 +4367,7 @@ module Aws::ElastiCache
4291
4367
  :global_replication_group_id,
4292
4368
  :primary_region,
4293
4369
  :primary_replication_group_id)
4370
+ SENSITIVE = []
4294
4371
  include Aws::Structure
4295
4372
  end
4296
4373
 
@@ -4311,6 +4388,7 @@ module Aws::ElastiCache
4311
4388
  #
4312
4389
  class FailoverGlobalReplicationGroupResult < Struct.new(
4313
4390
  :global_replication_group)
4391
+ SENSITIVE = []
4314
4392
  include Aws::Structure
4315
4393
  end
4316
4394
 
@@ -4330,6 +4408,7 @@ module Aws::ElastiCache
4330
4408
  class GlobalNodeGroup < Struct.new(
4331
4409
  :global_node_group_id,
4332
4410
  :slots)
4411
+ SENSITIVE = []
4333
4412
  include Aws::Structure
4334
4413
  end
4335
4414
 
@@ -4430,6 +4509,7 @@ module Aws::ElastiCache
4430
4509
  :transit_encryption_enabled,
4431
4510
  :at_rest_encryption_enabled,
4432
4511
  :arn)
4512
+ SENSITIVE = []
4433
4513
  include Aws::Structure
4434
4514
  end
4435
4515
 
@@ -4456,6 +4536,7 @@ module Aws::ElastiCache
4456
4536
  class GlobalReplicationGroupInfo < Struct.new(
4457
4537
  :global_replication_group_id,
4458
4538
  :global_replication_group_member_role)
4539
+ SENSITIVE = []
4459
4540
  include Aws::Structure
4460
4541
  end
4461
4542
 
@@ -4491,6 +4572,7 @@ module Aws::ElastiCache
4491
4572
  :role,
4492
4573
  :automatic_failover,
4493
4574
  :status)
4575
+ SENSITIVE = []
4494
4576
  include Aws::Structure
4495
4577
  end
4496
4578
 
@@ -4547,6 +4629,7 @@ module Aws::ElastiCache
4547
4629
  :node_group_count,
4548
4630
  :regional_configurations,
4549
4631
  :apply_immediately)
4632
+ SENSITIVE = []
4550
4633
  include Aws::Structure
4551
4634
  end
4552
4635
 
@@ -4567,6 +4650,7 @@ module Aws::ElastiCache
4567
4650
  #
4568
4651
  class IncreaseNodeGroupsInGlobalReplicationGroupResult < Struct.new(
4569
4652
  :global_replication_group)
4653
+ SENSITIVE = []
4570
4654
  include Aws::Structure
4571
4655
  end
4572
4656
 
@@ -4618,6 +4702,7 @@ module Aws::ElastiCache
4618
4702
  :new_replica_count,
4619
4703
  :replica_configuration,
4620
4704
  :apply_immediately)
4705
+ SENSITIVE = []
4621
4706
  include Aws::Structure
4622
4707
  end
4623
4708
 
@@ -4630,6 +4715,7 @@ module Aws::ElastiCache
4630
4715
  #
4631
4716
  class IncreaseReplicaCountResult < Struct.new(
4632
4717
  :replication_group)
4718
+ SENSITIVE = []
4633
4719
  include Aws::Structure
4634
4720
  end
4635
4721
 
@@ -4694,6 +4780,7 @@ module Aws::ElastiCache
4694
4780
  #
4695
4781
  class InvalidParameterCombinationException < Struct.new(
4696
4782
  :message)
4783
+ SENSITIVE = []
4697
4784
  include Aws::Structure
4698
4785
  end
4699
4786
 
@@ -4707,6 +4794,7 @@ module Aws::ElastiCache
4707
4794
  #
4708
4795
  class InvalidParameterValueException < Struct.new(
4709
4796
  :message)
4797
+ SENSITIVE = []
4710
4798
  include Aws::Structure
4711
4799
  end
4712
4800
 
@@ -4771,6 +4859,7 @@ module Aws::ElastiCache
4771
4859
  class ListAllowedNodeTypeModificationsMessage < Struct.new(
4772
4860
  :cache_cluster_id,
4773
4861
  :replication_group_id)
4862
+ SENSITIVE = []
4774
4863
  include Aws::Structure
4775
4864
  end
4776
4865
 
@@ -4801,6 +4890,7 @@ module Aws::ElastiCache
4801
4890
  #
4802
4891
  class ListTagsForResourceMessage < Struct.new(
4803
4892
  :resource_name)
4893
+ SENSITIVE = []
4804
4894
  include Aws::Structure
4805
4895
  end
4806
4896
 
@@ -5177,6 +5267,7 @@ module Aws::ElastiCache
5177
5267
  :cache_node_type,
5178
5268
  :auth_token,
5179
5269
  :auth_token_update_strategy)
5270
+ SENSITIVE = []
5180
5271
  include Aws::Structure
5181
5272
  end
5182
5273
 
@@ -5188,6 +5279,7 @@ module Aws::ElastiCache
5188
5279
  #
5189
5280
  class ModifyCacheClusterResult < Struct.new(
5190
5281
  :cache_cluster)
5282
+ SENSITIVE = []
5191
5283
  include Aws::Structure
5192
5284
  end
5193
5285
 
@@ -5222,6 +5314,7 @@ module Aws::ElastiCache
5222
5314
  class ModifyCacheParameterGroupMessage < Struct.new(
5223
5315
  :cache_parameter_group_name,
5224
5316
  :parameter_name_values)
5317
+ SENSITIVE = []
5225
5318
  include Aws::Structure
5226
5319
  end
5227
5320
 
@@ -5260,6 +5353,7 @@ module Aws::ElastiCache
5260
5353
  :cache_subnet_group_name,
5261
5354
  :cache_subnet_group_description,
5262
5355
  :subnet_ids)
5356
+ SENSITIVE = []
5263
5357
  include Aws::Structure
5264
5358
  end
5265
5359
 
@@ -5275,6 +5369,7 @@ module Aws::ElastiCache
5275
5369
  #
5276
5370
  class ModifyCacheSubnetGroupResult < Struct.new(
5277
5371
  :cache_subnet_group)
5372
+ SENSITIVE = []
5278
5373
  include Aws::Structure
5279
5374
  end
5280
5375
 
@@ -5329,6 +5424,7 @@ module Aws::ElastiCache
5329
5424
  :engine_version,
5330
5425
  :global_replication_group_description,
5331
5426
  :automatic_failover_enabled)
5427
+ SENSITIVE = []
5332
5428
  include Aws::Structure
5333
5429
  end
5334
5430
 
@@ -5349,6 +5445,7 @@ module Aws::ElastiCache
5349
5445
  #
5350
5446
  class ModifyGlobalReplicationGroupResult < Struct.new(
5351
5447
  :global_replication_group)
5448
+ SENSITIVE = []
5352
5449
  include Aws::Structure
5353
5450
  end
5354
5451
 
@@ -5408,15 +5505,6 @@ module Aws::ElastiCache
5408
5505
  # read/write primary if the existing primary encounters a failure.
5409
5506
  #
5410
5507
  # Valid values: `true` \| `false`
5411
- #
5412
- # Amazon ElastiCache for Redis does not support Multi-AZ with
5413
- # automatic failover on:
5414
- #
5415
- # * Redis versions earlier than 2.8.6.
5416
- #
5417
- # * Redis (cluster mode disabled): T1 node types.
5418
- #
5419
- # * Redis (cluster mode enabled): T1 node types.
5420
5508
  # @return [Boolean]
5421
5509
  #
5422
5510
  # @!attribute [rw] multi_az_enabled
@@ -5624,6 +5712,7 @@ module Aws::ElastiCache
5624
5712
  :cache_node_type,
5625
5713
  :auth_token,
5626
5714
  :auth_token_update_strategy)
5715
+ SENSITIVE = []
5627
5716
  include Aws::Structure
5628
5717
  end
5629
5718
 
@@ -5636,6 +5725,7 @@ module Aws::ElastiCache
5636
5725
  #
5637
5726
  class ModifyReplicationGroupResult < Struct.new(
5638
5727
  :replication_group)
5728
+ SENSITIVE = []
5639
5729
  include Aws::Structure
5640
5730
  end
5641
5731
 
@@ -5717,6 +5807,7 @@ module Aws::ElastiCache
5717
5807
  :resharding_configuration,
5718
5808
  :node_groups_to_remove,
5719
5809
  :node_groups_to_retain)
5810
+ SENSITIVE = []
5720
5811
  include Aws::Structure
5721
5812
  end
5722
5813
 
@@ -5729,6 +5820,7 @@ module Aws::ElastiCache
5729
5820
  #
5730
5821
  class ModifyReplicationGroupShardConfigurationResult < Struct.new(
5731
5822
  :replication_group)
5823
+ SENSITIVE = []
5732
5824
  include Aws::Structure
5733
5825
  end
5734
5826
 
@@ -5781,6 +5873,7 @@ module Aws::ElastiCache
5781
5873
  :reader_endpoint,
5782
5874
  :slots,
5783
5875
  :node_group_members)
5876
+ SENSITIVE = []
5784
5877
  include Aws::Structure
5785
5878
  end
5786
5879
 
@@ -5835,6 +5928,7 @@ module Aws::ElastiCache
5835
5928
  :replica_count,
5836
5929
  :primary_availability_zone,
5837
5930
  :replica_availability_zones)
5931
+ SENSITIVE = []
5838
5932
  include Aws::Structure
5839
5933
  end
5840
5934
 
@@ -5873,6 +5967,7 @@ module Aws::ElastiCache
5873
5967
  :read_endpoint,
5874
5968
  :preferred_availability_zone,
5875
5969
  :current_role)
5970
+ SENSITIVE = []
5876
5971
  include Aws::Structure
5877
5972
  end
5878
5973
 
@@ -5927,6 +6022,7 @@ module Aws::ElastiCache
5927
6022
  :node_update_initiated_by,
5928
6023
  :node_update_initiated_date,
5929
6024
  :node_update_status_modified_date)
6025
+ SENSITIVE = []
5930
6026
  include Aws::Structure
5931
6027
  end
5932
6028
 
@@ -5953,6 +6049,7 @@ module Aws::ElastiCache
5953
6049
  class NodeGroupUpdateStatus < Struct.new(
5954
6050
  :node_group_id,
5955
6051
  :node_group_member_update_status)
6052
+ SENSITIVE = []
5956
6053
  include Aws::Structure
5957
6054
  end
5958
6055
 
@@ -6020,6 +6117,7 @@ module Aws::ElastiCache
6020
6117
  :cache_size,
6021
6118
  :cache_node_create_time,
6022
6119
  :snapshot_create_time)
6120
+ SENSITIVE = []
6023
6121
  include Aws::Structure
6024
6122
  end
6025
6123
 
@@ -6040,6 +6138,7 @@ module Aws::ElastiCache
6040
6138
  class NotificationConfiguration < Struct.new(
6041
6139
  :topic_arn,
6042
6140
  :topic_status)
6141
+ SENSITIVE = []
6043
6142
  include Aws::Structure
6044
6143
  end
6045
6144
 
@@ -6103,6 +6202,7 @@ module Aws::ElastiCache
6103
6202
  :is_modifiable,
6104
6203
  :minimum_engine_version,
6105
6204
  :change_type)
6205
+ SENSITIVE = []
6106
6206
  include Aws::Structure
6107
6207
  end
6108
6208
 
@@ -6130,6 +6230,7 @@ module Aws::ElastiCache
6130
6230
  class ParameterNameValue < Struct.new(
6131
6231
  :parameter_name,
6132
6232
  :parameter_value)
6233
+ SENSITIVE = []
6133
6234
  include Aws::Structure
6134
6235
  end
6135
6236
 
@@ -6170,6 +6271,7 @@ module Aws::ElastiCache
6170
6271
  :engine_version,
6171
6272
  :cache_node_type,
6172
6273
  :auth_token_status)
6274
+ SENSITIVE = []
6173
6275
  include Aws::Structure
6174
6276
  end
6175
6277
 
@@ -6199,6 +6301,7 @@ module Aws::ElastiCache
6199
6301
  :cache_cluster_id,
6200
6302
  :service_update_name,
6201
6303
  :update_action_status)
6304
+ SENSITIVE = []
6202
6305
  include Aws::Structure
6203
6306
  end
6204
6307
 
@@ -6245,6 +6348,7 @@ module Aws::ElastiCache
6245
6348
  :reserved_cache_nodes_offering_id,
6246
6349
  :reserved_cache_node_id,
6247
6350
  :cache_node_count)
6351
+ SENSITIVE = []
6248
6352
  include Aws::Structure
6249
6353
  end
6250
6354
 
@@ -6257,6 +6361,7 @@ module Aws::ElastiCache
6257
6361
  #
6258
6362
  class PurchaseReservedCacheNodesOfferingResult < Struct.new(
6259
6363
  :reserved_cache_node)
6364
+ SENSITIVE = []
6260
6365
  include Aws::Structure
6261
6366
  end
6262
6367
 
@@ -6281,6 +6386,7 @@ module Aws::ElastiCache
6281
6386
  class RebalanceSlotsInGlobalReplicationGroupMessage < Struct.new(
6282
6387
  :global_replication_group_id,
6283
6388
  :apply_immediately)
6389
+ SENSITIVE = []
6284
6390
  include Aws::Structure
6285
6391
  end
6286
6392
 
@@ -6301,6 +6407,7 @@ module Aws::ElastiCache
6301
6407
  #
6302
6408
  class RebalanceSlotsInGlobalReplicationGroupResult < Struct.new(
6303
6409
  :global_replication_group)
6410
+ SENSITIVE = []
6304
6411
  include Aws::Structure
6305
6412
  end
6306
6413
 
@@ -6330,6 +6437,7 @@ module Aws::ElastiCache
6330
6437
  class RebootCacheClusterMessage < Struct.new(
6331
6438
  :cache_cluster_id,
6332
6439
  :cache_node_ids_to_reboot)
6440
+ SENSITIVE = []
6333
6441
  include Aws::Structure
6334
6442
  end
6335
6443
 
@@ -6341,6 +6449,7 @@ module Aws::ElastiCache
6341
6449
  #
6342
6450
  class RebootCacheClusterResult < Struct.new(
6343
6451
  :cache_cluster)
6452
+ SENSITIVE = []
6344
6453
  include Aws::Structure
6345
6454
  end
6346
6455
 
@@ -6360,6 +6469,7 @@ module Aws::ElastiCache
6360
6469
  class RecurringCharge < Struct.new(
6361
6470
  :recurring_charge_amount,
6362
6471
  :recurring_charge_frequency)
6472
+ SENSITIVE = []
6363
6473
  include Aws::Structure
6364
6474
  end
6365
6475
 
@@ -6398,6 +6508,7 @@ module Aws::ElastiCache
6398
6508
  :replication_group_id,
6399
6509
  :replication_group_region,
6400
6510
  :resharding_configuration)
6511
+ SENSITIVE = []
6401
6512
  include Aws::Structure
6402
6513
  end
6403
6514
 
@@ -6435,6 +6546,7 @@ module Aws::ElastiCache
6435
6546
  class RemoveTagsFromResourceMessage < Struct.new(
6436
6547
  :resource_name,
6437
6548
  :tag_keys)
6549
+ SENSITIVE = []
6438
6550
  include Aws::Structure
6439
6551
  end
6440
6552
 
@@ -6482,17 +6594,8 @@ module Aws::ElastiCache
6482
6594
  # @return [String]
6483
6595
  #
6484
6596
  # @!attribute [rw] automatic_failover
6485
- # Indicates the status of Multi-AZ with automatic failover for this
6486
- # Redis replication group.
6487
- #
6488
- # Amazon ElastiCache for Redis does not support Multi-AZ with
6489
- # automatic failover on:
6490
- #
6491
- # * Redis versions earlier than 2.8.6.
6492
- #
6493
- # * Redis (cluster mode disabled): T1 node types.
6494
- #
6495
- # * Redis (cluster mode enabled): T1 node types.
6597
+ # Indicates the status of automatic failover for this Redis
6598
+ # replication group.
6496
6599
  # @return [String]
6497
6600
  #
6498
6601
  # @!attribute [rw] multi_az
@@ -6618,6 +6721,7 @@ module Aws::ElastiCache
6618
6721
  :at_rest_encryption_enabled,
6619
6722
  :kms_key_id,
6620
6723
  :arn)
6724
+ SENSITIVE = []
6621
6725
  include Aws::Structure
6622
6726
  end
6623
6727
 
@@ -6649,6 +6753,7 @@ module Aws::ElastiCache
6649
6753
  class ReplicationGroupMessage < Struct.new(
6650
6754
  :marker,
6651
6755
  :replication_groups)
6756
+ SENSITIVE = []
6652
6757
  include Aws::Structure
6653
6758
  end
6654
6759
 
@@ -6674,17 +6779,8 @@ module Aws::ElastiCache
6674
6779
  # @return [String]
6675
6780
  #
6676
6781
  # @!attribute [rw] automatic_failover_status
6677
- # Indicates the status of Multi-AZ with automatic failover for this
6678
- # Redis replication group.
6679
- #
6680
- # Amazon ElastiCache for Redis does not support Multi-AZ with
6681
- # automatic failover on:
6682
- #
6683
- # * Redis versions earlier than 2.8.6.
6684
- #
6685
- # * Redis (cluster mode disabled): T1 node types.
6686
- #
6687
- # * Redis (cluster mode enabled): T1 node types.
6782
+ # Indicates the status of automatic failover for this Redis
6783
+ # replication group.
6688
6784
  # @return [String]
6689
6785
  #
6690
6786
  # @!attribute [rw] resharding
@@ -6702,6 +6798,7 @@ module Aws::ElastiCache
6702
6798
  :automatic_failover_status,
6703
6799
  :resharding,
6704
6800
  :auth_token_status)
6801
+ SENSITIVE = []
6705
6802
  include Aws::Structure
6706
6803
  end
6707
6804
 
@@ -6851,6 +6948,7 @@ module Aws::ElastiCache
6851
6948
  :state,
6852
6949
  :recurring_charges,
6853
6950
  :reservation_arn)
6951
+ SENSITIVE = []
6854
6952
  include Aws::Structure
6855
6953
  end
6856
6954
 
@@ -6876,6 +6974,7 @@ module Aws::ElastiCache
6876
6974
  class ReservedCacheNodeMessage < Struct.new(
6877
6975
  :marker,
6878
6976
  :reserved_cache_nodes)
6977
+ SENSITIVE = []
6879
6978
  include Aws::Structure
6880
6979
  end
6881
6980
 
@@ -7009,6 +7108,7 @@ module Aws::ElastiCache
7009
7108
  :product_description,
7010
7109
  :offering_type,
7011
7110
  :recurring_charges)
7111
+ SENSITIVE = []
7012
7112
  include Aws::Structure
7013
7113
  end
7014
7114
 
@@ -7029,6 +7129,7 @@ module Aws::ElastiCache
7029
7129
  class ReservedCacheNodesOfferingMessage < Struct.new(
7030
7130
  :marker,
7031
7131
  :reserved_cache_nodes_offerings)
7132
+ SENSITIVE = []
7032
7133
  include Aws::Structure
7033
7134
  end
7034
7135
 
@@ -7079,6 +7180,7 @@ module Aws::ElastiCache
7079
7180
  :cache_parameter_group_name,
7080
7181
  :reset_all_parameters,
7081
7182
  :parameter_name_values)
7183
+ SENSITIVE = []
7082
7184
  include Aws::Structure
7083
7185
  end
7084
7186
 
@@ -7108,6 +7210,7 @@ module Aws::ElastiCache
7108
7210
  class ReshardingConfiguration < Struct.new(
7109
7211
  :node_group_id,
7110
7212
  :preferred_availability_zones)
7213
+ SENSITIVE = []
7111
7214
  include Aws::Structure
7112
7215
  end
7113
7216
 
@@ -7121,6 +7224,7 @@ module Aws::ElastiCache
7121
7224
  #
7122
7225
  class ReshardingStatus < Struct.new(
7123
7226
  :slot_migration)
7227
+ SENSITIVE = []
7124
7228
  include Aws::Structure
7125
7229
  end
7126
7230
 
@@ -7155,6 +7259,7 @@ module Aws::ElastiCache
7155
7259
  :cache_security_group_name,
7156
7260
  :ec2_security_group_name,
7157
7261
  :ec2_security_group_owner_id)
7262
+ SENSITIVE = []
7158
7263
  include Aws::Structure
7159
7264
  end
7160
7265
 
@@ -7172,6 +7277,7 @@ module Aws::ElastiCache
7172
7277
  #
7173
7278
  class RevokeCacheSecurityGroupIngressResult < Struct.new(
7174
7279
  :cache_security_group)
7280
+ SENSITIVE = []
7175
7281
  include Aws::Structure
7176
7282
  end
7177
7283
 
@@ -7192,6 +7298,7 @@ module Aws::ElastiCache
7192
7298
  class SecurityGroupMembership < Struct.new(
7193
7299
  :security_group_id,
7194
7300
  :status)
7301
+ SENSITIVE = []
7195
7302
  include Aws::Structure
7196
7303
  end
7197
7304
 
@@ -7275,6 +7382,7 @@ module Aws::ElastiCache
7275
7382
  :engine_version,
7276
7383
  :auto_update_after_recommended_apply_by_date,
7277
7384
  :estimated_update_time)
7385
+ SENSITIVE = []
7278
7386
  include Aws::Structure
7279
7387
  end
7280
7388
 
@@ -7300,6 +7408,7 @@ module Aws::ElastiCache
7300
7408
  class ServiceUpdatesMessage < Struct.new(
7301
7409
  :marker,
7302
7410
  :service_updates)
7411
+ SENSITIVE = []
7303
7412
  include Aws::Structure
7304
7413
  end
7305
7414
 
@@ -7313,6 +7422,7 @@ module Aws::ElastiCache
7313
7422
  #
7314
7423
  class SlotMigration < Struct.new(
7315
7424
  :progress_percentage)
7425
+ SENSITIVE = []
7316
7426
  include Aws::Structure
7317
7427
  end
7318
7428
 
@@ -7529,17 +7639,8 @@ module Aws::ElastiCache
7529
7639
  # @return [Integer]
7530
7640
  #
7531
7641
  # @!attribute [rw] automatic_failover
7532
- # Indicates the status of Multi-AZ with automatic failover for the
7533
- # source Redis replication group.
7534
- #
7535
- # Amazon ElastiCache for Redis does not support Multi-AZ with
7536
- # automatic failover on:
7537
- #
7538
- # * Redis versions earlier than 2.8.6.
7539
- #
7540
- # * Redis (cluster mode disabled): T1 node types.
7541
- #
7542
- # * Redis (cluster mode enabled): T1 node types.
7642
+ # Indicates the status of automatic failover for the source Redis
7643
+ # replication group.
7543
7644
  # @return [String]
7544
7645
  #
7545
7646
  # @!attribute [rw] node_snapshots
@@ -7583,6 +7684,7 @@ module Aws::ElastiCache
7583
7684
  :node_snapshots,
7584
7685
  :kms_key_id,
7585
7686
  :arn)
7687
+ SENSITIVE = []
7586
7688
  include Aws::Structure
7587
7689
  end
7588
7690
 
@@ -7646,6 +7748,7 @@ module Aws::ElastiCache
7646
7748
  class StartMigrationMessage < Struct.new(
7647
7749
  :replication_group_id,
7648
7750
  :customer_node_endpoint_list)
7751
+ SENSITIVE = []
7649
7752
  include Aws::Structure
7650
7753
  end
7651
7754
 
@@ -7658,6 +7761,7 @@ module Aws::ElastiCache
7658
7761
  #
7659
7762
  class StartMigrationResponse < Struct.new(
7660
7763
  :replication_group)
7764
+ SENSITIVE = []
7661
7765
  include Aws::Structure
7662
7766
  end
7663
7767
 
@@ -7678,6 +7782,7 @@ module Aws::ElastiCache
7678
7782
  class Subnet < Struct.new(
7679
7783
  :subnet_identifier,
7680
7784
  :subnet_availability_zone)
7785
+ SENSITIVE = []
7681
7786
  include Aws::Structure
7682
7787
  end
7683
7788
 
@@ -7712,6 +7817,7 @@ module Aws::ElastiCache
7712
7817
  class Tag < Struct.new(
7713
7818
  :key,
7714
7819
  :value)
7820
+ SENSITIVE = []
7715
7821
  include Aws::Structure
7716
7822
  end
7717
7823
 
@@ -7726,6 +7832,7 @@ module Aws::ElastiCache
7726
7832
  #
7727
7833
  class TagListMessage < Struct.new(
7728
7834
  :tag_list)
7835
+ SENSITIVE = []
7729
7836
  include Aws::Structure
7730
7837
  end
7731
7838
 
@@ -7768,6 +7875,7 @@ module Aws::ElastiCache
7768
7875
  class TestFailoverMessage < Struct.new(
7769
7876
  :replication_group_id,
7770
7877
  :node_group_id)
7878
+ SENSITIVE = []
7771
7879
  include Aws::Structure
7772
7880
  end
7773
7881
 
@@ -7786,6 +7894,7 @@ module Aws::ElastiCache
7786
7894
  #
7787
7895
  class TestFailoverResult < Struct.new(
7788
7896
  :replication_group)
7897
+ SENSITIVE = []
7789
7898
  include Aws::Structure
7790
7899
  end
7791
7900
 
@@ -7813,6 +7922,7 @@ module Aws::ElastiCache
7813
7922
  class TimeRangeFilter < Struct.new(
7814
7923
  :start_time,
7815
7924
  :end_time)
7925
+ SENSITIVE = []
7816
7926
  include Aws::Structure
7817
7927
  end
7818
7928
 
@@ -7848,6 +7958,7 @@ module Aws::ElastiCache
7848
7958
  :service_update_name,
7849
7959
  :error_type,
7850
7960
  :error_message)
7961
+ SENSITIVE = []
7851
7962
  include Aws::Structure
7852
7963
  end
7853
7964
 
@@ -7952,6 +8063,7 @@ module Aws::ElastiCache
7952
8063
  :cache_node_update_status,
7953
8064
  :estimated_update_time,
7954
8065
  :engine)
8066
+ SENSITIVE = []
7955
8067
  include Aws::Structure
7956
8068
  end
7957
8069
 
@@ -7968,6 +8080,7 @@ module Aws::ElastiCache
7968
8080
  class UpdateActionResultsMessage < Struct.new(
7969
8081
  :processed_update_actions,
7970
8082
  :unprocessed_update_actions)
8083
+ SENSITIVE = []
7971
8084
  include Aws::Structure
7972
8085
  end
7973
8086
 
@@ -7987,6 +8100,7 @@ module Aws::ElastiCache
7987
8100
  class UpdateActionsMessage < Struct.new(
7988
8101
  :marker,
7989
8102
  :update_actions)
8103
+ SENSITIVE = []
7990
8104
  include Aws::Structure
7991
8105
  end
7992
8106