aws-sdk-elasticache 1.59.0 → 1.60.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: 6ecb45ae674ed603028795e1b727d5e0be5cef89b8ebb3f96445708a2bda1c8c
4
- data.tar.gz: 4d6054a161159fef9cd86ff5f6fc9c54a9292e71460a7bab1cb47fde897e94d1
3
+ metadata.gz: 79b74d412c402367188d6337382f57d31607454a49fc3f922ce040671a66482b
4
+ data.tar.gz: bdc238c90c2649d1b904056fb8c3d15159d01525f789ae4e93b8b2a344d75eca
5
5
  SHA512:
6
- metadata.gz: b112a353872993723c5c695094fd76420d2449cbc8445c5ece2dd5b41500e7587961044d6299acdc803df44761dbe8a3afa8308854dab38f8dc6eb475099d8c7
7
- data.tar.gz: 740ad24b40a4e77360a509b135658066667fd6820f54b17498564680d4494b2301ff27d7a314ad6b342ff12d622d9884780b3925f981b4d4ea6ce5a85441806e
6
+ metadata.gz: 4c77039563773ab16ab246a23f2ea4f5351f96758ccee845e76e3da438e0e7b3c41af75bc879819690140e2f03e899fe6ea0db7a6f64b0b3e0ae61088706a1c9
7
+ data.tar.gz: 53b74e898ab7b93d9c76722a54829a211059afafda2b43e4a71b9b10d51915f795d463ea58bdc3b24671b59c112ec505423352fc3d816fb4efea731728b68245
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2021-08-13)
5
+ ------------------
6
+
7
+ * Feature - This release adds ReplicationGroupCreateTime field to ReplicationGroup which indicates the UTC time when ElastiCache ReplicationGroup is created
8
+
4
9
  1.59.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.60.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticache/customizations'
49
49
  # @!group service
50
50
  module Aws::ElastiCache
51
51
 
52
- GEM_VERSION = '1.59.0'
52
+ GEM_VERSION = '1.60.0'
53
53
 
54
54
  end
@@ -335,11 +335,11 @@ module Aws::ElastiCache
335
335
  # information, see [Resource-level permissions][1].
336
336
  #
337
337
  # For example, you can use cost-allocation tags to your ElastiCache
338
- # resources, AWS generates a cost allocation report as a comma-separated
339
- # value (CSV) file with your usage and costs aggregated by your tags.
340
- # You can apply tags that represent business categories (such as cost
341
- # centers, application names, or owners) to organize your costs across
342
- # multiple services.
338
+ # resources, Amazon generates a cost allocation report as a
339
+ # comma-separated value (CSV) file with your usage and costs aggregated
340
+ # by your tags. You can apply tags that represent business categories
341
+ # (such as cost centers, application names, or owners) to organize your
342
+ # costs across multiple services.
343
343
  #
344
344
  # For more information, see [Using Cost Allocation Tags in Amazon
345
345
  # ElastiCache][2] in the *ElastiCache User Guide*.
@@ -357,7 +357,7 @@ module Aws::ElastiCache
357
357
  # ElastiCache resources are *cluster* and *snapshot*.
358
358
  #
359
359
  # For more information about ARNs, see [Amazon Resource Names (ARNs) and
360
- # AWS Service Namespaces][1].
360
+ # Amazon Service Namespaces][1].
361
361
  #
362
362
  #
363
363
  #
@@ -449,9 +449,9 @@ module Aws::ElastiCache
449
449
  # cache security group.
450
450
  #
451
451
  # @option params [required, String] :ec2_security_group_owner_id
452
- # The AWS account number of the Amazon EC2 security group owner. Note
453
- # that this is not the same thing as an AWS access key ID - you must
454
- # provide a valid AWS account number for this parameter.
452
+ # The Amazon account number of the Amazon EC2 security group owner. Note
453
+ # that this is not the same thing as an Amazon access key ID - you must
454
+ # provide a valid Amazon account number for this parameter.
455
455
  #
456
456
  # @return [Types::AuthorizeCacheSecurityGroupIngressResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
457
457
  #
@@ -689,6 +689,7 @@ module Aws::ElastiCache
689
689
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
690
690
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
691
691
  # resp.replication_group.log_delivery_configurations[0].message #=> String
692
+ # resp.replication_group.replication_group_create_time #=> Time
692
693
  #
693
694
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CompleteMigration AWS API Documentation
694
695
  #
@@ -1792,14 +1793,15 @@ module Aws::ElastiCache
1792
1793
  # @option params [required, String] :global_replication_group_id_suffix
1793
1794
  # The suffix name of a Global datastore. Amazon ElastiCache
1794
1795
  # automatically applies a prefix to the Global datastore ID when it is
1795
- # created. Each AWS Region has its own prefix. For instance, a Global
1796
+ # created. Each Amazon Region has its own prefix. For instance, a Global
1796
1797
  # datastore ID created in the US-West-1 region will begin with "dsdfu"
1797
1798
  # along with the suffix name you provide. The suffix, combined with the
1798
1799
  # auto-generated prefix, guarantees uniqueness of the Global datastore
1799
1800
  # name across multiple regions.
1800
1801
  #
1801
- # For a full list of AWS Regions and their respective Global datastore
1802
- # iD prefixes, see [Using the AWS CLI with Global datastores ][1].
1802
+ # For a full list of Amazon Regions and their respective Global
1803
+ # datastore iD prefixes, see [Using the Amazon CLI with Global
1804
+ # datastores ][1].
1803
1805
  #
1804
1806
  #
1805
1807
  #
@@ -1884,7 +1886,7 @@ module Aws::ElastiCache
1884
1886
  # see [Creating a Subnet Group][1]. For versions below 5.0.6, the limit
1885
1887
  # is 250 per cluster.
1886
1888
  #
1887
- # To request a limit increase, see [AWS Service Limits][2] and choose
1889
+ # To request a limit increase, see [Amazon Service Limits][2] and choose
1888
1890
  # the limit type **Nodes per cluster per instance type**.
1889
1891
  #
1890
1892
  # When a Redis (cluster mode disabled) replication group has been
@@ -2555,6 +2557,7 @@ module Aws::ElastiCache
2555
2557
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
2556
2558
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
2557
2559
  # resp.replication_group.log_delivery_configurations[0].message #=> String
2560
+ # resp.replication_group.replication_group_create_time #=> Time
2558
2561
  #
2559
2562
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateReplicationGroup AWS API Documentation
2560
2563
  #
@@ -3141,6 +3144,7 @@ module Aws::ElastiCache
3141
3144
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3142
3145
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3143
3146
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3147
+ # resp.replication_group.replication_group_create_time #=> Time
3144
3148
  #
3145
3149
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DecreaseReplicaCount AWS API Documentation
3146
3150
  #
@@ -3628,6 +3632,7 @@ module Aws::ElastiCache
3628
3632
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
3629
3633
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
3630
3634
  # resp.replication_group.log_delivery_configurations[0].message #=> String
3635
+ # resp.replication_group.replication_group_create_time #=> Time
3631
3636
  #
3632
3637
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteReplicationGroup AWS API Documentation
3633
3638
  #
@@ -6236,6 +6241,7 @@ module Aws::ElastiCache
6236
6241
  # resp.replication_groups[0].log_delivery_configurations[0].log_format #=> String, one of "text", "json"
6237
6242
  # resp.replication_groups[0].log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
6238
6243
  # resp.replication_groups[0].log_delivery_configurations[0].message #=> String
6244
+ # resp.replication_groups[0].replication_group_create_time #=> Time
6239
6245
  #
6240
6246
  #
6241
6247
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -7432,7 +7438,7 @@ module Aws::ElastiCache
7432
7438
  # Remove a secondary cluster from the Global datastore using the Global
7433
7439
  # datastore name. The secondary cluster will no longer receive updates
7434
7440
  # from the primary cluster, but will remain as a standalone cluster in
7435
- # that AWS region.
7441
+ # that Amazon region.
7436
7442
  #
7437
7443
  # @option params [required, String] :global_replication_group_id
7438
7444
  # The name of the Global datastore
@@ -7442,8 +7448,8 @@ module Aws::ElastiCache
7442
7448
  # datastore
7443
7449
  #
7444
7450
  # @option params [required, String] :replication_group_region
7445
- # The AWS region of secondary cluster you wish to remove from the Global
7446
- # datastore
7451
+ # The Amazon region of secondary cluster you wish to remove from the
7452
+ # Global datastore
7447
7453
  #
7448
7454
  # @return [Types::DisassociateGlobalReplicationGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7449
7455
  #
@@ -7497,7 +7503,7 @@ module Aws::ElastiCache
7497
7503
  # The name of the Global datastore
7498
7504
  #
7499
7505
  # @option params [required, String] :primary_region
7500
- # The AWS region of the primary cluster of the Global datastore
7506
+ # The Amazon region of the primary cluster of the Global datastore
7501
7507
  #
7502
7508
  # @option params [required, String] :primary_replication_group_id
7503
7509
  # The name of the primary replication group
@@ -7555,7 +7561,7 @@ module Aws::ElastiCache
7555
7561
  # The number of node groups you wish to add
7556
7562
  #
7557
7563
  # @option params [Array<Types::RegionalConfiguration>] :regional_configurations
7558
- # Describes the replication group IDs, the AWS regions where they are
7564
+ # Describes the replication group IDs, the Amazon regions where they are
7559
7565
  # stored and the shard configuration for each that comprise the Global
7560
7566
  # datastore
7561
7567
  #
@@ -7732,6 +7738,7 @@ module Aws::ElastiCache
7732
7738
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
7733
7739
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
7734
7740
  # resp.replication_group.log_delivery_configurations[0].message #=> String
7741
+ # resp.replication_group.replication_group_create_time #=> Time
7735
7742
  #
7736
7743
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/IncreaseReplicaCount AWS API Documentation
7737
7744
  #
@@ -7856,7 +7863,7 @@ module Aws::ElastiCache
7856
7863
  # `arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot`.
7857
7864
  #
7858
7865
  # For more information about ARNs, see [Amazon Resource Names (ARNs) and
7859
- # AWS Service Namespaces][1].
7866
+ # Amazon Web Services Service Namespaces][1].
7860
7867
  #
7861
7868
  #
7862
7869
  #
@@ -8671,9 +8678,7 @@ module Aws::ElastiCache
8671
8678
  # Valid values: `true` \| `false`
8672
8679
  #
8673
8680
  # @option params [Boolean] :multi_az_enabled
8674
- # A list of tags to be added to this resource. A tag is a key-value
8675
- # pair. A tag key must be accompanied by a tag value, although null is
8676
- # accepted.
8681
+ # A flag to indicate MultiAZ is enabled.
8677
8682
  #
8678
8683
  # @option params [String] :node_group_id
8679
8684
  # Deprecated. This parameter is not used.
@@ -9028,6 +9033,7 @@ module Aws::ElastiCache
9028
9033
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9029
9034
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9030
9035
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9036
+ # resp.replication_group.replication_group_create_time #=> Time
9031
9037
  #
9032
9038
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroup AWS API Documentation
9033
9039
  #
@@ -9170,6 +9176,7 @@ module Aws::ElastiCache
9170
9176
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9171
9177
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9172
9178
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9179
+ # resp.replication_group.replication_group_create_time #=> Time
9173
9180
  #
9174
9181
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ModifyReplicationGroupShardConfiguration AWS API Documentation
9175
9182
  #
@@ -9620,7 +9627,7 @@ module Aws::ElastiCache
9620
9627
  # `arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot`.
9621
9628
  #
9622
9629
  # For more information about ARNs, see [Amazon Resource Names (ARNs) and
9623
- # AWS Service Namespaces][1].
9630
+ # Amazon Service Namespaces][1].
9624
9631
  #
9625
9632
  #
9626
9633
  #
@@ -9774,9 +9781,9 @@ module Aws::ElastiCache
9774
9781
  # The name of the Amazon EC2 security group to revoke access from.
9775
9782
  #
9776
9783
  # @option params [required, String] :ec2_security_group_owner_id
9777
- # The AWS account number of the Amazon EC2 security group owner. Note
9778
- # that this is not the same thing as an AWS access key ID - you must
9779
- # provide a valid AWS account number for this parameter.
9784
+ # The Amazon account number of the Amazon EC2 security group owner. Note
9785
+ # that this is not the same thing as an Amazon access key ID - you must
9786
+ # provide a valid Amazon account number for this parameter.
9780
9787
  #
9781
9788
  # @return [Types::RevokeCacheSecurityGroupIngressResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9782
9789
  #
@@ -9913,6 +9920,7 @@ module Aws::ElastiCache
9913
9920
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
9914
9921
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
9915
9922
  # resp.replication_group.log_delivery_configurations[0].message #=> String
9923
+ # resp.replication_group.replication_group_create_time #=> Time
9916
9924
  #
9917
9925
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/StartMigration AWS API Documentation
9918
9926
  #
@@ -9930,8 +9938,8 @@ module Aws::ElastiCache
9930
9938
  # **Note the following**
9931
9939
  #
9932
9940
  # * A customer can use this operation to test automatic failover on up
9933
- # to 5 shards (called node groups in the ElastiCache API and AWS CLI)
9934
- # in any rolling 24-hour period.
9941
+ # to 5 shards (called node groups in the ElastiCache API and Amazon
9942
+ # CLI) in any rolling 24-hour period.
9935
9943
  #
9936
9944
  # * If calling this operation on shards in different clusters (called
9937
9945
  # replication groups in the API and CLI), the calls can be made
@@ -9944,7 +9952,7 @@ module Aws::ElastiCache
9944
9952
  # replacement must complete before a subsequent call can be made.
9945
9953
  #
9946
9954
  # * To determine whether the node replacement is complete you can check
9947
- # Events using the Amazon ElastiCache console, the AWS CLI, or the
9955
+ # Events using the Amazon ElastiCache console, the Amazon CLI, or the
9948
9956
  # ElastiCache API. Look for the following automatic failover related
9949
9957
  # events, listed here in order of occurrance:
9950
9958
  #
@@ -10063,6 +10071,7 @@ module Aws::ElastiCache
10063
10071
  # resp.replication_group.log_delivery_configurations[0].log_format #=> String, one of "text", "json"
10064
10072
  # resp.replication_group.log_delivery_configurations[0].status #=> String, one of "active", "enabling", "modifying", "disabling", "error"
10065
10073
  # resp.replication_group.log_delivery_configurations[0].message #=> String
10074
+ # resp.replication_group.replication_group_create_time #=> Time
10066
10075
  #
10067
10076
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TestFailover AWS API Documentation
10068
10077
  #
@@ -10086,7 +10095,7 @@ module Aws::ElastiCache
10086
10095
  params: params,
10087
10096
  config: config)
10088
10097
  context[:gem_name] = 'aws-sdk-elasticache'
10089
- context[:gem_version] = '1.59.0'
10098
+ context[:gem_version] = '1.60.0'
10090
10099
  Seahorse::Client::Request.new(handlers, context)
10091
10100
  end
10092
10101
 
@@ -1450,6 +1450,7 @@ module Aws::ElastiCache
1450
1450
  ReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
1451
1451
  ReplicationGroup.add_member(:user_group_ids, Shapes::ShapeRef.new(shape: UserGroupIdList, location_name: "UserGroupIds"))
1452
1452
  ReplicationGroup.add_member(:log_delivery_configurations, Shapes::ShapeRef.new(shape: LogDeliveryConfigurationList, location_name: "LogDeliveryConfigurations"))
1453
+ ReplicationGroup.add_member(:replication_group_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ReplicationGroupCreateTime"))
1453
1454
  ReplicationGroup.struct_class = Types::ReplicationGroup
1454
1455
 
1455
1456
  ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
@@ -39,7 +39,7 @@ module Aws::ElastiCache
39
39
  # ElastiCache resources are *cluster* and *snapshot*.
40
40
  #
41
41
  # For more information about ARNs, see [Amazon Resource Names (ARNs)
42
- # and AWS Service Namespaces][1].
42
+ # and Amazon Service Namespaces][1].
43
43
  #
44
44
  #
45
45
  #
@@ -145,9 +145,9 @@ module Aws::ElastiCache
145
145
  # @return [String]
146
146
  #
147
147
  # @!attribute [rw] ec2_security_group_owner_id
148
- # The AWS account number of the Amazon EC2 security group owner. Note
149
- # that this is not the same thing as an AWS access key ID - you must
150
- # provide a valid AWS account number for this parameter.
148
+ # The Amazon account number of the Amazon EC2 security group owner.
149
+ # Note that this is not the same thing as an Amazon access key ID -
150
+ # you must provide a valid Amazon account number for this parameter.
151
151
  # @return [String]
152
152
  #
153
153
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AuthorizeCacheSecurityGroupIngressMessage AWS API Documentation
@@ -782,7 +782,7 @@ module Aws::ElastiCache
782
782
  # @!attribute [rw] cache_node_id
783
783
  # The cache node identifier. A node ID is a numeric identifier (0001,
784
784
  # 0002, etc.). The combination of cluster ID and node ID uniquely
785
- # identifies every cache node used in a customer's AWS account.
785
+ # identifies every cache node used in a customer's Amazon account.
786
786
  # @return [String]
787
787
  #
788
788
  # @!attribute [rw] cache_node_status
@@ -1126,7 +1126,7 @@ module Aws::ElastiCache
1126
1126
  # * `RevokeCacheSecurityGroupIngress`
1127
1127
  #
1128
1128
  # @!attribute [rw] owner_id
1129
- # The AWS account ID of the cache security group owner.
1129
+ # The Amazon account ID of the cache security group owner.
1130
1130
  # @return [String]
1131
1131
  #
1132
1132
  # @!attribute [rw] cache_security_group_name
@@ -2211,14 +2211,15 @@ module Aws::ElastiCache
2211
2211
  # @!attribute [rw] global_replication_group_id_suffix
2212
2212
  # The suffix name of a Global datastore. Amazon ElastiCache
2213
2213
  # automatically applies a prefix to the Global datastore ID when it is
2214
- # created. Each AWS Region has its own prefix. For instance, a Global
2215
- # datastore ID created in the US-West-1 region will begin with
2214
+ # created. Each Amazon Region has its own prefix. For instance, a
2215
+ # Global datastore ID created in the US-West-1 region will begin with
2216
2216
  # "dsdfu" along with the suffix name you provide. The suffix,
2217
2217
  # combined with the auto-generated prefix, guarantees uniqueness of
2218
2218
  # the Global datastore name across multiple regions.
2219
2219
  #
2220
- # For a full list of AWS Regions and their respective Global datastore
2221
- # iD prefixes, see [Using the AWS CLI with Global datastores ][1].
2220
+ # For a full list of Amazon Regions and their respective Global
2221
+ # datastore iD prefixes, see [Using the Amazon CLI with Global
2222
+ # datastores ][1].
2222
2223
  #
2223
2224
  #
2224
2225
  #
@@ -2246,7 +2247,7 @@ module Aws::ElastiCache
2246
2247
 
2247
2248
  # @!attribute [rw] global_replication_group
2248
2249
  # Consists of a primary cluster that accepts writes and an associated
2249
- # secondary cluster that resides in a different AWS region. The
2250
+ # secondary cluster that resides in a different Amazon region. The
2250
2251
  # secondary cluster accepts only reads. The primary cluster
2251
2252
  # automatically replicates updates to the secondary cluster.
2252
2253
  #
@@ -3105,7 +3106,7 @@ module Aws::ElastiCache
3105
3106
 
3106
3107
  # @!attribute [rw] global_replication_group
3107
3108
  # Consists of a primary cluster that accepts writes and an associated
3108
- # secondary cluster that resides in a different AWS region. The
3109
+ # secondary cluster that resides in a different Amazon region. The
3109
3110
  # secondary cluster accepts only reads. The primary cluster
3110
3111
  # automatically replicates updates to the secondary cluster.
3111
3112
  #
@@ -3363,7 +3364,7 @@ module Aws::ElastiCache
3363
3364
 
3364
3365
  # @!attribute [rw] global_replication_group
3365
3366
  # Consists of a primary cluster that accepts writes and an associated
3366
- # secondary cluster that resides in a different AWS region. The
3367
+ # secondary cluster that resides in a different Amazon region. The
3367
3368
  # secondary cluster accepts only reads. The primary cluster
3368
3369
  # automatically replicates updates to the secondary cluster.
3369
3370
  #
@@ -4835,7 +4836,7 @@ module Aws::ElastiCache
4835
4836
  # @return [String]
4836
4837
  #
4837
4838
  # @!attribute [rw] replication_group_region
4838
- # The AWS region of secondary cluster you wish to remove from the
4839
+ # The Amazon region of secondary cluster you wish to remove from the
4839
4840
  # Global datastore
4840
4841
  # @return [String]
4841
4842
  #
@@ -4851,7 +4852,7 @@ module Aws::ElastiCache
4851
4852
 
4852
4853
  # @!attribute [rw] global_replication_group
4853
4854
  # Consists of a primary cluster that accepts writes and an associated
4854
- # secondary cluster that resides in a different AWS region. The
4855
+ # secondary cluster that resides in a different Amazon region. The
4855
4856
  # secondary cluster accepts only reads. The primary cluster
4856
4857
  # automatically replicates updates to the secondary cluster.
4857
4858
  #
@@ -4888,7 +4889,7 @@ module Aws::ElastiCache
4888
4889
  # @return [String]
4889
4890
  #
4890
4891
  # @!attribute [rw] ec2_security_group_owner_id
4891
- # The AWS account ID of the Amazon EC2 security group owner.
4892
+ # The Amazon account ID of the Amazon EC2 security group owner.
4892
4893
  # @return [String]
4893
4894
  #
4894
4895
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/EC2SecurityGroup AWS API Documentation
@@ -5026,7 +5027,7 @@ module Aws::ElastiCache
5026
5027
  # @return [String]
5027
5028
  #
5028
5029
  # @!attribute [rw] primary_region
5029
- # The AWS region of the primary cluster of the Global datastore
5030
+ # The Amazon region of the primary cluster of the Global datastore
5030
5031
  # @return [String]
5031
5032
  #
5032
5033
  # @!attribute [rw] primary_replication_group_id
@@ -5045,7 +5046,7 @@ module Aws::ElastiCache
5045
5046
 
5046
5047
  # @!attribute [rw] global_replication_group
5047
5048
  # Consists of a primary cluster that accepts writes and an associated
5048
- # secondary cluster that resides in a different AWS region. The
5049
+ # secondary cluster that resides in a different Amazon region. The
5049
5050
  # secondary cluster accepts only reads. The primary cluster
5050
5051
  # automatically replicates updates to the secondary cluster.
5051
5052
  #
@@ -5113,7 +5114,7 @@ module Aws::ElastiCache
5113
5114
  end
5114
5115
 
5115
5116
  # Consists of a primary cluster that accepts writes and an associated
5116
- # secondary cluster that resides in a different AWS region. The
5117
+ # secondary cluster that resides in a different Amazon region. The
5117
5118
  # secondary cluster accepts only reads. The primary cluster
5118
5119
  # automatically replicates updates to the secondary cluster.
5119
5120
  #
@@ -5243,14 +5244,14 @@ module Aws::ElastiCache
5243
5244
  end
5244
5245
 
5245
5246
  # A member of a Global datastore. It contains the Replication Group Id,
5246
- # the AWS region and the role of the replication group.
5247
+ # the Amazon region and the role of the replication group.
5247
5248
  #
5248
5249
  # @!attribute [rw] replication_group_id
5249
5250
  # The replication group id of the Global datastore member.
5250
5251
  # @return [String]
5251
5252
  #
5252
5253
  # @!attribute [rw] replication_group_region
5253
- # The AWS region of the Global datastore member.
5254
+ # The Amazon region of the Global datastore member.
5254
5255
  # @return [String]
5255
5256
  #
5256
5257
  # @!attribute [rw] role
@@ -5314,9 +5315,9 @@ module Aws::ElastiCache
5314
5315
  # @return [Integer]
5315
5316
  #
5316
5317
  # @!attribute [rw] regional_configurations
5317
- # Describes the replication group IDs, the AWS regions where they are
5318
- # stored and the shard configuration for each that comprise the Global
5319
- # datastore
5318
+ # Describes the replication group IDs, the Amazon regions where they
5319
+ # are stored and the shard configuration for each that comprise the
5320
+ # Global datastore
5320
5321
  # @return [Array<Types::RegionalConfiguration>]
5321
5322
  #
5322
5323
  # @!attribute [rw] apply_immediately
@@ -5337,7 +5338,7 @@ module Aws::ElastiCache
5337
5338
 
5338
5339
  # @!attribute [rw] global_replication_group
5339
5340
  # Consists of a primary cluster that accepts writes and an associated
5340
- # secondary cluster that resides in a different AWS region. The
5341
+ # secondary cluster that resides in a different Amazon region. The
5341
5342
  # secondary cluster accepts only reads. The primary cluster
5342
5343
  # automatically replicates updates to the secondary cluster.
5343
5344
  #
@@ -5615,7 +5616,7 @@ module Aws::ElastiCache
5615
5616
  # `arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot`.
5616
5617
  #
5617
5618
  # For more information about ARNs, see [Amazon Resource Names (ARNs)
5618
- # and AWS Service Namespaces][1].
5619
+ # and Amazon Web Services Service Namespaces][1].
5619
5620
  #
5620
5621
  #
5621
5622
  #
@@ -6301,7 +6302,7 @@ module Aws::ElastiCache
6301
6302
 
6302
6303
  # @!attribute [rw] global_replication_group
6303
6304
  # Consists of a primary cluster that accepts writes and an associated
6304
- # secondary cluster that resides in a different AWS region. The
6305
+ # secondary cluster that resides in a different Amazon region. The
6305
6306
  # secondary cluster accepts only reads. The primary cluster
6306
6307
  # automatically replicates updates to the secondary cluster.
6307
6308
  #
@@ -6398,9 +6399,7 @@ module Aws::ElastiCache
6398
6399
  # @return [Boolean]
6399
6400
  #
6400
6401
  # @!attribute [rw] multi_az_enabled
6401
- # A list of tags to be added to this resource. A tag is a key-value
6402
- # pair. A tag key must be accompanied by a tag value, although null is
6403
- # accepted.
6402
+ # A flag to indicate MultiAZ is enabled.
6404
6403
  # @return [Boolean]
6405
6404
  #
6406
6405
  # @!attribute [rw] node_group_id
@@ -7443,7 +7442,7 @@ module Aws::ElastiCache
7443
7442
 
7444
7443
  # @!attribute [rw] global_replication_group
7445
7444
  # Consists of a primary cluster that accepts writes and an associated
7446
- # secondary cluster that resides in a different AWS region. The
7445
+ # secondary cluster that resides in a different Amazon region. The
7447
7446
  # secondary cluster accepts only reads. The primary cluster
7448
7447
  # automatically replicates updates to the secondary cluster.
7449
7448
  #
@@ -7545,7 +7544,7 @@ module Aws::ElastiCache
7545
7544
  # @return [String]
7546
7545
  #
7547
7546
  # @!attribute [rw] replication_group_region
7548
- # The AWS region where the cluster is stored
7547
+ # The Amazon region where the cluster is stored
7549
7548
  # @return [String]
7550
7549
  #
7551
7550
  # @!attribute [rw] resharding_configuration
@@ -7580,7 +7579,7 @@ module Aws::ElastiCache
7580
7579
  # `arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot`.
7581
7580
  #
7582
7581
  # For more information about ARNs, see [Amazon Resource Names (ARNs)
7583
- # and AWS Service Namespaces][1].
7582
+ # and Amazon Service Namespaces][1].
7584
7583
  #
7585
7584
  #
7586
7585
  #
@@ -7761,6 +7760,10 @@ module Aws::ElastiCache
7761
7760
  # Returns the destination, format and type of the logs.
7762
7761
  # @return [Array<Types::LogDeliveryConfiguration>]
7763
7762
  #
7763
+ # @!attribute [rw] replication_group_create_time
7764
+ # The date and time when the cluster was created.
7765
+ # @return [Time]
7766
+ #
7764
7767
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
7765
7768
  #
7766
7769
  class ReplicationGroup < Struct.new(
@@ -7787,7 +7790,8 @@ module Aws::ElastiCache
7787
7790
  :kms_key_id,
7788
7791
  :arn,
7789
7792
  :user_group_ids,
7790
- :log_delivery_configurations)
7793
+ :log_delivery_configurations,
7794
+ :replication_group_create_time)
7791
7795
  SENSITIVE = []
7792
7796
  include Aws::Structure
7793
7797
  end
@@ -8377,9 +8381,9 @@ module Aws::ElastiCache
8377
8381
  # @return [String]
8378
8382
  #
8379
8383
  # @!attribute [rw] ec2_security_group_owner_id
8380
- # The AWS account number of the Amazon EC2 security group owner. Note
8381
- # that this is not the same thing as an AWS access key ID - you must
8382
- # provide a valid AWS account number for this parameter.
8384
+ # The Amazon account number of the Amazon EC2 security group owner.
8385
+ # Note that this is not the same thing as an Amazon access key ID -
8386
+ # you must provide a valid Amazon account number for this parameter.
8383
8387
  # @return [String]
8384
8388
  #
8385
8389
  # @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/RevokeCacheSecurityGroupIngressMessage AWS API Documentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core