aws-sdk-elasticache 1.124.0 → 1.126.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: 14e4075081fd634dd63ff7db5ef590383959f94550157e5c14fc30081d7d5f64
4
- data.tar.gz: cae7f219d9bafd97314024797aedc6f3556c5ff831c43ae1d74ea0bac7e0606c
3
+ metadata.gz: 2e3fa2b03e6eeba01a583b606d3fa03d36f2d4c9f97f5a5c1a0dcfd6fce6b00e
4
+ data.tar.gz: a23f803bf2b77f054c356229834fa643d08e5e29f30af8091bbeefd42adec450
5
5
  SHA512:
6
- metadata.gz: 753c324e696e45cd31721f3cb276e85cd6e50bc7baa7956f58c9c613431b70aec6dca27829704c7355b8292759af711d662e31c2c4b24386c5cf160729ca3c82
7
- data.tar.gz: d638ef13b357bab5242da3a3b0958f634c54e3651257a78be924ba2d9d64b7b1f32c4d0e71c8b860f8efd98511338225c641e91c28dae9d4f109285dbfd8a83b
6
+ metadata.gz: '086d522a0b92bccdcbef33deea8aa6aa62aa59e84afb6c1719bb27e2e537ea4ecd6e94da3c501ea0f0950e9dec44bf64c61de8ff050f4cc091ee07cbe93954e7'
7
+ data.tar.gz: e5e97df3b05c3bdd5a8ff305e8b44c90a5a99ebcb1e9ae60cc4304488c724cb279f92fcf6a1df73bbc64cde17fbc5a05a4e7a5283413b62efe2ecbb06a851e9d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.126.0 (2025-05-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.125.0 (2025-04-10)
10
+ ------------------
11
+
12
+ * Feature - AWS ElastiCache SDK now supports using MemcachedUpgradeConfig parameter with ModifyCacheCluster API to enable updating Memcached cache node types. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage and implementation.
13
+
4
14
  1.124.0 (2025-03-04)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.124.0
1
+ 1.126.0
@@ -1707,6 +1707,8 @@ module Aws::ElastiCache
1707
1707
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
1708
1708
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
1709
1709
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
1710
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
1711
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
1710
1712
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
1711
1713
  # resp.cache_cluster.notification_configuration.topic_status #=> String
1712
1714
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -3852,6 +3854,8 @@ module Aws::ElastiCache
3852
3854
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3853
3855
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
3854
3856
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
3857
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
3858
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
3855
3859
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
3856
3860
  # resp.cache_cluster.notification_configuration.topic_status #=> String
3857
3861
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -4791,6 +4795,8 @@ module Aws::ElastiCache
4791
4795
  # resp.cache_clusters[0].pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
4792
4796
  # resp.cache_clusters[0].pending_modified_values.transit_encryption_enabled #=> Boolean
4793
4797
  # resp.cache_clusters[0].pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
4798
+ # resp.cache_clusters[0].pending_modified_values.scale_config.scale_percentage #=> Integer
4799
+ # resp.cache_clusters[0].pending_modified_values.scale_config.scale_interval_minutes #=> Integer
4794
4800
  # resp.cache_clusters[0].notification_configuration.topic_arn #=> String
4795
4801
  # resp.cache_clusters[0].notification_configuration.topic_status #=> String
4796
4802
  # resp.cache_clusters[0].cache_security_groups #=> Array
@@ -9131,8 +9137,8 @@ module Aws::ElastiCache
9131
9137
  # Default: `false`
9132
9138
  #
9133
9139
  # @option params [String] :engine
9134
- # Modifies the engine listed in a cluster message. The options are
9135
- # redis, memcached or valkey.
9140
+ # The engine type used by the cache cluster. The options are valkey,
9141
+ # memcached or redis.
9136
9142
  #
9137
9143
  # @option params [String] :engine_version
9138
9144
  # The upgraded version of the cache engine to be run on the cache nodes.
@@ -9219,6 +9225,10 @@ module Aws::ElastiCache
9219
9225
  #
9220
9226
  # [1]: http://aws.amazon.com/ec2/nitro/
9221
9227
  #
9228
+ # @option params [Types::ScaleConfig] :scale_config
9229
+ # Configures horizontal or vertical scaling for Memcached clusters,
9230
+ # specifying the scaling percentage and interval.
9231
+ #
9222
9232
  # @return [Types::ModifyCacheClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9223
9233
  #
9224
9234
  # * {Types::ModifyCacheClusterResult#cache_cluster #cache_cluster} => Types::CacheCluster
@@ -9304,6 +9314,10 @@ module Aws::ElastiCache
9304
9314
  # },
9305
9315
  # ],
9306
9316
  # ip_discovery: "ipv4", # accepts ipv4, ipv6
9317
+ # scale_config: {
9318
+ # scale_percentage: 1,
9319
+ # scale_interval_minutes: 1,
9320
+ # },
9307
9321
  # })
9308
9322
  #
9309
9323
  # @example Response structure
@@ -9335,6 +9349,8 @@ module Aws::ElastiCache
9335
9349
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9336
9350
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
9337
9351
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
9352
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
9353
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
9338
9354
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
9339
9355
  # resp.cache_cluster.notification_configuration.topic_status #=> String
9340
9356
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -10783,6 +10799,8 @@ module Aws::ElastiCache
10783
10799
  # resp.cache_cluster.pending_modified_values.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
10784
10800
  # resp.cache_cluster.pending_modified_values.transit_encryption_enabled #=> Boolean
10785
10801
  # resp.cache_cluster.pending_modified_values.transit_encryption_mode #=> String, one of "preferred", "required"
10802
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_percentage #=> Integer
10803
+ # resp.cache_cluster.pending_modified_values.scale_config.scale_interval_minutes #=> Integer
10786
10804
  # resp.cache_cluster.notification_configuration.topic_arn #=> String
10787
10805
  # resp.cache_cluster.notification_configuration.topic_status #=> String
10788
10806
  # resp.cache_cluster.cache_security_groups #=> Array
@@ -11469,7 +11487,7 @@ module Aws::ElastiCache
11469
11487
  tracer: tracer
11470
11488
  )
11471
11489
  context[:gem_name] = 'aws-sdk-elasticache'
11472
- context[:gem_version] = '1.124.0'
11490
+ context[:gem_version] = '1.126.0'
11473
11491
  Seahorse::Client::Request.new(handlers, context)
11474
11492
  end
11475
11493
 
@@ -14,7 +14,7 @@ module Aws::ElastiCache
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
- APICallRateForCustomerExceededFault = Shapes::StructureShape.new(name: 'APICallRateForCustomerExceededFault', error: {"code"=>"APICallRateForCustomerExceeded", "httpStatusCode"=>400, "senderFault"=>true})
17
+ APICallRateForCustomerExceededFault = Shapes::StructureShape.new(name: 'APICallRateForCustomerExceededFault', error: {"code" => "APICallRateForCustomerExceeded", "httpStatusCode" => 400, "senderFault" => true})
18
18
  AZMode = Shapes::StringShape.new(name: 'AZMode')
19
19
  AccessString = Shapes::StringShape.new(name: 'AccessString')
20
20
  AddTagsToResourceMessage = Shapes::StructureShape.new(name: 'AddTagsToResourceMessage')
@@ -25,8 +25,8 @@ module Aws::ElastiCache
25
25
  Authentication = Shapes::StructureShape.new(name: 'Authentication')
26
26
  AuthenticationMode = Shapes::StructureShape.new(name: 'AuthenticationMode')
27
27
  AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
28
- AuthorizationAlreadyExistsFault = Shapes::StructureShape.new(name: 'AuthorizationAlreadyExistsFault', error: {"code"=>"AuthorizationAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
29
- AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault', error: {"code"=>"AuthorizationNotFound", "httpStatusCode"=>404, "senderFault"=>true})
28
+ AuthorizationAlreadyExistsFault = Shapes::StructureShape.new(name: 'AuthorizationAlreadyExistsFault', error: {"code" => "AuthorizationAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
29
+ AuthorizationNotFoundFault = Shapes::StructureShape.new(name: 'AuthorizationNotFoundFault', error: {"code" => "AuthorizationNotFound", "httpStatusCode" => 404, "senderFault" => true})
30
30
  AuthorizeCacheSecurityGroupIngressMessage = Shapes::StructureShape.new(name: 'AuthorizeCacheSecurityGroupIngressMessage')
31
31
  AuthorizeCacheSecurityGroupIngressResult = Shapes::StructureShape.new(name: 'AuthorizeCacheSecurityGroupIngressResult')
32
32
  AutomaticFailoverStatus = Shapes::StringShape.new(name: 'AutomaticFailoverStatus')
@@ -38,11 +38,11 @@ module Aws::ElastiCache
38
38
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
39
39
  BooleanOptional = Shapes::BooleanShape.new(name: 'BooleanOptional')
40
40
  CacheCluster = Shapes::StructureShape.new(name: 'CacheCluster')
41
- CacheClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheClusterAlreadyExistsFault', error: {"code"=>"CacheClusterAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
41
+ CacheClusterAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheClusterAlreadyExistsFault', error: {"code" => "CacheClusterAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
42
42
  CacheClusterIdList = Shapes::ListShape.new(name: 'CacheClusterIdList')
43
43
  CacheClusterList = Shapes::ListShape.new(name: 'CacheClusterList')
44
44
  CacheClusterMessage = Shapes::StructureShape.new(name: 'CacheClusterMessage')
45
- CacheClusterNotFoundFault = Shapes::StructureShape.new(name: 'CacheClusterNotFoundFault', error: {"code"=>"CacheClusterNotFound", "httpStatusCode"=>404, "senderFault"=>true})
45
+ CacheClusterNotFoundFault = Shapes::StructureShape.new(name: 'CacheClusterNotFoundFault', error: {"code" => "CacheClusterNotFound", "httpStatusCode" => 404, "senderFault" => true})
46
46
  CacheEngineVersion = Shapes::StructureShape.new(name: 'CacheEngineVersion')
47
47
  CacheEngineVersionList = Shapes::ListShape.new(name: 'CacheEngineVersionList')
48
48
  CacheEngineVersionMessage = Shapes::StructureShape.new(name: 'CacheEngineVersionMessage')
@@ -56,37 +56,37 @@ module Aws::ElastiCache
56
56
  CacheNodeUpdateStatus = Shapes::StructureShape.new(name: 'CacheNodeUpdateStatus')
57
57
  CacheNodeUpdateStatusList = Shapes::ListShape.new(name: 'CacheNodeUpdateStatusList')
58
58
  CacheParameterGroup = Shapes::StructureShape.new(name: 'CacheParameterGroup')
59
- CacheParameterGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheParameterGroupAlreadyExistsFault', error: {"code"=>"CacheParameterGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
59
+ CacheParameterGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheParameterGroupAlreadyExistsFault', error: {"code" => "CacheParameterGroupAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
60
60
  CacheParameterGroupDetails = Shapes::StructureShape.new(name: 'CacheParameterGroupDetails')
61
61
  CacheParameterGroupList = Shapes::ListShape.new(name: 'CacheParameterGroupList')
62
62
  CacheParameterGroupNameMessage = Shapes::StructureShape.new(name: 'CacheParameterGroupNameMessage')
63
- CacheParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'CacheParameterGroupNotFoundFault', error: {"code"=>"CacheParameterGroupNotFound", "httpStatusCode"=>404, "senderFault"=>true})
64
- CacheParameterGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheParameterGroupQuotaExceededFault', error: {"code"=>"CacheParameterGroupQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
63
+ CacheParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'CacheParameterGroupNotFoundFault', error: {"code" => "CacheParameterGroupNotFound", "httpStatusCode" => 404, "senderFault" => true})
64
+ CacheParameterGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheParameterGroupQuotaExceededFault', error: {"code" => "CacheParameterGroupQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
65
65
  CacheParameterGroupStatus = Shapes::StructureShape.new(name: 'CacheParameterGroupStatus')
66
66
  CacheParameterGroupsMessage = Shapes::StructureShape.new(name: 'CacheParameterGroupsMessage')
67
67
  CacheSecurityGroup = Shapes::StructureShape.new(name: 'CacheSecurityGroup')
68
- CacheSecurityGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheSecurityGroupAlreadyExistsFault', error: {"code"=>"CacheSecurityGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
68
+ CacheSecurityGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheSecurityGroupAlreadyExistsFault', error: {"code" => "CacheSecurityGroupAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
69
69
  CacheSecurityGroupMembership = Shapes::StructureShape.new(name: 'CacheSecurityGroupMembership')
70
70
  CacheSecurityGroupMembershipList = Shapes::ListShape.new(name: 'CacheSecurityGroupMembershipList')
71
71
  CacheSecurityGroupMessage = Shapes::StructureShape.new(name: 'CacheSecurityGroupMessage')
72
72
  CacheSecurityGroupNameList = Shapes::ListShape.new(name: 'CacheSecurityGroupNameList')
73
- CacheSecurityGroupNotFoundFault = Shapes::StructureShape.new(name: 'CacheSecurityGroupNotFoundFault', error: {"code"=>"CacheSecurityGroupNotFound", "httpStatusCode"=>404, "senderFault"=>true})
74
- CacheSecurityGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheSecurityGroupQuotaExceededFault', error: {"code"=>"QuotaExceeded.CacheSecurityGroup", "httpStatusCode"=>400, "senderFault"=>true})
73
+ CacheSecurityGroupNotFoundFault = Shapes::StructureShape.new(name: 'CacheSecurityGroupNotFoundFault', error: {"code" => "CacheSecurityGroupNotFound", "httpStatusCode" => 404, "senderFault" => true})
74
+ CacheSecurityGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheSecurityGroupQuotaExceededFault', error: {"code" => "QuotaExceeded.CacheSecurityGroup", "httpStatusCode" => 400, "senderFault" => true})
75
75
  CacheSecurityGroups = Shapes::ListShape.new(name: 'CacheSecurityGroups')
76
76
  CacheSubnetGroup = Shapes::StructureShape.new(name: 'CacheSubnetGroup')
77
- CacheSubnetGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheSubnetGroupAlreadyExistsFault', error: {"code"=>"CacheSubnetGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
78
- CacheSubnetGroupInUse = Shapes::StructureShape.new(name: 'CacheSubnetGroupInUse', error: {"code"=>"CacheSubnetGroupInUse", "httpStatusCode"=>400, "senderFault"=>true})
77
+ CacheSubnetGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'CacheSubnetGroupAlreadyExistsFault', error: {"code" => "CacheSubnetGroupAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
78
+ CacheSubnetGroupInUse = Shapes::StructureShape.new(name: 'CacheSubnetGroupInUse', error: {"code" => "CacheSubnetGroupInUse", "httpStatusCode" => 400, "senderFault" => true})
79
79
  CacheSubnetGroupMessage = Shapes::StructureShape.new(name: 'CacheSubnetGroupMessage')
80
- CacheSubnetGroupNotFoundFault = Shapes::StructureShape.new(name: 'CacheSubnetGroupNotFoundFault', error: {"code"=>"CacheSubnetGroupNotFoundFault", "httpStatusCode"=>400, "senderFault"=>true})
81
- CacheSubnetGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheSubnetGroupQuotaExceededFault', error: {"code"=>"CacheSubnetGroupQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
80
+ CacheSubnetGroupNotFoundFault = Shapes::StructureShape.new(name: 'CacheSubnetGroupNotFoundFault', error: {"code" => "CacheSubnetGroupNotFoundFault", "httpStatusCode" => 400, "senderFault" => true})
81
+ CacheSubnetGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheSubnetGroupQuotaExceededFault', error: {"code" => "CacheSubnetGroupQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
82
82
  CacheSubnetGroups = Shapes::ListShape.new(name: 'CacheSubnetGroups')
83
- CacheSubnetQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheSubnetQuotaExceededFault', error: {"code"=>"CacheSubnetQuotaExceededFault", "httpStatusCode"=>400, "senderFault"=>true})
83
+ CacheSubnetQuotaExceededFault = Shapes::StructureShape.new(name: 'CacheSubnetQuotaExceededFault', error: {"code" => "CacheSubnetQuotaExceededFault", "httpStatusCode" => 400, "senderFault" => true})
84
84
  CacheUsageLimits = Shapes::StructureShape.new(name: 'CacheUsageLimits')
85
85
  ChangeType = Shapes::StringShape.new(name: 'ChangeType')
86
86
  CloudWatchLogsDestinationDetails = Shapes::StructureShape.new(name: 'CloudWatchLogsDestinationDetails')
87
87
  ClusterIdList = Shapes::ListShape.new(name: 'ClusterIdList')
88
88
  ClusterMode = Shapes::StringShape.new(name: 'ClusterMode')
89
- ClusterQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'ClusterQuotaForCustomerExceededFault', error: {"code"=>"ClusterQuotaForCustomerExceeded", "httpStatusCode"=>400, "senderFault"=>true})
89
+ ClusterQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'ClusterQuotaForCustomerExceededFault', error: {"code" => "ClusterQuotaForCustomerExceeded", "httpStatusCode" => 400, "senderFault" => true})
90
90
  CompleteMigrationMessage = Shapes::StructureShape.new(name: 'CompleteMigrationMessage')
91
91
  CompleteMigrationResponse = Shapes::StructureShape.new(name: 'CompleteMigrationResponse')
92
92
  ConfigureShard = Shapes::StructureShape.new(name: 'ConfigureShard')
@@ -123,8 +123,8 @@ module Aws::ElastiCache
123
123
  DecreaseNodeGroupsInGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'DecreaseNodeGroupsInGlobalReplicationGroupResult')
124
124
  DecreaseReplicaCountMessage = Shapes::StructureShape.new(name: 'DecreaseReplicaCountMessage')
125
125
  DecreaseReplicaCountResult = Shapes::StructureShape.new(name: 'DecreaseReplicaCountResult')
126
- DefaultUserAssociatedToUserGroupFault = Shapes::StructureShape.new(name: 'DefaultUserAssociatedToUserGroupFault', error: {"code"=>"DefaultUserAssociatedToUserGroup", "httpStatusCode"=>400, "senderFault"=>true})
127
- DefaultUserRequired = Shapes::StructureShape.new(name: 'DefaultUserRequired', error: {"code"=>"DefaultUserRequired", "httpStatusCode"=>400, "senderFault"=>true})
126
+ DefaultUserAssociatedToUserGroupFault = Shapes::StructureShape.new(name: 'DefaultUserAssociatedToUserGroupFault', error: {"code" => "DefaultUserAssociatedToUserGroup", "httpStatusCode" => 400, "senderFault" => true})
127
+ DefaultUserRequired = Shapes::StructureShape.new(name: 'DefaultUserRequired', error: {"code" => "DefaultUserRequired", "httpStatusCode" => 400, "senderFault" => true})
128
128
  DeleteCacheClusterMessage = Shapes::StructureShape.new(name: 'DeleteCacheClusterMessage')
129
129
  DeleteCacheClusterResult = Shapes::StructureShape.new(name: 'DeleteCacheClusterResult')
130
130
  DeleteCacheParameterGroupMessage = Shapes::StructureShape.new(name: 'DeleteCacheParameterGroupMessage')
@@ -173,7 +173,7 @@ module Aws::ElastiCache
173
173
  DisassociateGlobalReplicationGroupMessage = Shapes::StructureShape.new(name: 'DisassociateGlobalReplicationGroupMessage')
174
174
  DisassociateGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'DisassociateGlobalReplicationGroupResult')
175
175
  Double = Shapes::FloatShape.new(name: 'Double')
176
- DuplicateUserNameFault = Shapes::StructureShape.new(name: 'DuplicateUserNameFault', error: {"code"=>"DuplicateUserName", "httpStatusCode"=>400, "senderFault"=>true})
176
+ DuplicateUserNameFault = Shapes::StructureShape.new(name: 'DuplicateUserNameFault', error: {"code" => "DuplicateUserName", "httpStatusCode" => 400, "senderFault" => true})
177
177
  EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
178
178
  EC2SecurityGroupList = Shapes::ListShape.new(name: 'EC2SecurityGroupList')
179
179
  ECPUPerSecond = Shapes::StructureShape.new(name: 'ECPUPerSecond')
@@ -196,37 +196,37 @@ module Aws::ElastiCache
196
196
  GlobalNodeGroupIdList = Shapes::ListShape.new(name: 'GlobalNodeGroupIdList')
197
197
  GlobalNodeGroupList = Shapes::ListShape.new(name: 'GlobalNodeGroupList')
198
198
  GlobalReplicationGroup = Shapes::StructureShape.new(name: 'GlobalReplicationGroup')
199
- GlobalReplicationGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'GlobalReplicationGroupAlreadyExistsFault', error: {"code"=>"GlobalReplicationGroupAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
199
+ GlobalReplicationGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'GlobalReplicationGroupAlreadyExistsFault', error: {"code" => "GlobalReplicationGroupAlreadyExistsFault", "httpStatusCode" => 400, "senderFault" => true})
200
200
  GlobalReplicationGroupInfo = Shapes::StructureShape.new(name: 'GlobalReplicationGroupInfo')
201
201
  GlobalReplicationGroupList = Shapes::ListShape.new(name: 'GlobalReplicationGroupList')
202
202
  GlobalReplicationGroupMember = Shapes::StructureShape.new(name: 'GlobalReplicationGroupMember')
203
203
  GlobalReplicationGroupMemberList = Shapes::ListShape.new(name: 'GlobalReplicationGroupMemberList')
204
- GlobalReplicationGroupNotFoundFault = Shapes::StructureShape.new(name: 'GlobalReplicationGroupNotFoundFault', error: {"code"=>"GlobalReplicationGroupNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
204
+ GlobalReplicationGroupNotFoundFault = Shapes::StructureShape.new(name: 'GlobalReplicationGroupNotFoundFault', error: {"code" => "GlobalReplicationGroupNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
205
205
  IncreaseNodeGroupsInGlobalReplicationGroupMessage = Shapes::StructureShape.new(name: 'IncreaseNodeGroupsInGlobalReplicationGroupMessage')
206
206
  IncreaseNodeGroupsInGlobalReplicationGroupResult = Shapes::StructureShape.new(name: 'IncreaseNodeGroupsInGlobalReplicationGroupResult')
207
207
  IncreaseReplicaCountMessage = Shapes::StructureShape.new(name: 'IncreaseReplicaCountMessage')
208
208
  IncreaseReplicaCountResult = Shapes::StructureShape.new(name: 'IncreaseReplicaCountResult')
209
209
  InputAuthenticationType = Shapes::StringShape.new(name: 'InputAuthenticationType')
210
- InsufficientCacheClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientCacheClusterCapacityFault', error: {"code"=>"InsufficientCacheClusterCapacity", "httpStatusCode"=>400, "senderFault"=>true})
210
+ InsufficientCacheClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientCacheClusterCapacityFault', error: {"code" => "InsufficientCacheClusterCapacity", "httpStatusCode" => 400, "senderFault" => true})
211
211
  Integer = Shapes::IntegerShape.new(name: 'Integer')
212
212
  IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
213
- InvalidARNFault = Shapes::StructureShape.new(name: 'InvalidARNFault', error: {"code"=>"InvalidARN", "httpStatusCode"=>400, "senderFault"=>true})
214
- InvalidCacheClusterStateFault = Shapes::StructureShape.new(name: 'InvalidCacheClusterStateFault', error: {"code"=>"InvalidCacheClusterState", "httpStatusCode"=>400, "senderFault"=>true})
215
- InvalidCacheParameterGroupStateFault = Shapes::StructureShape.new(name: 'InvalidCacheParameterGroupStateFault', error: {"code"=>"InvalidCacheParameterGroupState", "httpStatusCode"=>400, "senderFault"=>true})
216
- InvalidCacheSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidCacheSecurityGroupStateFault', error: {"code"=>"InvalidCacheSecurityGroupState", "httpStatusCode"=>400, "senderFault"=>true})
217
- InvalidCredentialsException = Shapes::StructureShape.new(name: 'InvalidCredentialsException', error: {"code"=>"InvalidCredentialsException", "httpStatusCode"=>408, "senderFault"=>true})
218
- InvalidGlobalReplicationGroupStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalReplicationGroupStateFault', error: {"code"=>"InvalidGlobalReplicationGroupState", "httpStatusCode"=>400, "senderFault"=>true})
219
- InvalidKMSKeyFault = Shapes::StructureShape.new(name: 'InvalidKMSKeyFault', error: {"code"=>"InvalidKMSKeyFault", "httpStatusCode"=>400, "senderFault"=>true})
220
- InvalidParameterCombinationException = Shapes::StructureShape.new(name: 'InvalidParameterCombinationException', error: {"code"=>"InvalidParameterCombination", "httpStatusCode"=>400, "senderFault"=>true})
221
- InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException', error: {"code"=>"InvalidParameterValue", "httpStatusCode"=>400, "senderFault"=>true})
222
- InvalidReplicationGroupStateFault = Shapes::StructureShape.new(name: 'InvalidReplicationGroupStateFault', error: {"code"=>"InvalidReplicationGroupState", "httpStatusCode"=>400, "senderFault"=>true})
223
- InvalidServerlessCacheSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidServerlessCacheSnapshotStateFault', error: {"code"=>"InvalidServerlessCacheSnapshotStateFault", "httpStatusCode"=>400, "senderFault"=>true})
224
- InvalidServerlessCacheStateFault = Shapes::StructureShape.new(name: 'InvalidServerlessCacheStateFault', error: {"code"=>"InvalidServerlessCacheStateFault", "httpStatusCode"=>400, "senderFault"=>true})
225
- InvalidSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidSnapshotStateFault', error: {"code"=>"InvalidSnapshotState", "httpStatusCode"=>400, "senderFault"=>true})
226
- InvalidSubnet = Shapes::StructureShape.new(name: 'InvalidSubnet', error: {"code"=>"InvalidSubnet", "httpStatusCode"=>400, "senderFault"=>true})
227
- InvalidUserGroupStateFault = Shapes::StructureShape.new(name: 'InvalidUserGroupStateFault', error: {"code"=>"InvalidUserGroupState", "httpStatusCode"=>400, "senderFault"=>true})
228
- InvalidUserStateFault = Shapes::StructureShape.new(name: 'InvalidUserStateFault', error: {"code"=>"InvalidUserState", "httpStatusCode"=>400, "senderFault"=>true})
229
- InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault', error: {"code"=>"InvalidVPCNetworkStateFault", "httpStatusCode"=>400, "senderFault"=>true})
213
+ InvalidARNFault = Shapes::StructureShape.new(name: 'InvalidARNFault', error: {"code" => "InvalidARN", "httpStatusCode" => 400, "senderFault" => true})
214
+ InvalidCacheClusterStateFault = Shapes::StructureShape.new(name: 'InvalidCacheClusterStateFault', error: {"code" => "InvalidCacheClusterState", "httpStatusCode" => 400, "senderFault" => true})
215
+ InvalidCacheParameterGroupStateFault = Shapes::StructureShape.new(name: 'InvalidCacheParameterGroupStateFault', error: {"code" => "InvalidCacheParameterGroupState", "httpStatusCode" => 400, "senderFault" => true})
216
+ InvalidCacheSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidCacheSecurityGroupStateFault', error: {"code" => "InvalidCacheSecurityGroupState", "httpStatusCode" => 400, "senderFault" => true})
217
+ InvalidCredentialsException = Shapes::StructureShape.new(name: 'InvalidCredentialsException', error: {"code" => "InvalidCredentialsException", "httpStatusCode" => 408, "senderFault" => true})
218
+ InvalidGlobalReplicationGroupStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalReplicationGroupStateFault', error: {"code" => "InvalidGlobalReplicationGroupState", "httpStatusCode" => 400, "senderFault" => true})
219
+ InvalidKMSKeyFault = Shapes::StructureShape.new(name: 'InvalidKMSKeyFault', error: {"code" => "InvalidKMSKeyFault", "httpStatusCode" => 400, "senderFault" => true})
220
+ InvalidParameterCombinationException = Shapes::StructureShape.new(name: 'InvalidParameterCombinationException', error: {"code" => "InvalidParameterCombination", "httpStatusCode" => 400, "senderFault" => true})
221
+ InvalidParameterValueException = Shapes::StructureShape.new(name: 'InvalidParameterValueException', error: {"code" => "InvalidParameterValue", "httpStatusCode" => 400, "senderFault" => true})
222
+ InvalidReplicationGroupStateFault = Shapes::StructureShape.new(name: 'InvalidReplicationGroupStateFault', error: {"code" => "InvalidReplicationGroupState", "httpStatusCode" => 400, "senderFault" => true})
223
+ InvalidServerlessCacheSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidServerlessCacheSnapshotStateFault', error: {"code" => "InvalidServerlessCacheSnapshotStateFault", "httpStatusCode" => 400, "senderFault" => true})
224
+ InvalidServerlessCacheStateFault = Shapes::StructureShape.new(name: 'InvalidServerlessCacheStateFault', error: {"code" => "InvalidServerlessCacheStateFault", "httpStatusCode" => 400, "senderFault" => true})
225
+ InvalidSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidSnapshotStateFault', error: {"code" => "InvalidSnapshotState", "httpStatusCode" => 400, "senderFault" => true})
226
+ InvalidSubnet = Shapes::StructureShape.new(name: 'InvalidSubnet', error: {"code" => "InvalidSubnet", "httpStatusCode" => 400, "senderFault" => true})
227
+ InvalidUserGroupStateFault = Shapes::StructureShape.new(name: 'InvalidUserGroupStateFault', error: {"code" => "InvalidUserGroupState", "httpStatusCode" => 400, "senderFault" => true})
228
+ InvalidUserStateFault = Shapes::StructureShape.new(name: 'InvalidUserStateFault', error: {"code" => "InvalidUserState", "httpStatusCode" => 400, "senderFault" => true})
229
+ InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault', error: {"code" => "InvalidVPCNetworkStateFault", "httpStatusCode" => 400, "senderFault" => true})
230
230
  IpDiscovery = Shapes::StringShape.new(name: 'IpDiscovery')
231
231
  KeyList = Shapes::ListShape.new(name: 'KeyList')
232
232
  KinesisFirehoseDestinationDetails = Shapes::StructureShape.new(name: 'KinesisFirehoseDestinationDetails')
@@ -257,7 +257,7 @@ module Aws::ElastiCache
257
257
  MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
258
258
  NetworkType = Shapes::StringShape.new(name: 'NetworkType')
259
259
  NetworkTypeList = Shapes::ListShape.new(name: 'NetworkTypeList')
260
- NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault', error: {"code"=>"NoOperationFault", "httpStatusCode"=>400, "senderFault"=>true})
260
+ NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault', error: {"code" => "NoOperationFault", "httpStatusCode" => 400, "senderFault" => true})
261
261
  NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
262
262
  NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
263
263
  NodeGroupConfigurationList = Shapes::ListShape.new(name: 'NodeGroupConfigurationList')
@@ -266,14 +266,14 @@ module Aws::ElastiCache
266
266
  NodeGroupMemberList = Shapes::ListShape.new(name: 'NodeGroupMemberList')
267
267
  NodeGroupMemberUpdateStatus = Shapes::StructureShape.new(name: 'NodeGroupMemberUpdateStatus')
268
268
  NodeGroupMemberUpdateStatusList = Shapes::ListShape.new(name: 'NodeGroupMemberUpdateStatusList')
269
- NodeGroupNotFoundFault = Shapes::StructureShape.new(name: 'NodeGroupNotFoundFault', error: {"code"=>"NodeGroupNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
269
+ NodeGroupNotFoundFault = Shapes::StructureShape.new(name: 'NodeGroupNotFoundFault', error: {"code" => "NodeGroupNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
270
270
  NodeGroupUpdateStatus = Shapes::StructureShape.new(name: 'NodeGroupUpdateStatus')
271
271
  NodeGroupUpdateStatusList = Shapes::ListShape.new(name: 'NodeGroupUpdateStatusList')
272
- NodeGroupsPerReplicationGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'NodeGroupsPerReplicationGroupQuotaExceededFault', error: {"code"=>"NodeGroupsPerReplicationGroupQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
272
+ NodeGroupsPerReplicationGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'NodeGroupsPerReplicationGroupQuotaExceededFault', error: {"code" => "NodeGroupsPerReplicationGroupQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
273
273
  NodeGroupsToRemoveList = Shapes::ListShape.new(name: 'NodeGroupsToRemoveList')
274
274
  NodeGroupsToRetainList = Shapes::ListShape.new(name: 'NodeGroupsToRetainList')
275
- NodeQuotaForClusterExceededFault = Shapes::StructureShape.new(name: 'NodeQuotaForClusterExceededFault', error: {"code"=>"NodeQuotaForClusterExceeded", "httpStatusCode"=>400, "senderFault"=>true})
276
- NodeQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'NodeQuotaForCustomerExceededFault', error: {"code"=>"NodeQuotaForCustomerExceeded", "httpStatusCode"=>400, "senderFault"=>true})
275
+ NodeQuotaForClusterExceededFault = Shapes::StructureShape.new(name: 'NodeQuotaForClusterExceededFault', error: {"code" => "NodeQuotaForClusterExceeded", "httpStatusCode" => 400, "senderFault" => true})
276
+ NodeQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'NodeQuotaForCustomerExceededFault', error: {"code" => "NodeQuotaForCustomerExceeded", "httpStatusCode" => 400, "senderFault" => true})
277
277
  NodeSnapshot = Shapes::StructureShape.new(name: 'NodeSnapshot')
278
278
  NodeSnapshotList = Shapes::ListShape.new(name: 'NodeSnapshotList')
279
279
  NodeTypeList = Shapes::ListShape.new(name: 'NodeTypeList')
@@ -309,49 +309,50 @@ module Aws::ElastiCache
309
309
  RemoveTagsFromResourceMessage = Shapes::StructureShape.new(name: 'RemoveTagsFromResourceMessage')
310
310
  ReplicaConfigurationList = Shapes::ListShape.new(name: 'ReplicaConfigurationList')
311
311
  ReplicationGroup = Shapes::StructureShape.new(name: 'ReplicationGroup')
312
- ReplicationGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'ReplicationGroupAlreadyExistsFault', error: {"code"=>"ReplicationGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
313
- ReplicationGroupAlreadyUnderMigrationFault = Shapes::StructureShape.new(name: 'ReplicationGroupAlreadyUnderMigrationFault', error: {"code"=>"ReplicationGroupAlreadyUnderMigrationFault", "httpStatusCode"=>400, "senderFault"=>true})
312
+ ReplicationGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'ReplicationGroupAlreadyExistsFault', error: {"code" => "ReplicationGroupAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
313
+ ReplicationGroupAlreadyUnderMigrationFault = Shapes::StructureShape.new(name: 'ReplicationGroupAlreadyUnderMigrationFault', error: {"code" => "ReplicationGroupAlreadyUnderMigrationFault", "httpStatusCode" => 400, "senderFault" => true})
314
314
  ReplicationGroupIdList = Shapes::ListShape.new(name: 'ReplicationGroupIdList')
315
315
  ReplicationGroupList = Shapes::ListShape.new(name: 'ReplicationGroupList')
316
316
  ReplicationGroupMessage = Shapes::StructureShape.new(name: 'ReplicationGroupMessage')
317
- ReplicationGroupNotFoundFault = Shapes::StructureShape.new(name: 'ReplicationGroupNotFoundFault', error: {"code"=>"ReplicationGroupNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
318
- ReplicationGroupNotUnderMigrationFault = Shapes::StructureShape.new(name: 'ReplicationGroupNotUnderMigrationFault', error: {"code"=>"ReplicationGroupNotUnderMigrationFault", "httpStatusCode"=>400, "senderFault"=>true})
317
+ ReplicationGroupNotFoundFault = Shapes::StructureShape.new(name: 'ReplicationGroupNotFoundFault', error: {"code" => "ReplicationGroupNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
318
+ ReplicationGroupNotUnderMigrationFault = Shapes::StructureShape.new(name: 'ReplicationGroupNotUnderMigrationFault', error: {"code" => "ReplicationGroupNotUnderMigrationFault", "httpStatusCode" => 400, "senderFault" => true})
319
319
  ReplicationGroupOutpostArnList = Shapes::ListShape.new(name: 'ReplicationGroupOutpostArnList')
320
320
  ReplicationGroupPendingModifiedValues = Shapes::StructureShape.new(name: 'ReplicationGroupPendingModifiedValues')
321
321
  ReservedCacheNode = Shapes::StructureShape.new(name: 'ReservedCacheNode')
322
- ReservedCacheNodeAlreadyExistsFault = Shapes::StructureShape.new(name: 'ReservedCacheNodeAlreadyExistsFault', error: {"code"=>"ReservedCacheNodeAlreadyExists", "httpStatusCode"=>404, "senderFault"=>true})
322
+ ReservedCacheNodeAlreadyExistsFault = Shapes::StructureShape.new(name: 'ReservedCacheNodeAlreadyExistsFault', error: {"code" => "ReservedCacheNodeAlreadyExists", "httpStatusCode" => 404, "senderFault" => true})
323
323
  ReservedCacheNodeList = Shapes::ListShape.new(name: 'ReservedCacheNodeList')
324
324
  ReservedCacheNodeMessage = Shapes::StructureShape.new(name: 'ReservedCacheNodeMessage')
325
- ReservedCacheNodeNotFoundFault = Shapes::StructureShape.new(name: 'ReservedCacheNodeNotFoundFault', error: {"code"=>"ReservedCacheNodeNotFound", "httpStatusCode"=>404, "senderFault"=>true})
326
- ReservedCacheNodeQuotaExceededFault = Shapes::StructureShape.new(name: 'ReservedCacheNodeQuotaExceededFault', error: {"code"=>"ReservedCacheNodeQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
325
+ ReservedCacheNodeNotFoundFault = Shapes::StructureShape.new(name: 'ReservedCacheNodeNotFoundFault', error: {"code" => "ReservedCacheNodeNotFound", "httpStatusCode" => 404, "senderFault" => true})
326
+ ReservedCacheNodeQuotaExceededFault = Shapes::StructureShape.new(name: 'ReservedCacheNodeQuotaExceededFault', error: {"code" => "ReservedCacheNodeQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
327
327
  ReservedCacheNodesOffering = Shapes::StructureShape.new(name: 'ReservedCacheNodesOffering')
328
328
  ReservedCacheNodesOfferingList = Shapes::ListShape.new(name: 'ReservedCacheNodesOfferingList')
329
329
  ReservedCacheNodesOfferingMessage = Shapes::StructureShape.new(name: 'ReservedCacheNodesOfferingMessage')
330
- ReservedCacheNodesOfferingNotFoundFault = Shapes::StructureShape.new(name: 'ReservedCacheNodesOfferingNotFoundFault', error: {"code"=>"ReservedCacheNodesOfferingNotFound", "httpStatusCode"=>404, "senderFault"=>true})
330
+ ReservedCacheNodesOfferingNotFoundFault = Shapes::StructureShape.new(name: 'ReservedCacheNodesOfferingNotFoundFault', error: {"code" => "ReservedCacheNodesOfferingNotFound", "httpStatusCode" => 404, "senderFault" => true})
331
331
  ResetCacheParameterGroupMessage = Shapes::StructureShape.new(name: 'ResetCacheParameterGroupMessage')
332
332
  ReshardingConfiguration = Shapes::StructureShape.new(name: 'ReshardingConfiguration')
333
333
  ReshardingConfigurationList = Shapes::ListShape.new(name: 'ReshardingConfigurationList')
334
334
  ReshardingStatus = Shapes::StructureShape.new(name: 'ReshardingStatus')
335
335
  RevokeCacheSecurityGroupIngressMessage = Shapes::StructureShape.new(name: 'RevokeCacheSecurityGroupIngressMessage')
336
336
  RevokeCacheSecurityGroupIngressResult = Shapes::StructureShape.new(name: 'RevokeCacheSecurityGroupIngressResult')
337
+ ScaleConfig = Shapes::StructureShape.new(name: 'ScaleConfig')
337
338
  SecurityGroupIdsList = Shapes::ListShape.new(name: 'SecurityGroupIdsList')
338
339
  SecurityGroupMembership = Shapes::StructureShape.new(name: 'SecurityGroupMembership')
339
340
  SecurityGroupMembershipList = Shapes::ListShape.new(name: 'SecurityGroupMembershipList')
340
341
  ServerlessCache = Shapes::StructureShape.new(name: 'ServerlessCache')
341
- ServerlessCacheAlreadyExistsFault = Shapes::StructureShape.new(name: 'ServerlessCacheAlreadyExistsFault', error: {"code"=>"ServerlessCacheAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
342
+ ServerlessCacheAlreadyExistsFault = Shapes::StructureShape.new(name: 'ServerlessCacheAlreadyExistsFault', error: {"code" => "ServerlessCacheAlreadyExistsFault", "httpStatusCode" => 400, "senderFault" => true})
342
343
  ServerlessCacheConfiguration = Shapes::StructureShape.new(name: 'ServerlessCacheConfiguration')
343
344
  ServerlessCacheList = Shapes::ListShape.new(name: 'ServerlessCacheList')
344
- ServerlessCacheNotFoundFault = Shapes::StructureShape.new(name: 'ServerlessCacheNotFoundFault', error: {"code"=>"ServerlessCacheNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
345
- ServerlessCacheQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'ServerlessCacheQuotaForCustomerExceededFault', error: {"code"=>"ServerlessCacheQuotaForCustomerExceededFault", "httpStatusCode"=>400, "senderFault"=>true})
345
+ ServerlessCacheNotFoundFault = Shapes::StructureShape.new(name: 'ServerlessCacheNotFoundFault', error: {"code" => "ServerlessCacheNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
346
+ ServerlessCacheQuotaForCustomerExceededFault = Shapes::StructureShape.new(name: 'ServerlessCacheQuotaForCustomerExceededFault', error: {"code" => "ServerlessCacheQuotaForCustomerExceededFault", "httpStatusCode" => 400, "senderFault" => true})
346
347
  ServerlessCacheSnapshot = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshot')
347
- ServerlessCacheSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshotAlreadyExistsFault', error: {"code"=>"ServerlessCacheSnapshotAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
348
+ ServerlessCacheSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshotAlreadyExistsFault', error: {"code" => "ServerlessCacheSnapshotAlreadyExistsFault", "httpStatusCode" => 400, "senderFault" => true})
348
349
  ServerlessCacheSnapshotList = Shapes::ListShape.new(name: 'ServerlessCacheSnapshotList')
349
- ServerlessCacheSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshotNotFoundFault', error: {"code"=>"ServerlessCacheSnapshotNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
350
- ServerlessCacheSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshotQuotaExceededFault', error: {"code"=>"ServerlessCacheSnapshotQuotaExceededFault", "httpStatusCode"=>400, "senderFault"=>true})
351
- ServiceLinkedRoleNotFoundFault = Shapes::StructureShape.new(name: 'ServiceLinkedRoleNotFoundFault', error: {"code"=>"ServiceLinkedRoleNotFoundFault", "httpStatusCode"=>400, "senderFault"=>true})
350
+ ServerlessCacheSnapshotNotFoundFault = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshotNotFoundFault', error: {"code" => "ServerlessCacheSnapshotNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
351
+ ServerlessCacheSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'ServerlessCacheSnapshotQuotaExceededFault', error: {"code" => "ServerlessCacheSnapshotQuotaExceededFault", "httpStatusCode" => 400, "senderFault" => true})
352
+ ServiceLinkedRoleNotFoundFault = Shapes::StructureShape.new(name: 'ServiceLinkedRoleNotFoundFault', error: {"code" => "ServiceLinkedRoleNotFoundFault", "httpStatusCode" => 400, "senderFault" => true})
352
353
  ServiceUpdate = Shapes::StructureShape.new(name: 'ServiceUpdate')
353
354
  ServiceUpdateList = Shapes::ListShape.new(name: 'ServiceUpdateList')
354
- ServiceUpdateNotFoundFault = Shapes::StructureShape.new(name: 'ServiceUpdateNotFoundFault', error: {"code"=>"ServiceUpdateNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
355
+ ServiceUpdateNotFoundFault = Shapes::StructureShape.new(name: 'ServiceUpdateNotFoundFault', error: {"code" => "ServiceUpdateNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
355
356
  ServiceUpdateSeverity = Shapes::StringShape.new(name: 'ServiceUpdateSeverity')
356
357
  ServiceUpdateStatus = Shapes::StringShape.new(name: 'ServiceUpdateStatus')
357
358
  ServiceUpdateStatusList = Shapes::ListShape.new(name: 'ServiceUpdateStatusList')
@@ -360,12 +361,12 @@ module Aws::ElastiCache
360
361
  SlaMet = Shapes::StringShape.new(name: 'SlaMet')
361
362
  SlotMigration = Shapes::StructureShape.new(name: 'SlotMigration')
362
363
  Snapshot = Shapes::StructureShape.new(name: 'Snapshot')
363
- SnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'SnapshotAlreadyExistsFault', error: {"code"=>"SnapshotAlreadyExistsFault", "httpStatusCode"=>400, "senderFault"=>true})
364
+ SnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'SnapshotAlreadyExistsFault', error: {"code" => "SnapshotAlreadyExistsFault", "httpStatusCode" => 400, "senderFault" => true})
364
365
  SnapshotArnsList = Shapes::ListShape.new(name: 'SnapshotArnsList')
365
- SnapshotFeatureNotSupportedFault = Shapes::StructureShape.new(name: 'SnapshotFeatureNotSupportedFault', error: {"code"=>"SnapshotFeatureNotSupportedFault", "httpStatusCode"=>400, "senderFault"=>true})
366
+ SnapshotFeatureNotSupportedFault = Shapes::StructureShape.new(name: 'SnapshotFeatureNotSupportedFault', error: {"code" => "SnapshotFeatureNotSupportedFault", "httpStatusCode" => 400, "senderFault" => true})
366
367
  SnapshotList = Shapes::ListShape.new(name: 'SnapshotList')
367
- SnapshotNotFoundFault = Shapes::StructureShape.new(name: 'SnapshotNotFoundFault', error: {"code"=>"SnapshotNotFoundFault", "httpStatusCode"=>404, "senderFault"=>true})
368
- SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault', error: {"code"=>"SnapshotQuotaExceededFault", "httpStatusCode"=>400, "senderFault"=>true})
368
+ SnapshotNotFoundFault = Shapes::StructureShape.new(name: 'SnapshotNotFoundFault', error: {"code" => "SnapshotNotFoundFault", "httpStatusCode" => 404, "senderFault" => true})
369
+ SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault', error: {"code" => "SnapshotQuotaExceededFault", "httpStatusCode" => 400, "senderFault" => true})
369
370
  SourceType = Shapes::StringShape.new(name: 'SourceType')
370
371
  StartMigrationMessage = Shapes::StructureShape.new(name: 'StartMigrationMessage')
371
372
  StartMigrationResponse = Shapes::StructureShape.new(name: 'StartMigrationResponse')
@@ -373,18 +374,18 @@ module Aws::ElastiCache
373
374
  Subnet = Shapes::StructureShape.new(name: 'Subnet')
374
375
  SubnetIdentifierList = Shapes::ListShape.new(name: 'SubnetIdentifierList')
375
376
  SubnetIdsList = Shapes::ListShape.new(name: 'SubnetIdsList')
376
- SubnetInUse = Shapes::StructureShape.new(name: 'SubnetInUse', error: {"code"=>"SubnetInUse", "httpStatusCode"=>400, "senderFault"=>true})
377
+ SubnetInUse = Shapes::StructureShape.new(name: 'SubnetInUse', error: {"code" => "SubnetInUse", "httpStatusCode" => 400, "senderFault" => true})
377
378
  SubnetList = Shapes::ListShape.new(name: 'SubnetList')
378
- SubnetNotAllowedFault = Shapes::StructureShape.new(name: 'SubnetNotAllowedFault', error: {"code"=>"SubnetNotAllowedFault", "httpStatusCode"=>400, "senderFault"=>true})
379
+ SubnetNotAllowedFault = Shapes::StructureShape.new(name: 'SubnetNotAllowedFault', error: {"code" => "SubnetNotAllowedFault", "httpStatusCode" => 400, "senderFault" => true})
379
380
  SubnetOutpost = Shapes::StructureShape.new(name: 'SubnetOutpost')
380
381
  TStamp = Shapes::TimestampShape.new(name: 'TStamp')
381
382
  Tag = Shapes::StructureShape.new(name: 'Tag')
382
383
  TagList = Shapes::ListShape.new(name: 'TagList')
383
384
  TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
384
- TagNotFoundFault = Shapes::StructureShape.new(name: 'TagNotFoundFault', error: {"code"=>"TagNotFound", "httpStatusCode"=>404, "senderFault"=>true})
385
- TagQuotaPerResourceExceeded = Shapes::StructureShape.new(name: 'TagQuotaPerResourceExceeded', error: {"code"=>"TagQuotaPerResourceExceeded", "httpStatusCode"=>400, "senderFault"=>true})
385
+ TagNotFoundFault = Shapes::StructureShape.new(name: 'TagNotFoundFault', error: {"code" => "TagNotFound", "httpStatusCode" => 404, "senderFault" => true})
386
+ TagQuotaPerResourceExceeded = Shapes::StructureShape.new(name: 'TagQuotaPerResourceExceeded', error: {"code" => "TagQuotaPerResourceExceeded", "httpStatusCode" => 400, "senderFault" => true})
386
387
  TestFailoverMessage = Shapes::StructureShape.new(name: 'TestFailoverMessage')
387
- TestFailoverNotAvailableFault = Shapes::StructureShape.new(name: 'TestFailoverNotAvailableFault', error: {"code"=>"TestFailoverNotAvailableFault", "httpStatusCode"=>400, "senderFault"=>true})
388
+ TestFailoverNotAvailableFault = Shapes::StructureShape.new(name: 'TestFailoverNotAvailableFault', error: {"code" => "TestFailoverNotAvailableFault", "httpStatusCode" => 400, "senderFault" => true})
388
389
  TestFailoverResult = Shapes::StructureShape.new(name: 'TestFailoverResult')
389
390
  TestMigrationMessage = Shapes::StructureShape.new(name: 'TestMigrationMessage')
390
391
  TestMigrationResponse = Shapes::StructureShape.new(name: 'TestMigrationResponse')
@@ -401,24 +402,24 @@ module Aws::ElastiCache
401
402
  UpdateActionStatusList = Shapes::ListShape.new(name: 'UpdateActionStatusList')
402
403
  UpdateActionsMessage = Shapes::StructureShape.new(name: 'UpdateActionsMessage')
403
404
  User = Shapes::StructureShape.new(name: 'User')
404
- UserAlreadyExistsFault = Shapes::StructureShape.new(name: 'UserAlreadyExistsFault', error: {"code"=>"UserAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
405
+ UserAlreadyExistsFault = Shapes::StructureShape.new(name: 'UserAlreadyExistsFault', error: {"code" => "UserAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
405
406
  UserGroup = Shapes::StructureShape.new(name: 'UserGroup')
406
- UserGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'UserGroupAlreadyExistsFault', error: {"code"=>"UserGroupAlreadyExists", "httpStatusCode"=>400, "senderFault"=>true})
407
+ UserGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'UserGroupAlreadyExistsFault', error: {"code" => "UserGroupAlreadyExists", "httpStatusCode" => 400, "senderFault" => true})
407
408
  UserGroupId = Shapes::StringShape.new(name: 'UserGroupId')
408
409
  UserGroupIdList = Shapes::ListShape.new(name: 'UserGroupIdList')
409
410
  UserGroupIdListInput = Shapes::ListShape.new(name: 'UserGroupIdListInput')
410
411
  UserGroupList = Shapes::ListShape.new(name: 'UserGroupList')
411
- UserGroupNotFoundFault = Shapes::StructureShape.new(name: 'UserGroupNotFoundFault', error: {"code"=>"UserGroupNotFound", "httpStatusCode"=>404, "senderFault"=>true})
412
+ UserGroupNotFoundFault = Shapes::StructureShape.new(name: 'UserGroupNotFoundFault', error: {"code" => "UserGroupNotFound", "httpStatusCode" => 404, "senderFault" => true})
412
413
  UserGroupPendingChanges = Shapes::StructureShape.new(name: 'UserGroupPendingChanges')
413
- UserGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'UserGroupQuotaExceededFault', error: {"code"=>"UserGroupQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
414
+ UserGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'UserGroupQuotaExceededFault', error: {"code" => "UserGroupQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
414
415
  UserGroupsUpdateStatus = Shapes::StructureShape.new(name: 'UserGroupsUpdateStatus')
415
416
  UserId = Shapes::StringShape.new(name: 'UserId')
416
417
  UserIdList = Shapes::ListShape.new(name: 'UserIdList')
417
418
  UserIdListInput = Shapes::ListShape.new(name: 'UserIdListInput')
418
419
  UserList = Shapes::ListShape.new(name: 'UserList')
419
420
  UserName = Shapes::StringShape.new(name: 'UserName')
420
- UserNotFoundFault = Shapes::StructureShape.new(name: 'UserNotFoundFault', error: {"code"=>"UserNotFound", "httpStatusCode"=>404, "senderFault"=>true})
421
- UserQuotaExceededFault = Shapes::StructureShape.new(name: 'UserQuotaExceededFault', error: {"code"=>"UserQuotaExceeded", "httpStatusCode"=>400, "senderFault"=>true})
421
+ UserNotFoundFault = Shapes::StructureShape.new(name: 'UserNotFoundFault', error: {"code" => "UserNotFound", "httpStatusCode" => 404, "senderFault" => true})
422
+ UserQuotaExceededFault = Shapes::StructureShape.new(name: 'UserQuotaExceededFault', error: {"code" => "UserQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
422
423
 
423
424
  APICallRateForCustomerExceededFault.struct_class = Types::APICallRateForCustomerExceededFault
424
425
 
@@ -1332,6 +1333,7 @@ module Aws::ElastiCache
1332
1333
  ModifyCacheClusterMessage.add_member(:auth_token_update_strategy, Shapes::ShapeRef.new(shape: AuthTokenUpdateStrategyType, location_name: "AuthTokenUpdateStrategy"))
1333
1334
  ModifyCacheClusterMessage.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationRequestList, location_name: "LogDeliveryConfigurations"))
1334
1335
  ModifyCacheClusterMessage.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
1336
+ ModifyCacheClusterMessage.add_member(:scale_config, Shapes::ShapeRef.new(shape: ScaleConfig, location_name: "ScaleConfig"))
1335
1337
  ModifyCacheClusterMessage.struct_class = Types::ModifyCacheClusterMessage
1336
1338
 
1337
1339
  ModifyCacheClusterResult.add_member(:cache_cluster, Shapes::ShapeRef.new(shape: CacheCluster, location_name: "CacheCluster"))
@@ -1560,6 +1562,7 @@ module Aws::ElastiCache
1560
1562
  PendingModifiedValues.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: PendingLogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
1561
1563
  PendingModifiedValues.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
1562
1564
  PendingModifiedValues.add_member(:transit_encryption_mode, Shapes::ShapeRef.new(shape: TransitEncryptionMode, location_name: "TransitEncryptionMode"))
1565
+ PendingModifiedValues.add_member(:scale_config, Shapes::ShapeRef.new(shape: ScaleConfig, location_name: "ScaleConfig"))
1563
1566
  PendingModifiedValues.struct_class = Types::PendingModifiedValues
1564
1567
 
1565
1568
  PreferredAvailabilityZoneList.member = Shapes::ShapeRef.new(shape: String, location_name: "PreferredAvailabilityZone")
@@ -1748,6 +1751,10 @@ module Aws::ElastiCache
1748
1751
  RevokeCacheSecurityGroupIngressResult.add_member(:cache_security_group, Shapes::ShapeRef.new(shape: CacheSecurityGroup, location_name: "CacheSecurityGroup"))
1749
1752
  RevokeCacheSecurityGroupIngressResult.struct_class = Types::RevokeCacheSecurityGroupIngressResult
1750
1753
 
1754
+ ScaleConfig.add_member(:scale_percentage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ScalePercentage"))
1755
+ ScaleConfig.add_member(:scale_interval_minutes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ScaleIntervalMinutes"))
1756
+ ScaleConfig.struct_class = Types::ScaleConfig
1757
+
1751
1758
  SecurityGroupIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SecurityGroupId")
1752
1759
 
1753
1760
  SecurityGroupMembership.add_member(:security_group_id, Shapes::ShapeRef.new(shape: String, location_name: "SecurityGroupId"))
@@ -6015,8 +6015,8 @@ module Aws::ElastiCache
6015
6015
  # @return [Boolean]
6016
6016
  #
6017
6017
  # @!attribute [rw] engine
6018
- # Modifies the engine listed in a cluster message. The options are
6019
- # redis, memcached or valkey.
6018
+ # The engine type used by the cache cluster. The options are valkey,
6019
+ # memcached or redis.
6020
6020
  # @return [String]
6021
6021
  #
6022
6022
  # @!attribute [rw] engine_version
@@ -6116,6 +6116,11 @@ module Aws::ElastiCache
6116
6116
  # [1]: http://aws.amazon.com/ec2/nitro/
6117
6117
  # @return [String]
6118
6118
  #
6119
+ # @!attribute [rw] scale_config
6120
+ # Configures horizontal or vertical scaling for Memcached clusters,
6121
+ # specifying the scaling percentage and interval.
6122
+ # @return [Types::ScaleConfig]
6123
+ #
6119
6124
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyCacheClusterMessage AWS API Documentation
6120
6125
  #
6121
6126
  class ModifyCacheClusterMessage < Struct.new(
@@ -6140,7 +6145,8 @@ module Aws::ElastiCache
6140
6145
  :auth_token,
6141
6146
  :auth_token_update_strategy,
6142
6147
  :log_delivery_configurations,
6143
- :ip_discovery)
6148
+ :ip_discovery,
6149
+ :scale_config)
6144
6150
  SENSITIVE = []
6145
6151
  include Aws::Structure
6146
6152
  end
@@ -7354,6 +7360,11 @@ module Aws::ElastiCache
7354
7360
  # encryption, with no downtime.
7355
7361
  # @return [String]
7356
7362
  #
7363
+ # @!attribute [rw] scale_config
7364
+ # The scaling configuration changes that are pending for the Memcached
7365
+ # cluster.
7366
+ # @return [Types::ScaleConfig]
7367
+ #
7357
7368
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/PendingModifiedValues AWS API Documentation
7358
7369
  #
7359
7370
  class PendingModifiedValues < Struct.new(
@@ -7364,7 +7375,8 @@ module Aws::ElastiCache
7364
7375
  :auth_token_status,
7365
7376
  :log_delivery_configurations,
7366
7377
  :transit_encryption_enabled,
7367
- :transit_encryption_mode)
7378
+ :transit_encryption_mode,
7379
+ :scale_config)
7368
7380
  SENSITIVE = []
7369
7381
  include Aws::Structure
7370
7382
  end
@@ -8500,6 +8512,28 @@ module Aws::ElastiCache
8500
8512
  include Aws::Structure
8501
8513
  end
8502
8514
 
8515
+ # Configuration settings for horizontal or vertical scaling operations
8516
+ # on Memcached clusters.
8517
+ #
8518
+ # @!attribute [rw] scale_percentage
8519
+ # The percentage by which to scale the Memcached cluster, either
8520
+ # horizontally by adding nodes or vertically by increasing resources.
8521
+ # @return [Integer]
8522
+ #
8523
+ # @!attribute [rw] scale_interval_minutes
8524
+ # The time interval in seconds between scaling operations when
8525
+ # performing gradual scaling for a Memcached cluster.
8526
+ # @return [Integer]
8527
+ #
8528
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ScaleConfig AWS API Documentation
8529
+ #
8530
+ class ScaleConfig < Struct.new(
8531
+ :scale_percentage,
8532
+ :scale_interval_minutes)
8533
+ SENSITIVE = []
8534
+ include Aws::Structure
8535
+ end
8536
+
8503
8537
  # Represents a single cache security group and its status.
8504
8538
  #
8505
8539
  # @!attribute [rw] security_group_id
@@ -55,7 +55,7 @@ module Aws::ElastiCache
55
55
  autoload :EndpointProvider, 'aws-sdk-elasticache/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elasticache/endpoints'
57
57
 
58
- GEM_VERSION = '1.124.0'
58
+ GEM_VERSION = '1.126.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1102,7 +1102,11 @@ module Aws
1102
1102
  enabled: bool?
1103
1103
  },
1104
1104
  ],
1105
- ?ip_discovery: ("ipv4" | "ipv6")
1105
+ ?ip_discovery: ("ipv4" | "ipv6"),
1106
+ ?scale_config: {
1107
+ scale_percentage: ::Integer?,
1108
+ scale_interval_minutes: ::Integer?
1109
+ }
1106
1110
  ) -> _ModifyCacheClusterResponseSuccess
1107
1111
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyCacheClusterResponseSuccess
1108
1112
 
data/sig/types.rbs CHANGED
@@ -1173,6 +1173,7 @@ module Aws::ElastiCache
1173
1173
  attr_accessor auth_token_update_strategy: ("SET" | "ROTATE" | "DELETE")
1174
1174
  attr_accessor log_delivery_configurations: ::Array[Types::LogDeliveryConfigurationRequest]
1175
1175
  attr_accessor ip_discovery: ("ipv4" | "ipv6")
1176
+ attr_accessor scale_config: Types::ScaleConfig
1176
1177
  SENSITIVE: []
1177
1178
  end
1178
1179
 
@@ -1426,6 +1427,7 @@ module Aws::ElastiCache
1426
1427
  attr_accessor log_delivery_configurations: ::Array[Types::PendingLogDeliveryConfiguration]
1427
1428
  attr_accessor transit_encryption_enabled: bool
1428
1429
  attr_accessor transit_encryption_mode: ("preferred" | "required")
1430
+ attr_accessor scale_config: Types::ScaleConfig
1429
1431
  SENSITIVE: []
1430
1432
  end
1431
1433
 
@@ -1641,6 +1643,12 @@ module Aws::ElastiCache
1641
1643
  SENSITIVE: []
1642
1644
  end
1643
1645
 
1646
+ class ScaleConfig
1647
+ attr_accessor scale_percentage: ::Integer
1648
+ attr_accessor scale_interval_minutes: ::Integer
1649
+ SENSITIVE: []
1650
+ end
1651
+
1644
1652
  class SecurityGroupMembership
1645
1653
  attr_accessor security_group_id: ::String
1646
1654
  attr_accessor status: ::String
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.124.0
4
+ version: 1.126.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-03-04 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: aws-sdk-core
@@ -78,7 +77,6 @@ licenses:
78
77
  metadata:
79
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticache
80
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticache/CHANGELOG.md
81
- post_install_message:
82
80
  rdoc_options: []
83
81
  require_paths:
84
82
  - lib
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
91
  - !ruby/object:Gem::Version
94
92
  version: '0'
95
93
  requirements: []
96
- rubygems_version: 3.4.10
97
- signing_key:
94
+ rubygems_version: 3.6.7
98
95
  specification_version: 4
99
96
  summary: AWS SDK for Ruby - Amazon ElastiCache
100
97
  test_files: []