aws-sdk-elasticache 1.50.0 → 1.55.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 +4 -4
- data/CHANGELOG.md +348 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-elasticache.rb +2 -2
- data/lib/aws-sdk-elasticache/client.rb +226 -122
- data/lib/aws-sdk-elasticache/client_api.rb +42 -1
- data/lib/aws-sdk-elasticache/customizations.rb +1 -1
- data/lib/aws-sdk-elasticache/errors.rb +1 -1
- data/lib/aws-sdk-elasticache/resource.rb +1 -1
- data/lib/aws-sdk-elasticache/types.rb +197 -114
- data/lib/aws-sdk-elasticache/waiters.rb +1 -1
- metadata +10 -7
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -602,6 +602,7 @@ module Aws::ElastiCache
|
|
602
602
|
CopySnapshotMessage.add_member(:target_snapshot_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "TargetSnapshotName"))
|
603
603
|
CopySnapshotMessage.add_member(:target_bucket, Shapes::ShapeRef.new(shape: String, location_name: "TargetBucket"))
|
604
604
|
CopySnapshotMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
605
|
+
CopySnapshotMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
605
606
|
CopySnapshotMessage.struct_class = Types::CopySnapshotMessage
|
606
607
|
|
607
608
|
CopySnapshotResult.add_member(:snapshot, Shapes::ShapeRef.new(shape: Snapshot, location_name: "Snapshot"))
|
@@ -641,6 +642,7 @@ module Aws::ElastiCache
|
|
641
642
|
CreateCacheParameterGroupMessage.add_member(:cache_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CacheParameterGroupName"))
|
642
643
|
CreateCacheParameterGroupMessage.add_member(:cache_parameter_group_family, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CacheParameterGroupFamily"))
|
643
644
|
CreateCacheParameterGroupMessage.add_member(:description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Description"))
|
645
|
+
CreateCacheParameterGroupMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
644
646
|
CreateCacheParameterGroupMessage.struct_class = Types::CreateCacheParameterGroupMessage
|
645
647
|
|
646
648
|
CreateCacheParameterGroupResult.add_member(:cache_parameter_group, Shapes::ShapeRef.new(shape: CacheParameterGroup, location_name: "CacheParameterGroup"))
|
@@ -648,6 +650,7 @@ module Aws::ElastiCache
|
|
648
650
|
|
649
651
|
CreateCacheSecurityGroupMessage.add_member(:cache_security_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CacheSecurityGroupName"))
|
650
652
|
CreateCacheSecurityGroupMessage.add_member(:description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Description"))
|
653
|
+
CreateCacheSecurityGroupMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
651
654
|
CreateCacheSecurityGroupMessage.struct_class = Types::CreateCacheSecurityGroupMessage
|
652
655
|
|
653
656
|
CreateCacheSecurityGroupResult.add_member(:cache_security_group, Shapes::ShapeRef.new(shape: CacheSecurityGroup, location_name: "CacheSecurityGroup"))
|
@@ -656,6 +659,7 @@ module Aws::ElastiCache
|
|
656
659
|
CreateCacheSubnetGroupMessage.add_member(:cache_subnet_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CacheSubnetGroupName"))
|
657
660
|
CreateCacheSubnetGroupMessage.add_member(:cache_subnet_group_description, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CacheSubnetGroupDescription"))
|
658
661
|
CreateCacheSubnetGroupMessage.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdentifierList, required: true, location_name: "SubnetIds"))
|
662
|
+
CreateCacheSubnetGroupMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
659
663
|
CreateCacheSubnetGroupMessage.struct_class = Types::CreateCacheSubnetGroupMessage
|
660
664
|
|
661
665
|
CreateCacheSubnetGroupResult.add_member(:cache_subnet_group, Shapes::ShapeRef.new(shape: CacheSubnetGroup, location_name: "CacheSubnetGroup"))
|
@@ -710,6 +714,7 @@ module Aws::ElastiCache
|
|
710
714
|
CreateSnapshotMessage.add_member(:cache_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "CacheClusterId"))
|
711
715
|
CreateSnapshotMessage.add_member(:snapshot_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SnapshotName"))
|
712
716
|
CreateSnapshotMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
717
|
+
CreateSnapshotMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
713
718
|
CreateSnapshotMessage.struct_class = Types::CreateSnapshotMessage
|
714
719
|
|
715
720
|
CreateSnapshotResult.add_member(:snapshot, Shapes::ShapeRef.new(shape: Snapshot, location_name: "Snapshot"))
|
@@ -718,6 +723,7 @@ module Aws::ElastiCache
|
|
718
723
|
CreateUserGroupMessage.add_member(:user_group_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "UserGroupId"))
|
719
724
|
CreateUserGroupMessage.add_member(:engine, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "Engine"))
|
720
725
|
CreateUserGroupMessage.add_member(:user_ids, Shapes::ShapeRef.new(shape: UserIdListInput, location_name: "UserIds"))
|
726
|
+
CreateUserGroupMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
721
727
|
CreateUserGroupMessage.struct_class = Types::CreateUserGroupMessage
|
722
728
|
|
723
729
|
CreateUserMessage.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, required: true, location_name: "UserId"))
|
@@ -726,6 +732,7 @@ module Aws::ElastiCache
|
|
726
732
|
CreateUserMessage.add_member(:passwords, Shapes::ShapeRef.new(shape: PasswordListInput, location_name: "Passwords"))
|
727
733
|
CreateUserMessage.add_member(:access_string, Shapes::ShapeRef.new(shape: AccessString, required: true, location_name: "AccessString"))
|
728
734
|
CreateUserMessage.add_member(:no_password_required, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "NoPasswordRequired"))
|
735
|
+
CreateUserMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
729
736
|
CreateUserMessage.struct_class = Types::CreateUserMessage
|
730
737
|
|
731
738
|
CustomerNodeEndpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
|
@@ -1135,6 +1142,7 @@ module Aws::ElastiCache
|
|
1135
1142
|
ModifyGlobalReplicationGroupMessage.add_member(:apply_immediately, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "ApplyImmediately"))
|
1136
1143
|
ModifyGlobalReplicationGroupMessage.add_member(:cache_node_type, Shapes::ShapeRef.new(shape: String, location_name: "CacheNodeType"))
|
1137
1144
|
ModifyGlobalReplicationGroupMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1145
|
+
ModifyGlobalReplicationGroupMessage.add_member(:cache_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "CacheParameterGroupName"))
|
1138
1146
|
ModifyGlobalReplicationGroupMessage.add_member(:global_replication_group_description, Shapes::ShapeRef.new(shape: String, location_name: "GlobalReplicationGroupDescription"))
|
1139
1147
|
ModifyGlobalReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
1140
1148
|
ModifyGlobalReplicationGroupMessage.struct_class = Types::ModifyGlobalReplicationGroupMessage
|
@@ -1320,6 +1328,7 @@ module Aws::ElastiCache
|
|
1320
1328
|
PurchaseReservedCacheNodesOfferingMessage.add_member(:reserved_cache_nodes_offering_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReservedCacheNodesOfferingId"))
|
1321
1329
|
PurchaseReservedCacheNodesOfferingMessage.add_member(:reserved_cache_node_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedCacheNodeId"))
|
1322
1330
|
PurchaseReservedCacheNodesOfferingMessage.add_member(:cache_node_count, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "CacheNodeCount"))
|
1331
|
+
PurchaseReservedCacheNodesOfferingMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1323
1332
|
PurchaseReservedCacheNodesOfferingMessage.struct_class = Types::PurchaseReservedCacheNodesOfferingMessage
|
1324
1333
|
|
1325
1334
|
PurchaseReservedCacheNodesOfferingResult.add_member(:reserved_cache_node, Shapes::ShapeRef.new(shape: ReservedCacheNode, location_name: "ReservedCacheNode"))
|
@@ -1721,7 +1730,15 @@ module Aws::ElastiCache
|
|
1721
1730
|
o.input = Shapes::ShapeRef.new(shape: AddTagsToResourceMessage)
|
1722
1731
|
o.output = Shapes::ShapeRef.new(shape: TagListMessage)
|
1723
1732
|
o.errors << Shapes::ShapeRef.new(shape: CacheClusterNotFoundFault)
|
1733
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheParameterGroupNotFoundFault)
|
1734
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheSecurityGroupNotFoundFault)
|
1735
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheSubnetGroupNotFoundFault)
|
1736
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidReplicationGroupStateFault)
|
1737
|
+
o.errors << Shapes::ShapeRef.new(shape: ReplicationGroupNotFoundFault)
|
1738
|
+
o.errors << Shapes::ShapeRef.new(shape: ReservedCacheNodeNotFoundFault)
|
1724
1739
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotNotFoundFault)
|
1740
|
+
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
1741
|
+
o.errors << Shapes::ShapeRef.new(shape: UserGroupNotFoundFault)
|
1725
1742
|
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1726
1743
|
o.errors << Shapes::ShapeRef.new(shape: InvalidARNFault)
|
1727
1744
|
end)
|
@@ -1780,6 +1797,7 @@ module Aws::ElastiCache
|
|
1780
1797
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotNotFoundFault)
|
1781
1798
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotQuotaExceededFault)
|
1782
1799
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSnapshotStateFault)
|
1800
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1783
1801
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1784
1802
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1785
1803
|
end)
|
@@ -1815,6 +1833,7 @@ module Aws::ElastiCache
|
|
1815
1833
|
o.errors << Shapes::ShapeRef.new(shape: CacheParameterGroupQuotaExceededFault)
|
1816
1834
|
o.errors << Shapes::ShapeRef.new(shape: CacheParameterGroupAlreadyExistsFault)
|
1817
1835
|
o.errors << Shapes::ShapeRef.new(shape: InvalidCacheParameterGroupStateFault)
|
1836
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1818
1837
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1819
1838
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1820
1839
|
end)
|
@@ -1827,6 +1846,7 @@ module Aws::ElastiCache
|
|
1827
1846
|
o.output = Shapes::ShapeRef.new(shape: CreateCacheSecurityGroupResult)
|
1828
1847
|
o.errors << Shapes::ShapeRef.new(shape: CacheSecurityGroupAlreadyExistsFault)
|
1829
1848
|
o.errors << Shapes::ShapeRef.new(shape: CacheSecurityGroupQuotaExceededFault)
|
1849
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1830
1850
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1831
1851
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1832
1852
|
end)
|
@@ -1840,6 +1860,7 @@ module Aws::ElastiCache
|
|
1840
1860
|
o.errors << Shapes::ShapeRef.new(shape: CacheSubnetGroupAlreadyExistsFault)
|
1841
1861
|
o.errors << Shapes::ShapeRef.new(shape: CacheSubnetGroupQuotaExceededFault)
|
1842
1862
|
o.errors << Shapes::ShapeRef.new(shape: CacheSubnetQuotaExceededFault)
|
1863
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1843
1864
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
|
1844
1865
|
o.errors << Shapes::ShapeRef.new(shape: SubnetNotAllowedFault)
|
1845
1866
|
end)
|
@@ -1897,6 +1918,7 @@ module Aws::ElastiCache
|
|
1897
1918
|
o.errors << Shapes::ShapeRef.new(shape: InvalidReplicationGroupStateFault)
|
1898
1919
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotQuotaExceededFault)
|
1899
1920
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotFeatureNotSupportedFault)
|
1921
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1900
1922
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1901
1923
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1902
1924
|
end)
|
@@ -1912,6 +1934,7 @@ module Aws::ElastiCache
|
|
1912
1934
|
o.errors << Shapes::ShapeRef.new(shape: DuplicateUserNameFault)
|
1913
1935
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1914
1936
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1937
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1915
1938
|
end)
|
1916
1939
|
|
1917
1940
|
api.add_operation(:create_user_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1926,6 +1949,7 @@ module Aws::ElastiCache
|
|
1926
1949
|
o.errors << Shapes::ShapeRef.new(shape: DefaultUserRequired)
|
1927
1950
|
o.errors << Shapes::ShapeRef.new(shape: UserGroupQuotaExceededFault)
|
1928
1951
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
1952
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
1929
1953
|
end)
|
1930
1954
|
|
1931
1955
|
api.add_operation(:decrease_node_groups_in_global_replication_group, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2424,7 +2448,15 @@ module Aws::ElastiCache
|
|
2424
2448
|
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceMessage)
|
2425
2449
|
o.output = Shapes::ShapeRef.new(shape: TagListMessage)
|
2426
2450
|
o.errors << Shapes::ShapeRef.new(shape: CacheClusterNotFoundFault)
|
2451
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheParameterGroupNotFoundFault)
|
2452
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheSecurityGroupNotFoundFault)
|
2453
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheSubnetGroupNotFoundFault)
|
2454
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidReplicationGroupStateFault)
|
2455
|
+
o.errors << Shapes::ShapeRef.new(shape: ReplicationGroupNotFoundFault)
|
2456
|
+
o.errors << Shapes::ShapeRef.new(shape: ReservedCacheNodeNotFoundFault)
|
2427
2457
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotNotFoundFault)
|
2458
|
+
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
2459
|
+
o.errors << Shapes::ShapeRef.new(shape: UserGroupNotFoundFault)
|
2428
2460
|
o.errors << Shapes::ShapeRef.new(shape: InvalidARNFault)
|
2429
2461
|
end)
|
2430
2462
|
|
@@ -2562,6 +2594,7 @@ module Aws::ElastiCache
|
|
2562
2594
|
o.errors << Shapes::ShapeRef.new(shape: ReservedCacheNodesOfferingNotFoundFault)
|
2563
2595
|
o.errors << Shapes::ShapeRef.new(shape: ReservedCacheNodeAlreadyExistsFault)
|
2564
2596
|
o.errors << Shapes::ShapeRef.new(shape: ReservedCacheNodeQuotaExceededFault)
|
2597
|
+
o.errors << Shapes::ShapeRef.new(shape: TagQuotaPerResourceExceeded)
|
2565
2598
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
|
2566
2599
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
2567
2600
|
end)
|
@@ -2594,7 +2627,15 @@ module Aws::ElastiCache
|
|
2594
2627
|
o.input = Shapes::ShapeRef.new(shape: RemoveTagsFromResourceMessage)
|
2595
2628
|
o.output = Shapes::ShapeRef.new(shape: TagListMessage)
|
2596
2629
|
o.errors << Shapes::ShapeRef.new(shape: CacheClusterNotFoundFault)
|
2630
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheParameterGroupNotFoundFault)
|
2631
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheSecurityGroupNotFoundFault)
|
2632
|
+
o.errors << Shapes::ShapeRef.new(shape: CacheSubnetGroupNotFoundFault)
|
2633
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidReplicationGroupStateFault)
|
2634
|
+
o.errors << Shapes::ShapeRef.new(shape: ReplicationGroupNotFoundFault)
|
2635
|
+
o.errors << Shapes::ShapeRef.new(shape: ReservedCacheNodeNotFoundFault)
|
2597
2636
|
o.errors << Shapes::ShapeRef.new(shape: SnapshotNotFoundFault)
|
2637
|
+
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundFault)
|
2638
|
+
o.errors << Shapes::ShapeRef.new(shape: UserGroupNotFoundFault)
|
2598
2639
|
o.errors << Shapes::ShapeRef.new(shape: InvalidARNFault)
|
2599
2640
|
o.errors << Shapes::ShapeRef.new(shape: TagNotFoundFault)
|
2600
2641
|
end)
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# WARNING ABOUT GENERATED CODE
|
3
3
|
#
|
4
4
|
# This file is generated. See the contributing for info on making contributions:
|
5
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
5
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
6
6
|
#
|
7
7
|
# WARNING ABOUT GENERATED CODE
|
8
8
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -47,8 +47,9 @@ module Aws::ElastiCache
|
|
47
47
|
# @return [String]
|
48
48
|
#
|
49
49
|
# @!attribute [rw] tags
|
50
|
-
# A list of
|
51
|
-
#
|
50
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
51
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
52
|
+
# accepted.
|
52
53
|
# @return [Array<Types::Tag>]
|
53
54
|
#
|
54
55
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/AddTagsToResourceMessage AWS API Documentation
|
@@ -261,10 +262,9 @@ module Aws::ElastiCache
|
|
261
262
|
# @return [String]
|
262
263
|
#
|
263
264
|
# @!attribute [rw] configuration_endpoint
|
264
|
-
# Represents a Memcached cluster endpoint which
|
265
|
-
#
|
266
|
-
#
|
267
|
-
# will always have `.cfg` in it.
|
265
|
+
# Represents a Memcached cluster endpoint which can be used by an
|
266
|
+
# application to connect to any node in the cluster. The configuration
|
267
|
+
# endpoint will always have `.cfg` in it.
|
268
268
|
#
|
269
269
|
# Example: `mem-3.9dvc4r.cfg.usw2.cache.amazonaws.com:11211`
|
270
270
|
# @return [Types::Endpoint]
|
@@ -977,7 +977,7 @@ module Aws::ElastiCache
|
|
977
977
|
#
|
978
978
|
# @!attribute [rw] is_global
|
979
979
|
# Indicates whether the parameter group is associated with a Global
|
980
|
-
#
|
980
|
+
# datastore
|
981
981
|
# @return [Boolean]
|
982
982
|
#
|
983
983
|
# @!attribute [rw] arn
|
@@ -1427,6 +1427,12 @@ module Aws::ElastiCache
|
|
1427
1427
|
# target_snapshot_name: "String", # required
|
1428
1428
|
# target_bucket: "String",
|
1429
1429
|
# kms_key_id: "String",
|
1430
|
+
# tags: [
|
1431
|
+
# {
|
1432
|
+
# key: "String",
|
1433
|
+
# value: "String",
|
1434
|
+
# },
|
1435
|
+
# ],
|
1430
1436
|
# }
|
1431
1437
|
#
|
1432
1438
|
# @!attribute [rw] source_snapshot_name
|
@@ -1454,21 +1460,28 @@ module Aws::ElastiCache
|
|
1454
1460
|
#
|
1455
1461
|
#
|
1456
1462
|
#
|
1457
|
-
# [1]:
|
1458
|
-
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/
|
1463
|
+
# [1]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html#backups-exporting-grant-access
|
1464
|
+
# [2]: https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/backups-exporting.html
|
1459
1465
|
# @return [String]
|
1460
1466
|
#
|
1461
1467
|
# @!attribute [rw] kms_key_id
|
1462
1468
|
# The ID of the KMS key used to encrypt the target snapshot.
|
1463
1469
|
# @return [String]
|
1464
1470
|
#
|
1471
|
+
# @!attribute [rw] tags
|
1472
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
1473
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
1474
|
+
# accepted.
|
1475
|
+
# @return [Array<Types::Tag>]
|
1476
|
+
#
|
1465
1477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CopySnapshotMessage AWS API Documentation
|
1466
1478
|
#
|
1467
1479
|
class CopySnapshotMessage < Struct.new(
|
1468
1480
|
:source_snapshot_name,
|
1469
1481
|
:target_snapshot_name,
|
1470
1482
|
:target_bucket,
|
1471
|
-
:kms_key_id
|
1483
|
+
:kms_key_id,
|
1484
|
+
:tags)
|
1472
1485
|
SENSITIVE = []
|
1473
1486
|
include Aws::Structure
|
1474
1487
|
end
|
@@ -1777,7 +1790,7 @@ module Aws::ElastiCache
|
|
1777
1790
|
# @return [Array<String>]
|
1778
1791
|
#
|
1779
1792
|
# @!attribute [rw] tags
|
1780
|
-
# A list of
|
1793
|
+
# A list of tags to be added to this resource.
|
1781
1794
|
# @return [Array<Types::Tag>]
|
1782
1795
|
#
|
1783
1796
|
# @!attribute [rw] snapshot_arns
|
@@ -1809,29 +1822,6 @@ module Aws::ElastiCache
|
|
1809
1822
|
# cluster is performed. It is specified as a range in the format
|
1810
1823
|
# ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
|
1811
1824
|
# window is a 60 minute period. Valid values for `ddd` are:
|
1812
|
-
#
|
1813
|
-
# Specifies the weekly time range during which maintenance on the
|
1814
|
-
# cluster is performed. It is specified as a range in the format
|
1815
|
-
# ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance
|
1816
|
-
# window is a 60 minute period.
|
1817
|
-
#
|
1818
|
-
# Valid values for `ddd` are:
|
1819
|
-
#
|
1820
|
-
# * `sun`
|
1821
|
-
#
|
1822
|
-
# * `mon`
|
1823
|
-
#
|
1824
|
-
# * `tue`
|
1825
|
-
#
|
1826
|
-
# * `wed`
|
1827
|
-
#
|
1828
|
-
# * `thu`
|
1829
|
-
#
|
1830
|
-
# * `fri`
|
1831
|
-
#
|
1832
|
-
# * `sat`
|
1833
|
-
#
|
1834
|
-
# Example: `sun:23:00-mon:01:30`
|
1835
1825
|
# @return [String]
|
1836
1826
|
#
|
1837
1827
|
# @!attribute [rw] port
|
@@ -1970,6 +1960,12 @@ module Aws::ElastiCache
|
|
1970
1960
|
# cache_parameter_group_name: "String", # required
|
1971
1961
|
# cache_parameter_group_family: "String", # required
|
1972
1962
|
# description: "String", # required
|
1963
|
+
# tags: [
|
1964
|
+
# {
|
1965
|
+
# key: "String",
|
1966
|
+
# value: "String",
|
1967
|
+
# },
|
1968
|
+
# ],
|
1973
1969
|
# }
|
1974
1970
|
#
|
1975
1971
|
# @!attribute [rw] cache_parameter_group_name
|
@@ -1989,12 +1985,19 @@ module Aws::ElastiCache
|
|
1989
1985
|
# A user-specified description for the cache parameter group.
|
1990
1986
|
# @return [String]
|
1991
1987
|
#
|
1988
|
+
# @!attribute [rw] tags
|
1989
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
1990
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
1991
|
+
# accepted.
|
1992
|
+
# @return [Array<Types::Tag>]
|
1993
|
+
#
|
1992
1994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheParameterGroupMessage AWS API Documentation
|
1993
1995
|
#
|
1994
1996
|
class CreateCacheParameterGroupMessage < Struct.new(
|
1995
1997
|
:cache_parameter_group_name,
|
1996
1998
|
:cache_parameter_group_family,
|
1997
|
-
:description
|
1999
|
+
:description,
|
2000
|
+
:tags)
|
1998
2001
|
SENSITIVE = []
|
1999
2002
|
include Aws::Structure
|
2000
2003
|
end
|
@@ -2019,6 +2022,12 @@ module Aws::ElastiCache
|
|
2019
2022
|
# {
|
2020
2023
|
# cache_security_group_name: "String", # required
|
2021
2024
|
# description: "String", # required
|
2025
|
+
# tags: [
|
2026
|
+
# {
|
2027
|
+
# key: "String",
|
2028
|
+
# value: "String",
|
2029
|
+
# },
|
2030
|
+
# ],
|
2022
2031
|
# }
|
2023
2032
|
#
|
2024
2033
|
# @!attribute [rw] cache_security_group_name
|
@@ -2035,11 +2044,18 @@ module Aws::ElastiCache
|
|
2035
2044
|
# A description for the cache security group.
|
2036
2045
|
# @return [String]
|
2037
2046
|
#
|
2047
|
+
# @!attribute [rw] tags
|
2048
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
2049
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
2050
|
+
# accepted.
|
2051
|
+
# @return [Array<Types::Tag>]
|
2052
|
+
#
|
2038
2053
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSecurityGroupMessage AWS API Documentation
|
2039
2054
|
#
|
2040
2055
|
class CreateCacheSecurityGroupMessage < Struct.new(
|
2041
2056
|
:cache_security_group_name,
|
2042
|
-
:description
|
2057
|
+
:description,
|
2058
|
+
:tags)
|
2043
2059
|
SENSITIVE = []
|
2044
2060
|
include Aws::Structure
|
2045
2061
|
end
|
@@ -2071,6 +2087,12 @@ module Aws::ElastiCache
|
|
2071
2087
|
# cache_subnet_group_name: "String", # required
|
2072
2088
|
# cache_subnet_group_description: "String", # required
|
2073
2089
|
# subnet_ids: ["String"], # required
|
2090
|
+
# tags: [
|
2091
|
+
# {
|
2092
|
+
# key: "String",
|
2093
|
+
# value: "String",
|
2094
|
+
# },
|
2095
|
+
# ],
|
2074
2096
|
# }
|
2075
2097
|
#
|
2076
2098
|
# @!attribute [rw] cache_subnet_group_name
|
@@ -2091,12 +2113,19 @@ module Aws::ElastiCache
|
|
2091
2113
|
# A list of VPC subnet IDs for the cache subnet group.
|
2092
2114
|
# @return [Array<String>]
|
2093
2115
|
#
|
2116
|
+
# @!attribute [rw] tags
|
2117
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
2118
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
2119
|
+
# accepted.
|
2120
|
+
# @return [Array<Types::Tag>]
|
2121
|
+
#
|
2094
2122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateCacheSubnetGroupMessage AWS API Documentation
|
2095
2123
|
#
|
2096
2124
|
class CreateCacheSubnetGroupMessage < Struct.new(
|
2097
2125
|
:cache_subnet_group_name,
|
2098
2126
|
:cache_subnet_group_description,
|
2099
|
-
:subnet_ids
|
2127
|
+
:subnet_ids,
|
2128
|
+
:tags)
|
2100
2129
|
SENSITIVE = []
|
2101
2130
|
include Aws::Structure
|
2102
2131
|
end
|
@@ -2127,16 +2156,16 @@ module Aws::ElastiCache
|
|
2127
2156
|
# }
|
2128
2157
|
#
|
2129
2158
|
# @!attribute [rw] global_replication_group_id_suffix
|
2130
|
-
# The suffix name of a Global
|
2131
|
-
# automatically applies a prefix to the Global
|
2159
|
+
# The suffix name of a Global datastore. Amazon ElastiCache
|
2160
|
+
# automatically applies a prefix to the Global datastore ID when it is
|
2132
2161
|
# created. Each AWS Region has its own prefix. For instance, a Global
|
2133
|
-
#
|
2162
|
+
# datastore ID created in the US-West-1 region will begin with
|
2134
2163
|
# "dsdfu" along with the suffix name you provide. The suffix,
|
2135
2164
|
# combined with the auto-generated prefix, guarantees uniqueness of
|
2136
|
-
# the Global
|
2165
|
+
# the Global datastore name across multiple regions.
|
2137
2166
|
#
|
2138
|
-
# For a full list of AWS Regions and their respective Global
|
2139
|
-
# iD prefixes, see [Using the AWS CLI with Global
|
2167
|
+
# For a full list of AWS Regions and their respective Global datastore
|
2168
|
+
# iD prefixes, see [Using the AWS CLI with Global datastores ][1].
|
2140
2169
|
#
|
2141
2170
|
#
|
2142
2171
|
#
|
@@ -2144,7 +2173,7 @@ module Aws::ElastiCache
|
|
2144
2173
|
# @return [String]
|
2145
2174
|
#
|
2146
2175
|
# @!attribute [rw] global_replication_group_description
|
2147
|
-
# Provides details of the Global
|
2176
|
+
# Provides details of the Global datastore
|
2148
2177
|
# @return [String]
|
2149
2178
|
#
|
2150
2179
|
# @!attribute [rw] primary_replication_group_id
|
@@ -2169,7 +2198,7 @@ module Aws::ElastiCache
|
|
2169
2198
|
# automatically replicates updates to the secondary cluster.
|
2170
2199
|
#
|
2171
2200
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
2172
|
-
# Global
|
2201
|
+
# Global datastore, which is what you use to associate a secondary
|
2173
2202
|
# cluster.
|
2174
2203
|
#
|
2175
2204
|
# ^
|
@@ -2258,7 +2287,7 @@ module Aws::ElastiCache
|
|
2258
2287
|
# @return [String]
|
2259
2288
|
#
|
2260
2289
|
# @!attribute [rw] global_replication_group_id
|
2261
|
-
# The name of the Global
|
2290
|
+
# The name of the Global datastore
|
2262
2291
|
# @return [String]
|
2263
2292
|
#
|
2264
2293
|
# @!attribute [rw] primary_cluster_id
|
@@ -2460,7 +2489,7 @@ module Aws::ElastiCache
|
|
2460
2489
|
#
|
2461
2490
|
# @!attribute [rw] engine
|
2462
2491
|
# The name of the cache engine to be used for the clusters in this
|
2463
|
-
# replication group.
|
2492
|
+
# replication group. Must be Redis.
|
2464
2493
|
# @return [String]
|
2465
2494
|
#
|
2466
2495
|
# @!attribute [rw] engine_version
|
@@ -2485,12 +2514,6 @@ module Aws::ElastiCache
|
|
2485
2514
|
# group. If this argument is omitted, the default cache parameter
|
2486
2515
|
# group for the specified engine is used.
|
2487
2516
|
#
|
2488
|
-
# <note markdown="1"> If you are restoring to an engine version that is different than the
|
2489
|
-
# original, you must specify the default version of that version. For
|
2490
|
-
# example, `CacheParameterGroupName=default.redis4.0`.
|
2491
|
-
#
|
2492
|
-
# </note>
|
2493
|
-
#
|
2494
2517
|
# If you are running Redis version 3.2.4 or later, only one node group
|
2495
2518
|
# (shard), and want to use a default parameter group, we recommend
|
2496
2519
|
# that you specify the parameter group by name.
|
@@ -2529,11 +2552,12 @@ module Aws::ElastiCache
|
|
2529
2552
|
# @return [Array<String>]
|
2530
2553
|
#
|
2531
2554
|
# @!attribute [rw] tags
|
2532
|
-
# A list of
|
2533
|
-
#
|
2555
|
+
# A list of tags to be added to this resource. Tags are
|
2556
|
+
# comma-separated key,value pairs (e.g. Key=`myKey`,
|
2534
2557
|
# Value=`myKeyValue`. You can include multiple tags as shown
|
2535
2558
|
# following: Key=`myKey`, Value=`myKeyValue` Key=`mySecondKey`,
|
2536
|
-
# Value=`mySecondKeyValue`.
|
2559
|
+
# Value=`mySecondKeyValue`. Tags on replication groups will be
|
2560
|
+
# replicated to all nodes.
|
2537
2561
|
# @return [Array<Types::Tag>]
|
2538
2562
|
#
|
2539
2563
|
# @!attribute [rw] snapshot_arns
|
@@ -2759,6 +2783,12 @@ module Aws::ElastiCache
|
|
2759
2783
|
# cache_cluster_id: "String",
|
2760
2784
|
# snapshot_name: "String", # required
|
2761
2785
|
# kms_key_id: "String",
|
2786
|
+
# tags: [
|
2787
|
+
# {
|
2788
|
+
# key: "String",
|
2789
|
+
# value: "String",
|
2790
|
+
# },
|
2791
|
+
# ],
|
2762
2792
|
# }
|
2763
2793
|
#
|
2764
2794
|
# @!attribute [rw] replication_group_id
|
@@ -2779,13 +2809,20 @@ module Aws::ElastiCache
|
|
2779
2809
|
# The ID of the KMS key used to encrypt the snapshot.
|
2780
2810
|
# @return [String]
|
2781
2811
|
#
|
2812
|
+
# @!attribute [rw] tags
|
2813
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
2814
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
2815
|
+
# accepted.
|
2816
|
+
# @return [Array<Types::Tag>]
|
2817
|
+
#
|
2782
2818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateSnapshotMessage AWS API Documentation
|
2783
2819
|
#
|
2784
2820
|
class CreateSnapshotMessage < Struct.new(
|
2785
2821
|
:replication_group_id,
|
2786
2822
|
:cache_cluster_id,
|
2787
2823
|
:snapshot_name,
|
2788
|
-
:kms_key_id
|
2824
|
+
:kms_key_id,
|
2825
|
+
:tags)
|
2789
2826
|
SENSITIVE = []
|
2790
2827
|
include Aws::Structure
|
2791
2828
|
end
|
@@ -2810,6 +2847,12 @@ module Aws::ElastiCache
|
|
2810
2847
|
# user_group_id: "String", # required
|
2811
2848
|
# engine: "EngineType", # required
|
2812
2849
|
# user_ids: ["UserId"],
|
2850
|
+
# tags: [
|
2851
|
+
# {
|
2852
|
+
# key: "String",
|
2853
|
+
# value: "String",
|
2854
|
+
# },
|
2855
|
+
# ],
|
2813
2856
|
# }
|
2814
2857
|
#
|
2815
2858
|
# @!attribute [rw] user_group_id
|
@@ -2824,12 +2867,19 @@ module Aws::ElastiCache
|
|
2824
2867
|
# The list of user IDs that belong to the user group.
|
2825
2868
|
# @return [Array<String>]
|
2826
2869
|
#
|
2870
|
+
# @!attribute [rw] tags
|
2871
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
2872
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
2873
|
+
# accepted.
|
2874
|
+
# @return [Array<Types::Tag>]
|
2875
|
+
#
|
2827
2876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateUserGroupMessage AWS API Documentation
|
2828
2877
|
#
|
2829
2878
|
class CreateUserGroupMessage < Struct.new(
|
2830
2879
|
:user_group_id,
|
2831
2880
|
:engine,
|
2832
|
-
:user_ids
|
2881
|
+
:user_ids,
|
2882
|
+
:tags)
|
2833
2883
|
SENSITIVE = []
|
2834
2884
|
include Aws::Structure
|
2835
2885
|
end
|
@@ -2844,6 +2894,12 @@ module Aws::ElastiCache
|
|
2844
2894
|
# passwords: ["String"],
|
2845
2895
|
# access_string: "AccessString", # required
|
2846
2896
|
# no_password_required: false,
|
2897
|
+
# tags: [
|
2898
|
+
# {
|
2899
|
+
# key: "String",
|
2900
|
+
# value: "String",
|
2901
|
+
# },
|
2902
|
+
# ],
|
2847
2903
|
# }
|
2848
2904
|
#
|
2849
2905
|
# @!attribute [rw] user_id
|
@@ -2871,6 +2927,12 @@ module Aws::ElastiCache
|
|
2871
2927
|
# Indicates a password is not required for this user.
|
2872
2928
|
# @return [Boolean]
|
2873
2929
|
#
|
2930
|
+
# @!attribute [rw] tags
|
2931
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
2932
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
2933
|
+
# accepted.
|
2934
|
+
# @return [Array<Types::Tag>]
|
2935
|
+
#
|
2874
2936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CreateUserMessage AWS API Documentation
|
2875
2937
|
#
|
2876
2938
|
class CreateUserMessage < Struct.new(
|
@@ -2879,7 +2941,8 @@ module Aws::ElastiCache
|
|
2879
2941
|
:engine,
|
2880
2942
|
:passwords,
|
2881
2943
|
:access_string,
|
2882
|
-
:no_password_required
|
2944
|
+
:no_password_required,
|
2945
|
+
:tags)
|
2883
2946
|
SENSITIVE = []
|
2884
2947
|
include Aws::Structure
|
2885
2948
|
end
|
@@ -2923,7 +2986,7 @@ module Aws::ElastiCache
|
|
2923
2986
|
# }
|
2924
2987
|
#
|
2925
2988
|
# @!attribute [rw] global_replication_group_id
|
2926
|
-
# The name of the Global
|
2989
|
+
# The name of the Global datastore
|
2927
2990
|
# @return [String]
|
2928
2991
|
#
|
2929
2992
|
# @!attribute [rw] node_group_count
|
@@ -2973,7 +3036,7 @@ module Aws::ElastiCache
|
|
2973
3036
|
# automatically replicates updates to the secondary cluster.
|
2974
3037
|
#
|
2975
3038
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
2976
|
-
# Global
|
3039
|
+
# Global datastore, which is what you use to associate a secondary
|
2977
3040
|
# cluster.
|
2978
3041
|
#
|
2979
3042
|
# ^
|
@@ -3207,7 +3270,7 @@ module Aws::ElastiCache
|
|
3207
3270
|
# }
|
3208
3271
|
#
|
3209
3272
|
# @!attribute [rw] global_replication_group_id
|
3210
|
-
# The name of the Global
|
3273
|
+
# The name of the Global datastore
|
3211
3274
|
# @return [String]
|
3212
3275
|
#
|
3213
3276
|
# @!attribute [rw] retain_primary_replication_group
|
@@ -3231,7 +3294,7 @@ module Aws::ElastiCache
|
|
3231
3294
|
# automatically replicates updates to the secondary cluster.
|
3232
3295
|
#
|
3233
3296
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
3234
|
-
# Global
|
3297
|
+
# Global datastore, which is what you use to associate a secondary
|
3235
3298
|
# cluster.
|
3236
3299
|
#
|
3237
3300
|
# ^
|
@@ -3833,7 +3896,7 @@ module Aws::ElastiCache
|
|
3833
3896
|
# }
|
3834
3897
|
#
|
3835
3898
|
# @!attribute [rw] global_replication_group_id
|
3836
|
-
# The name of the Global
|
3899
|
+
# The name of the Global datastore
|
3837
3900
|
# @return [String]
|
3838
3901
|
#
|
3839
3902
|
# @!attribute [rw] max_records
|
@@ -3851,7 +3914,7 @@ module Aws::ElastiCache
|
|
3851
3914
|
# @return [String]
|
3852
3915
|
#
|
3853
3916
|
# @!attribute [rw] show_member_info
|
3854
|
-
# Returns the list of members that comprise the Global
|
3917
|
+
# Returns the list of members that comprise the Global datastore.
|
3855
3918
|
# @return [Boolean]
|
3856
3919
|
#
|
3857
3920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DescribeGlobalReplicationGroupsMessage AWS API Documentation
|
@@ -4657,17 +4720,17 @@ module Aws::ElastiCache
|
|
4657
4720
|
# }
|
4658
4721
|
#
|
4659
4722
|
# @!attribute [rw] global_replication_group_id
|
4660
|
-
# The name of the Global
|
4723
|
+
# The name of the Global datastore
|
4661
4724
|
# @return [String]
|
4662
4725
|
#
|
4663
4726
|
# @!attribute [rw] replication_group_id
|
4664
4727
|
# The name of the secondary cluster you wish to remove from the Global
|
4665
|
-
#
|
4728
|
+
# datastore
|
4666
4729
|
# @return [String]
|
4667
4730
|
#
|
4668
4731
|
# @!attribute [rw] replication_group_region
|
4669
4732
|
# The AWS region of secondary cluster you wish to remove from the
|
4670
|
-
# Global
|
4733
|
+
# Global datastore
|
4671
4734
|
# @return [String]
|
4672
4735
|
#
|
4673
4736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DisassociateGlobalReplicationGroupMessage AWS API Documentation
|
@@ -4687,7 +4750,7 @@ module Aws::ElastiCache
|
|
4687
4750
|
# automatically replicates updates to the secondary cluster.
|
4688
4751
|
#
|
4689
4752
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4690
|
-
# Global
|
4753
|
+
# Global datastore, which is what you use to associate a secondary
|
4691
4754
|
# cluster.
|
4692
4755
|
#
|
4693
4756
|
# ^
|
@@ -4853,11 +4916,11 @@ module Aws::ElastiCache
|
|
4853
4916
|
# }
|
4854
4917
|
#
|
4855
4918
|
# @!attribute [rw] global_replication_group_id
|
4856
|
-
# The name of the Global
|
4919
|
+
# The name of the Global datastore
|
4857
4920
|
# @return [String]
|
4858
4921
|
#
|
4859
4922
|
# @!attribute [rw] primary_region
|
4860
|
-
# The AWS region of the primary cluster of the Global
|
4923
|
+
# The AWS region of the primary cluster of the Global datastore
|
4861
4924
|
# @return [String]
|
4862
4925
|
#
|
4863
4926
|
# @!attribute [rw] primary_replication_group_id
|
@@ -4881,7 +4944,7 @@ module Aws::ElastiCache
|
|
4881
4944
|
# automatically replicates updates to the secondary cluster.
|
4882
4945
|
#
|
4883
4946
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4884
|
-
# Global
|
4947
|
+
# Global datastore, which is what you use to associate a secondary
|
4885
4948
|
# cluster.
|
4886
4949
|
#
|
4887
4950
|
# ^
|
@@ -4949,25 +5012,25 @@ module Aws::ElastiCache
|
|
4949
5012
|
# automatically replicates updates to the secondary cluster.
|
4950
5013
|
#
|
4951
5014
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4952
|
-
# Global
|
5015
|
+
# Global datastore, which is what you use to associate a secondary
|
4953
5016
|
# cluster.
|
4954
5017
|
#
|
4955
5018
|
# ^
|
4956
5019
|
#
|
4957
5020
|
# @!attribute [rw] global_replication_group_id
|
4958
|
-
# The name of the Global
|
5021
|
+
# The name of the Global datastore
|
4959
5022
|
# @return [String]
|
4960
5023
|
#
|
4961
5024
|
# @!attribute [rw] global_replication_group_description
|
4962
|
-
# The optional description of the Global
|
5025
|
+
# The optional description of the Global datastore
|
4963
5026
|
# @return [String]
|
4964
5027
|
#
|
4965
5028
|
# @!attribute [rw] status
|
4966
|
-
# The status of the Global
|
5029
|
+
# The status of the Global datastore
|
4967
5030
|
# @return [String]
|
4968
5031
|
#
|
4969
5032
|
# @!attribute [rw] cache_node_type
|
4970
|
-
# The cache node type of the Global
|
5033
|
+
# The cache node type of the Global datastore
|
4971
5034
|
# @return [String]
|
4972
5035
|
#
|
4973
5036
|
# @!attribute [rw] engine
|
@@ -4979,11 +5042,11 @@ module Aws::ElastiCache
|
|
4979
5042
|
# @return [String]
|
4980
5043
|
#
|
4981
5044
|
# @!attribute [rw] members
|
4982
|
-
# The replication groups that comprise the Global
|
5045
|
+
# The replication groups that comprise the Global datastore.
|
4983
5046
|
# @return [Array<Types::GlobalReplicationGroupMember>]
|
4984
5047
|
#
|
4985
5048
|
# @!attribute [rw] cluster_enabled
|
4986
|
-
# A flag that indicates whether the Global
|
5049
|
+
# A flag that indicates whether the Global datastore is cluster
|
4987
5050
|
# enabled.
|
4988
5051
|
# @return [Boolean]
|
4989
5052
|
#
|
@@ -5046,21 +5109,21 @@ module Aws::ElastiCache
|
|
5046
5109
|
include Aws::Structure
|
5047
5110
|
end
|
5048
5111
|
|
5049
|
-
# The Global
|
5112
|
+
# The Global datastore name already exists.
|
5050
5113
|
#
|
5051
5114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/GlobalReplicationGroupAlreadyExistsFault AWS API Documentation
|
5052
5115
|
#
|
5053
5116
|
class GlobalReplicationGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
5054
5117
|
|
5055
|
-
# The name of the Global
|
5056
|
-
# the Global
|
5118
|
+
# The name of the Global datastore and role of this replication group in
|
5119
|
+
# the Global datastore.
|
5057
5120
|
#
|
5058
5121
|
# @!attribute [rw] global_replication_group_id
|
5059
|
-
# The name of the Global
|
5122
|
+
# The name of the Global datastore
|
5060
5123
|
# @return [String]
|
5061
5124
|
#
|
5062
5125
|
# @!attribute [rw] global_replication_group_member_role
|
5063
|
-
# The role of the replication group in a Global
|
5126
|
+
# The role of the replication group in a Global datastore. Can be
|
5064
5127
|
# primary or secondary.
|
5065
5128
|
# @return [String]
|
5066
5129
|
#
|
@@ -5073,15 +5136,15 @@ module Aws::ElastiCache
|
|
5073
5136
|
include Aws::Structure
|
5074
5137
|
end
|
5075
5138
|
|
5076
|
-
# A member of a Global
|
5139
|
+
# A member of a Global datastore. It contains the Replication Group Id,
|
5077
5140
|
# the AWS region and the role of the replication group.
|
5078
5141
|
#
|
5079
5142
|
# @!attribute [rw] replication_group_id
|
5080
|
-
# The replication group id of the Global
|
5143
|
+
# The replication group id of the Global datastore member.
|
5081
5144
|
# @return [String]
|
5082
5145
|
#
|
5083
5146
|
# @!attribute [rw] replication_group_region
|
5084
|
-
# The AWS region of the Global
|
5147
|
+
# The AWS region of the Global datastore member.
|
5085
5148
|
# @return [String]
|
5086
5149
|
#
|
5087
5150
|
# @!attribute [rw] role
|
@@ -5109,7 +5172,7 @@ module Aws::ElastiCache
|
|
5109
5172
|
include Aws::Structure
|
5110
5173
|
end
|
5111
5174
|
|
5112
|
-
# The Global
|
5175
|
+
# The Global datastore does not exist
|
5113
5176
|
#
|
5114
5177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/GlobalReplicationGroupNotFoundFault AWS API Documentation
|
5115
5178
|
#
|
@@ -5137,7 +5200,7 @@ module Aws::ElastiCache
|
|
5137
5200
|
# }
|
5138
5201
|
#
|
5139
5202
|
# @!attribute [rw] global_replication_group_id
|
5140
|
-
# The name of the Global
|
5203
|
+
# The name of the Global datastore
|
5141
5204
|
# @return [String]
|
5142
5205
|
#
|
5143
5206
|
# @!attribute [rw] node_group_count
|
@@ -5147,7 +5210,7 @@ module Aws::ElastiCache
|
|
5147
5210
|
# @!attribute [rw] regional_configurations
|
5148
5211
|
# Describes the replication group IDs, the AWS regions where they are
|
5149
5212
|
# stored and the shard configuration for each that comprise the Global
|
5150
|
-
#
|
5213
|
+
# datastore
|
5151
5214
|
# @return [Array<Types::RegionalConfiguration>]
|
5152
5215
|
#
|
5153
5216
|
# @!attribute [rw] apply_immediately
|
@@ -5173,7 +5236,7 @@ module Aws::ElastiCache
|
|
5173
5236
|
# automatically replicates updates to the secondary cluster.
|
5174
5237
|
#
|
5175
5238
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
5176
|
-
# Global
|
5239
|
+
# Global datastore, which is what you use to associate a secondary
|
5177
5240
|
# cluster.
|
5178
5241
|
#
|
5179
5242
|
# ^
|
@@ -5291,7 +5354,7 @@ module Aws::ElastiCache
|
|
5291
5354
|
#
|
5292
5355
|
class InvalidCacheSecurityGroupStateFault < Aws::EmptyStructure; end
|
5293
5356
|
|
5294
|
-
# The Global
|
5357
|
+
# The Global datastore is not available or in primary-only state.
|
5295
5358
|
#
|
5296
5359
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InvalidGlobalReplicationGroupStateFault AWS API Documentation
|
5297
5360
|
#
|
@@ -5927,12 +5990,13 @@ module Aws::ElastiCache
|
|
5927
5990
|
# apply_immediately: false, # required
|
5928
5991
|
# cache_node_type: "String",
|
5929
5992
|
# engine_version: "String",
|
5993
|
+
# cache_parameter_group_name: "String",
|
5930
5994
|
# global_replication_group_description: "String",
|
5931
5995
|
# automatic_failover_enabled: false,
|
5932
5996
|
# }
|
5933
5997
|
#
|
5934
5998
|
# @!attribute [rw] global_replication_group_id
|
5935
|
-
# The name of the Global
|
5999
|
+
# The name of the Global datastore
|
5936
6000
|
# @return [String]
|
5937
6001
|
#
|
5938
6002
|
# @!attribute [rw] apply_immediately
|
@@ -5943,17 +6007,23 @@ module Aws::ElastiCache
|
|
5943
6007
|
# @return [Boolean]
|
5944
6008
|
#
|
5945
6009
|
# @!attribute [rw] cache_node_type
|
5946
|
-
# A valid cache node type that you want to scale this Global
|
6010
|
+
# A valid cache node type that you want to scale this Global datastore
|
5947
6011
|
# to.
|
5948
6012
|
# @return [String]
|
5949
6013
|
#
|
5950
6014
|
# @!attribute [rw] engine_version
|
5951
6015
|
# The upgraded version of the cache engine to be run on the clusters
|
5952
|
-
# in the Global
|
6016
|
+
# in the Global datastore.
|
6017
|
+
# @return [String]
|
6018
|
+
#
|
6019
|
+
# @!attribute [rw] cache_parameter_group_name
|
6020
|
+
# The name of the cache parameter group to use with the Global
|
6021
|
+
# datastore. It must be compatible with the major engine version used
|
6022
|
+
# by the Global datastore.
|
5953
6023
|
# @return [String]
|
5954
6024
|
#
|
5955
6025
|
# @!attribute [rw] global_replication_group_description
|
5956
|
-
# A description of the Global
|
6026
|
+
# A description of the Global datastore
|
5957
6027
|
# @return [String]
|
5958
6028
|
#
|
5959
6029
|
# @!attribute [rw] automatic_failover_enabled
|
@@ -5968,6 +6038,7 @@ module Aws::ElastiCache
|
|
5968
6038
|
:apply_immediately,
|
5969
6039
|
:cache_node_type,
|
5970
6040
|
:engine_version,
|
6041
|
+
:cache_parameter_group_name,
|
5971
6042
|
:global_replication_group_description,
|
5972
6043
|
:automatic_failover_enabled)
|
5973
6044
|
SENSITIVE = []
|
@@ -5981,7 +6052,7 @@ module Aws::ElastiCache
|
|
5981
6052
|
# automatically replicates updates to the secondary cluster.
|
5982
6053
|
#
|
5983
6054
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
5984
|
-
# Global
|
6055
|
+
# Global datastore, which is what you use to associate a secondary
|
5985
6056
|
# cluster.
|
5986
6057
|
#
|
5987
6058
|
# ^
|
@@ -6057,13 +6128,9 @@ module Aws::ElastiCache
|
|
6057
6128
|
# @return [Boolean]
|
6058
6129
|
#
|
6059
6130
|
# @!attribute [rw] multi_az_enabled
|
6060
|
-
# A
|
6061
|
-
#
|
6062
|
-
#
|
6063
|
-
#
|
6064
|
-
#
|
6065
|
-
#
|
6066
|
-
# [1]: http://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/AutoFailover.html
|
6131
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
6132
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
6133
|
+
# accepted.
|
6067
6134
|
# @return [Boolean]
|
6068
6135
|
#
|
6069
6136
|
# @!attribute [rw] node_group_id
|
@@ -6971,6 +7038,12 @@ module Aws::ElastiCache
|
|
6971
7038
|
# reserved_cache_nodes_offering_id: "String", # required
|
6972
7039
|
# reserved_cache_node_id: "String",
|
6973
7040
|
# cache_node_count: 1,
|
7041
|
+
# tags: [
|
7042
|
+
# {
|
7043
|
+
# key: "String",
|
7044
|
+
# value: "String",
|
7045
|
+
# },
|
7046
|
+
# ],
|
6974
7047
|
# }
|
6975
7048
|
#
|
6976
7049
|
# @!attribute [rw] reserved_cache_nodes_offering_id
|
@@ -6998,12 +7071,19 @@ module Aws::ElastiCache
|
|
6998
7071
|
# Default: `1`
|
6999
7072
|
# @return [Integer]
|
7000
7073
|
#
|
7074
|
+
# @!attribute [rw] tags
|
7075
|
+
# A list of tags to be added to this resource. A tag is a key-value
|
7076
|
+
# pair. A tag key must be accompanied by a tag value, although null is
|
7077
|
+
# accepted.
|
7078
|
+
# @return [Array<Types::Tag>]
|
7079
|
+
#
|
7001
7080
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/PurchaseReservedCacheNodesOfferingMessage AWS API Documentation
|
7002
7081
|
#
|
7003
7082
|
class PurchaseReservedCacheNodesOfferingMessage < Struct.new(
|
7004
7083
|
:reserved_cache_nodes_offering_id,
|
7005
7084
|
:reserved_cache_node_id,
|
7006
|
-
:cache_node_count
|
7085
|
+
:cache_node_count,
|
7086
|
+
:tags)
|
7007
7087
|
SENSITIVE = []
|
7008
7088
|
include Aws::Structure
|
7009
7089
|
end
|
@@ -7030,7 +7110,7 @@ module Aws::ElastiCache
|
|
7030
7110
|
# }
|
7031
7111
|
#
|
7032
7112
|
# @!attribute [rw] global_replication_group_id
|
7033
|
-
# The name of the Global
|
7113
|
+
# The name of the Global datastore
|
7034
7114
|
# @return [String]
|
7035
7115
|
#
|
7036
7116
|
# @!attribute [rw] apply_immediately
|
@@ -7053,7 +7133,7 @@ module Aws::ElastiCache
|
|
7053
7133
|
# automatically replicates updates to the secondary cluster.
|
7054
7134
|
#
|
7055
7135
|
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
7056
|
-
# Global
|
7136
|
+
# Global datastore, which is what you use to associate a secondary
|
7057
7137
|
# cluster.
|
7058
7138
|
#
|
7059
7139
|
# ^
|
@@ -7217,8 +7297,8 @@ module Aws::ElastiCache
|
|
7217
7297
|
# @return [String]
|
7218
7298
|
#
|
7219
7299
|
# @!attribute [rw] global_replication_group_info
|
7220
|
-
# The name of the Global
|
7221
|
-
# in the Global
|
7300
|
+
# The name of the Global datastore and role of this replication group
|
7301
|
+
# in the Global datastore.
|
7222
7302
|
# @return [Types::GlobalReplicationGroupInfo]
|
7223
7303
|
#
|
7224
7304
|
# @!attribute [rw] status
|
@@ -8575,9 +8655,12 @@ module Aws::ElastiCache
|
|
8575
8655
|
include Aws::Structure
|
8576
8656
|
end
|
8577
8657
|
|
8578
|
-
# A
|
8579
|
-
#
|
8580
|
-
#
|
8658
|
+
# A tag that can be added to an ElastiCache cluster or replication
|
8659
|
+
# group. Tags are composed of a Key/Value pair. You can use tags to
|
8660
|
+
# categorize and track all your ElastiCache resources, with the
|
8661
|
+
# exception of global replication group. When you add or remove tags on
|
8662
|
+
# replication groups, those actions will be replicated to all nodes in
|
8663
|
+
# the replication group. A tag with a null Value is permitted.
|
8581
8664
|
#
|
8582
8665
|
# @note When making an API call, you may pass Tag
|
8583
8666
|
# data as a hash:
|
@@ -8608,7 +8691,7 @@ module Aws::ElastiCache
|
|
8608
8691
|
# `ListTagsForResource`, and `RemoveTagsFromResource` operations.
|
8609
8692
|
#
|
8610
8693
|
# @!attribute [rw] tag_list
|
8611
|
-
# A list of
|
8694
|
+
# A list of tags as key-value pairs.
|
8612
8695
|
# @return [Array<Types::Tag>]
|
8613
8696
|
#
|
8614
8697
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/TagListMessage AWS API Documentation
|