aws-sdk-elasticache 1.31.0 → 1.36.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/lib/aws-sdk-elasticache.rb +1 -1
- data/lib/aws-sdk-elasticache/client.rb +127 -41
- data/lib/aws-sdk-elasticache/client_api.rb +11 -0
- data/lib/aws-sdk-elasticache/resource.rb +1 -7
- data/lib/aws-sdk-elasticache/types.rb +98 -42
- data/lib/aws-sdk-elasticache/waiters.rb +64 -0
- metadata +4 -3
@@ -186,6 +186,7 @@ module Aws::ElastiCache
|
|
186
186
|
ModifyReplicationGroupResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupResult')
|
187
187
|
ModifyReplicationGroupShardConfigurationMessage = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationMessage')
|
188
188
|
ModifyReplicationGroupShardConfigurationResult = Shapes::StructureShape.new(name: 'ModifyReplicationGroupShardConfigurationResult')
|
189
|
+
MultiAZStatus = Shapes::StringShape.new(name: 'MultiAZStatus')
|
189
190
|
NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
|
190
191
|
NodeGroup = Shapes::StructureShape.new(name: 'NodeGroup')
|
191
192
|
NodeGroupConfiguration = Shapes::StructureShape.new(name: 'NodeGroupConfiguration')
|
@@ -367,6 +368,7 @@ module Aws::ElastiCache
|
|
367
368
|
CacheCluster.add_member(:auth_token_last_modified_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "AuthTokenLastModifiedDate"))
|
368
369
|
CacheCluster.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
369
370
|
CacheCluster.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
371
|
+
CacheCluster.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
370
372
|
CacheCluster.struct_class = Types::CacheCluster
|
371
373
|
|
372
374
|
CacheClusterAlreadyExistsFault.struct_class = Types::CacheClusterAlreadyExistsFault
|
@@ -442,6 +444,7 @@ module Aws::ElastiCache
|
|
442
444
|
CacheParameterGroup.add_member(:cache_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "CacheParameterGroupFamily"))
|
443
445
|
CacheParameterGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
444
446
|
CacheParameterGroup.add_member(:is_global, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsGlobal"))
|
447
|
+
CacheParameterGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
445
448
|
CacheParameterGroup.struct_class = Types::CacheParameterGroup
|
446
449
|
|
447
450
|
CacheParameterGroupAlreadyExistsFault.struct_class = Types::CacheParameterGroupAlreadyExistsFault
|
@@ -473,6 +476,7 @@ module Aws::ElastiCache
|
|
473
476
|
CacheSecurityGroup.add_member(:cache_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "CacheSecurityGroupName"))
|
474
477
|
CacheSecurityGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
475
478
|
CacheSecurityGroup.add_member(:ec2_security_groups, Shapes::ShapeRef.new(shape: EC2SecurityGroupList, location_name: "EC2SecurityGroups"))
|
479
|
+
CacheSecurityGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
476
480
|
CacheSecurityGroup.struct_class = Types::CacheSecurityGroup
|
477
481
|
|
478
482
|
CacheSecurityGroupAlreadyExistsFault.struct_class = Types::CacheSecurityGroupAlreadyExistsFault
|
@@ -499,6 +503,7 @@ module Aws::ElastiCache
|
|
499
503
|
CacheSubnetGroup.add_member(:cache_subnet_group_description, Shapes::ShapeRef.new(shape: String, location_name: "CacheSubnetGroupDescription"))
|
500
504
|
CacheSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
501
505
|
CacheSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
506
|
+
CacheSubnetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
502
507
|
CacheSubnetGroup.struct_class = Types::CacheSubnetGroup
|
503
508
|
|
504
509
|
CacheSubnetGroupAlreadyExistsFault.struct_class = Types::CacheSubnetGroupAlreadyExistsFault
|
@@ -606,6 +611,7 @@ module Aws::ElastiCache
|
|
606
611
|
CreateReplicationGroupMessage.add_member(:global_replication_group_id, Shapes::ShapeRef.new(shape: String, location_name: "GlobalReplicationGroupId"))
|
607
612
|
CreateReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
608
613
|
CreateReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
614
|
+
CreateReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
609
615
|
CreateReplicationGroupMessage.add_member(:num_cache_clusters, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumCacheClusters"))
|
610
616
|
CreateReplicationGroupMessage.add_member(:preferred_cache_cluster_a_zs, Shapes::ShapeRef.new(shape: AvailabilityZonesList, location_name: "PreferredCacheClusterAZs"))
|
611
617
|
CreateReplicationGroupMessage.add_member(:num_node_groups, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumNodeGroups"))
|
@@ -891,6 +897,7 @@ module Aws::ElastiCache
|
|
891
897
|
GlobalReplicationGroup.add_member(:auth_token_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AuthTokenEnabled"))
|
892
898
|
GlobalReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
893
899
|
GlobalReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
900
|
+
GlobalReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
894
901
|
GlobalReplicationGroup.struct_class = Types::GlobalReplicationGroup
|
895
902
|
|
896
903
|
GlobalReplicationGroupAlreadyExistsFault.struct_class = Types::GlobalReplicationGroupAlreadyExistsFault
|
@@ -1019,6 +1026,7 @@ module Aws::ElastiCache
|
|
1019
1026
|
ModifyReplicationGroupMessage.add_member(:primary_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "PrimaryClusterId"))
|
1020
1027
|
ModifyReplicationGroupMessage.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1021
1028
|
ModifyReplicationGroupMessage.add_member(:automatic_failover_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutomaticFailoverEnabled"))
|
1029
|
+
ModifyReplicationGroupMessage.add_member(:multi_az_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZEnabled"))
|
1022
1030
|
ModifyReplicationGroupMessage.add_member(:node_group_id, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "NodeGroupId"))
|
1023
1031
|
ModifyReplicationGroupMessage.add_member(:cache_security_group_names, Shapes::ShapeRef.new(shape: CacheSecurityGroupNameList, location_name: "CacheSecurityGroupNames"))
|
1024
1032
|
ModifyReplicationGroupMessage.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdsList, location_name: "SecurityGroupIds"))
|
@@ -1216,6 +1224,7 @@ module Aws::ElastiCache
|
|
1216
1224
|
ReplicationGroup.add_member(:node_groups, Shapes::ShapeRef.new(shape: NodeGroupList, location_name: "NodeGroups"))
|
1217
1225
|
ReplicationGroup.add_member(:snapshotting_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "SnapshottingClusterId"))
|
1218
1226
|
ReplicationGroup.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1227
|
+
ReplicationGroup.add_member(:multi_az, Shapes::ShapeRef.new(shape: MultiAZStatus, location_name: "MultiAZ"))
|
1219
1228
|
ReplicationGroup.add_member(:configuration_endpoint, Shapes::ShapeRef.new(shape: Endpoint, location_name: "ConfigurationEndpoint"))
|
1220
1229
|
ReplicationGroup.add_member(:snapshot_retention_limit, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SnapshotRetentionLimit"))
|
1221
1230
|
ReplicationGroup.add_member(:snapshot_window, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotWindow"))
|
@@ -1226,6 +1235,7 @@ module Aws::ElastiCache
|
|
1226
1235
|
ReplicationGroup.add_member(:transit_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "TransitEncryptionEnabled"))
|
1227
1236
|
ReplicationGroup.add_member(:at_rest_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AtRestEncryptionEnabled"))
|
1228
1237
|
ReplicationGroup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1238
|
+
ReplicationGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
1229
1239
|
ReplicationGroup.struct_class = Types::ReplicationGroup
|
1230
1240
|
|
1231
1241
|
ReplicationGroupAlreadyExistsFault.struct_class = Types::ReplicationGroupAlreadyExistsFault
|
@@ -1379,6 +1389,7 @@ module Aws::ElastiCache
|
|
1379
1389
|
Snapshot.add_member(:automatic_failover, Shapes::ShapeRef.new(shape: AutomaticFailoverStatus, location_name: "AutomaticFailover"))
|
1380
1390
|
Snapshot.add_member(:node_snapshots, Shapes::ShapeRef.new(shape: NodeSnapshotList, location_name: "NodeSnapshots"))
|
1381
1391
|
Snapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1392
|
+
Snapshot.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
1382
1393
|
Snapshot.struct_class = Types::Snapshot
|
1383
1394
|
|
1384
1395
|
SnapshotAlreadyExistsFault.struct_class = Types::SnapshotAlreadyExistsFault
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::ElastiCache
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::ElastiCache::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::ElastiCache::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::ElastiCache::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -478,6 +478,10 @@ module Aws::ElastiCache
|
|
478
478
|
# Default: `false`
|
479
479
|
# @return [Boolean]
|
480
480
|
#
|
481
|
+
# @!attribute [rw] arn
|
482
|
+
# The ARN (Amazon Resource Name) of the cache cluster.
|
483
|
+
# @return [String]
|
484
|
+
#
|
481
485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheCluster AWS API Documentation
|
482
486
|
#
|
483
487
|
class CacheCluster < Struct.new(
|
@@ -506,7 +510,8 @@ module Aws::ElastiCache
|
|
506
510
|
:auth_token_enabled,
|
507
511
|
:auth_token_last_modified_date,
|
508
512
|
:transit_encryption_enabled,
|
509
|
-
:at_rest_encryption_enabled
|
513
|
+
:at_rest_encryption_enabled,
|
514
|
+
:arn)
|
510
515
|
include Aws::Structure
|
511
516
|
end
|
512
517
|
|
@@ -875,13 +880,18 @@ module Aws::ElastiCache
|
|
875
880
|
# Datastore
|
876
881
|
# @return [Boolean]
|
877
882
|
#
|
883
|
+
# @!attribute [rw] arn
|
884
|
+
# The ARN (Amazon Resource Name) of the cache parameter group.
|
885
|
+
# @return [String]
|
886
|
+
#
|
878
887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheParameterGroup AWS API Documentation
|
879
888
|
#
|
880
889
|
class CacheParameterGroup < Struct.new(
|
881
890
|
:cache_parameter_group_name,
|
882
891
|
:cache_parameter_group_family,
|
883
892
|
:description,
|
884
|
-
:is_global
|
893
|
+
:is_global,
|
894
|
+
:arn)
|
885
895
|
include Aws::Structure
|
886
896
|
end
|
887
897
|
|
@@ -1016,13 +1026,18 @@ module Aws::ElastiCache
|
|
1016
1026
|
# cache security group.
|
1017
1027
|
# @return [Array<Types::EC2SecurityGroup>]
|
1018
1028
|
#
|
1029
|
+
# @!attribute [rw] arn
|
1030
|
+
# The ARN (Amazon Resource Name) of the cache security group.
|
1031
|
+
# @return [String]
|
1032
|
+
#
|
1019
1033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSecurityGroup AWS API Documentation
|
1020
1034
|
#
|
1021
1035
|
class CacheSecurityGroup < Struct.new(
|
1022
1036
|
:owner_id,
|
1023
1037
|
:cache_security_group_name,
|
1024
1038
|
:description,
|
1025
|
-
:ec2_security_groups
|
1039
|
+
:ec2_security_groups,
|
1040
|
+
:arn)
|
1026
1041
|
include Aws::Structure
|
1027
1042
|
end
|
1028
1043
|
|
@@ -1109,13 +1124,18 @@ module Aws::ElastiCache
|
|
1109
1124
|
# A list of subnets associated with the cache subnet group.
|
1110
1125
|
# @return [Array<Types::Subnet>]
|
1111
1126
|
#
|
1127
|
+
# @!attribute [rw] arn
|
1128
|
+
# The ARN (Amazon Resource Name) of the cache subnet group.
|
1129
|
+
# @return [String]
|
1130
|
+
#
|
1112
1131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/CacheSubnetGroup AWS API Documentation
|
1113
1132
|
#
|
1114
1133
|
class CacheSubnetGroup < Struct.new(
|
1115
1134
|
:cache_subnet_group_name,
|
1116
1135
|
:cache_subnet_group_description,
|
1117
1136
|
:vpc_id,
|
1118
|
-
:subnets
|
1137
|
+
:subnets,
|
1138
|
+
:arn)
|
1119
1139
|
include Aws::Structure
|
1120
1140
|
end
|
1121
1141
|
|
@@ -1932,7 +1952,7 @@ module Aws::ElastiCache
|
|
1932
1952
|
# }
|
1933
1953
|
#
|
1934
1954
|
# @!attribute [rw] global_replication_group_id_suffix
|
1935
|
-
# The suffix
|
1955
|
+
# The suffix name of a Global Datastore. The suffix guarantees
|
1936
1956
|
# uniqueness of the Global Datastore name across multiple regions.
|
1937
1957
|
# @return [String]
|
1938
1958
|
#
|
@@ -1960,8 +1980,9 @@ module Aws::ElastiCache
|
|
1960
1980
|
# secondary cluster accepts only reads. The primary cluster
|
1961
1981
|
# automatically replicates updates to the secondary cluster.
|
1962
1982
|
#
|
1963
|
-
# * The **
|
1964
|
-
# Datastore, which is what you use to associate a secondary
|
1983
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
1984
|
+
# Global Datastore, which is what you use to associate a secondary
|
1985
|
+
# cluster.
|
1965
1986
|
#
|
1966
1987
|
# ^
|
1967
1988
|
# @return [Types::GlobalReplicationGroup]
|
@@ -1984,6 +2005,7 @@ module Aws::ElastiCache
|
|
1984
2005
|
# global_replication_group_id: "String",
|
1985
2006
|
# primary_cluster_id: "String",
|
1986
2007
|
# automatic_failover_enabled: false,
|
2008
|
+
# multi_az_enabled: false,
|
1987
2009
|
# num_cache_clusters: 1,
|
1988
2010
|
# preferred_cache_cluster_a_zs: ["String"],
|
1989
2011
|
# num_node_groups: 1,
|
@@ -2078,8 +2100,11 @@ module Aws::ElastiCache
|
|
2078
2100
|
# * Redis (cluster mode enabled): T1 node types.
|
2079
2101
|
# @return [Boolean]
|
2080
2102
|
#
|
2103
|
+
# @!attribute [rw] multi_az_enabled
|
2104
|
+
# @return [Boolean]
|
2105
|
+
#
|
2081
2106
|
# @!attribute [rw] num_cache_clusters
|
2082
|
-
# The number of
|
2107
|
+
# The number of nodes in the cluster.
|
2083
2108
|
#
|
2084
2109
|
# This parameter is not used if there is more than one node group
|
2085
2110
|
# (shard). You should use `ReplicasPerNodeGroup` instead.
|
@@ -2137,10 +2162,10 @@ module Aws::ElastiCache
|
|
2137
2162
|
# If you're creating a Redis (cluster mode disabled) or a Redis
|
2138
2163
|
# (cluster mode enabled) replication group, you can use this parameter
|
2139
2164
|
# to individually configure each node group (shard), or you can omit
|
2140
|
-
# this parameter. However, when seeding a Redis
|
2141
|
-
# cluster from a S3 rdb file
|
2142
|
-
# (shard) using this parameter because you
|
2143
|
-
# each node group.
|
2165
|
+
# this parameter. However, it is required when seeding a Redis
|
2166
|
+
# (cluster mode enabled) cluster from a S3 rdb file. You must
|
2167
|
+
# configure each node group (shard) using this parameter because you
|
2168
|
+
# must specify the slots for each node group.
|
2144
2169
|
# @return [Array<Types::NodeGroupConfiguration>]
|
2145
2170
|
#
|
2146
2171
|
# @!attribute [rw] cache_node_type
|
@@ -2463,6 +2488,7 @@ module Aws::ElastiCache
|
|
2463
2488
|
:global_replication_group_id,
|
2464
2489
|
:primary_cluster_id,
|
2465
2490
|
:automatic_failover_enabled,
|
2491
|
+
:multi_az_enabled,
|
2466
2492
|
:num_cache_clusters,
|
2467
2493
|
:preferred_cache_cluster_a_zs,
|
2468
2494
|
:num_node_groups,
|
@@ -2641,8 +2667,9 @@ module Aws::ElastiCache
|
|
2641
2667
|
# secondary cluster accepts only reads. The primary cluster
|
2642
2668
|
# automatically replicates updates to the secondary cluster.
|
2643
2669
|
#
|
2644
|
-
# * The **
|
2645
|
-
# Datastore, which is what you use to associate a secondary
|
2670
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
2671
|
+
# Global Datastore, which is what you use to associate a secondary
|
2672
|
+
# cluster.
|
2646
2673
|
#
|
2647
2674
|
# ^
|
2648
2675
|
# @return [Types::GlobalReplicationGroup]
|
@@ -2860,8 +2887,8 @@ module Aws::ElastiCache
|
|
2860
2887
|
# @return [String]
|
2861
2888
|
#
|
2862
2889
|
# @!attribute [rw] retain_primary_replication_group
|
2863
|
-
#
|
2864
|
-
#
|
2890
|
+
# The primary replication group is retained as a standalone
|
2891
|
+
# replication group.
|
2865
2892
|
# @return [Boolean]
|
2866
2893
|
#
|
2867
2894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/DeleteGlobalReplicationGroupMessage AWS API Documentation
|
@@ -2878,8 +2905,9 @@ module Aws::ElastiCache
|
|
2878
2905
|
# secondary cluster accepts only reads. The primary cluster
|
2879
2906
|
# automatically replicates updates to the secondary cluster.
|
2880
2907
|
#
|
2881
|
-
# * The **
|
2882
|
-
# Datastore, which is what you use to associate a secondary
|
2908
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
2909
|
+
# Global Datastore, which is what you use to associate a secondary
|
2910
|
+
# cluster.
|
2883
2911
|
#
|
2884
2912
|
# ^
|
2885
2913
|
# @return [Types::GlobalReplicationGroup]
|
@@ -3981,7 +4009,7 @@ module Aws::ElastiCache
|
|
3981
4009
|
# start_time: Time.now,
|
3982
4010
|
# end_time: Time.now,
|
3983
4011
|
# },
|
3984
|
-
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete
|
4012
|
+
# update_action_status: ["not-applied"], # accepts not-applied, waiting-to-start, in-progress, stopping, stopped, complete, scheduling, scheduled, not-applicable
|
3985
4013
|
# show_node_level_update_status: false,
|
3986
4014
|
# max_records: 1,
|
3987
4015
|
# marker: "String",
|
@@ -4086,8 +4114,9 @@ module Aws::ElastiCache
|
|
4086
4114
|
# secondary cluster accepts only reads. The primary cluster
|
4087
4115
|
# automatically replicates updates to the secondary cluster.
|
4088
4116
|
#
|
4089
|
-
# * The **
|
4090
|
-
# Datastore, which is what you use to associate a secondary
|
4117
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4118
|
+
# Global Datastore, which is what you use to associate a secondary
|
4119
|
+
# cluster.
|
4091
4120
|
#
|
4092
4121
|
# ^
|
4093
4122
|
# @return [Types::GlobalReplicationGroup]
|
@@ -4265,8 +4294,9 @@ module Aws::ElastiCache
|
|
4265
4294
|
# secondary cluster accepts only reads. The primary cluster
|
4266
4295
|
# automatically replicates updates to the secondary cluster.
|
4267
4296
|
#
|
4268
|
-
# * The **
|
4269
|
-
# Datastore, which is what you use to associate a secondary
|
4297
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4298
|
+
# Global Datastore, which is what you use to associate a secondary
|
4299
|
+
# cluster.
|
4270
4300
|
#
|
4271
4301
|
# ^
|
4272
4302
|
# @return [Types::GlobalReplicationGroup]
|
@@ -4302,8 +4332,9 @@ module Aws::ElastiCache
|
|
4302
4332
|
# secondary cluster accepts only reads. The primary cluster
|
4303
4333
|
# automatically replicates updates to the secondary cluster.
|
4304
4334
|
#
|
4305
|
-
# * The **
|
4306
|
-
# Datastore, which is what you use to associate a secondary
|
4335
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4336
|
+
# Global Datastore, which is what you use to associate a secondary
|
4337
|
+
# cluster.
|
4307
4338
|
#
|
4308
4339
|
# ^
|
4309
4340
|
#
|
@@ -4324,7 +4355,7 @@ module Aws::ElastiCache
|
|
4324
4355
|
# @return [String]
|
4325
4356
|
#
|
4326
4357
|
# @!attribute [rw] engine
|
4327
|
-
# The Elasticache engine. For
|
4358
|
+
# The Elasticache engine. For Redis only.
|
4328
4359
|
# @return [String]
|
4329
4360
|
#
|
4330
4361
|
# @!attribute [rw] engine_version
|
@@ -4373,6 +4404,10 @@ module Aws::ElastiCache
|
|
4373
4404
|
# Amazon VPC using redis version `3.2.6`, `4.x` or later.
|
4374
4405
|
# @return [Boolean]
|
4375
4406
|
#
|
4407
|
+
# @!attribute [rw] arn
|
4408
|
+
# The ARN (Amazon Resource Name) of the global replication group.
|
4409
|
+
# @return [String]
|
4410
|
+
#
|
4376
4411
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/GlobalReplicationGroup AWS API Documentation
|
4377
4412
|
#
|
4378
4413
|
class GlobalReplicationGroup < Struct.new(
|
@@ -4387,7 +4422,8 @@ module Aws::ElastiCache
|
|
4387
4422
|
:global_node_groups,
|
4388
4423
|
:auth_token_enabled,
|
4389
4424
|
:transit_encryption_enabled,
|
4390
|
-
:at_rest_encryption_enabled
|
4425
|
+
:at_rest_encryption_enabled,
|
4426
|
+
:arn)
|
4391
4427
|
include Aws::Structure
|
4392
4428
|
end
|
4393
4429
|
|
@@ -4514,8 +4550,9 @@ module Aws::ElastiCache
|
|
4514
4550
|
# secondary cluster accepts only reads. The primary cluster
|
4515
4551
|
# automatically replicates updates to the secondary cluster.
|
4516
4552
|
#
|
4517
|
-
# * The **
|
4518
|
-
# Datastore, which is what you use to associate a secondary
|
4553
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
4554
|
+
# Global Datastore, which is what you use to associate a secondary
|
4555
|
+
# cluster.
|
4519
4556
|
#
|
4520
4557
|
# ^
|
4521
4558
|
# @return [Types::GlobalReplicationGroup]
|
@@ -4628,7 +4665,7 @@ module Aws::ElastiCache
|
|
4628
4665
|
#
|
4629
4666
|
class InvalidCacheSecurityGroupStateFault < Aws::EmptyStructure; end
|
4630
4667
|
|
4631
|
-
# The Global Datastore is not available
|
4668
|
+
# The Global Datastore is not available or in primary-only state.
|
4632
4669
|
#
|
4633
4670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/InvalidGlobalReplicationGroupStateFault AWS API Documentation
|
4634
4671
|
#
|
@@ -5252,12 +5289,10 @@ module Aws::ElastiCache
|
|
5252
5289
|
# @return [String]
|
5253
5290
|
#
|
5254
5291
|
# @!attribute [rw] apply_immediately
|
5255
|
-
#
|
5256
|
-
#
|
5257
|
-
#
|
5258
|
-
#
|
5259
|
-
# replication group are applied on the next maintenance reboot, or the
|
5260
|
-
# next failure reboot, whichever occurs first.
|
5292
|
+
# This parameter causes the modifications in this request and any
|
5293
|
+
# pending modifications to be applied, asynchronously and as soon as
|
5294
|
+
# possible. Modifications to Global Replication Groups cannot be
|
5295
|
+
# requested to be applied in PreferredMaintenceWindow.
|
5261
5296
|
# @return [Boolean]
|
5262
5297
|
#
|
5263
5298
|
# @!attribute [rw] cache_node_type
|
@@ -5297,8 +5332,9 @@ module Aws::ElastiCache
|
|
5297
5332
|
# secondary cluster accepts only reads. The primary cluster
|
5298
5333
|
# automatically replicates updates to the secondary cluster.
|
5299
5334
|
#
|
5300
|
-
# * The **
|
5301
|
-
# Datastore, which is what you use to associate a secondary
|
5335
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
5336
|
+
# Global Datastore, which is what you use to associate a secondary
|
5337
|
+
# cluster.
|
5302
5338
|
#
|
5303
5339
|
# ^
|
5304
5340
|
# @return [Types::GlobalReplicationGroup]
|
@@ -5321,6 +5357,7 @@ module Aws::ElastiCache
|
|
5321
5357
|
# primary_cluster_id: "String",
|
5322
5358
|
# snapshotting_cluster_id: "String",
|
5323
5359
|
# automatic_failover_enabled: false,
|
5360
|
+
# multi_az_enabled: false,
|
5324
5361
|
# node_group_id: "String",
|
5325
5362
|
# cache_security_group_names: ["String"],
|
5326
5363
|
# security_group_ids: ["String"],
|
@@ -5376,6 +5413,9 @@ module Aws::ElastiCache
|
|
5376
5413
|
# * Redis (cluster mode enabled): T1 node types.
|
5377
5414
|
# @return [Boolean]
|
5378
5415
|
#
|
5416
|
+
# @!attribute [rw] multi_az_enabled
|
5417
|
+
# @return [Boolean]
|
5418
|
+
#
|
5379
5419
|
# @!attribute [rw] node_group_id
|
5380
5420
|
# Deprecated. This parameter is not used.
|
5381
5421
|
# @return [String]
|
@@ -5555,6 +5595,7 @@ module Aws::ElastiCache
|
|
5555
5595
|
:primary_cluster_id,
|
5556
5596
|
:snapshotting_cluster_id,
|
5557
5597
|
:automatic_failover_enabled,
|
5598
|
+
:multi_az_enabled,
|
5558
5599
|
:node_group_id,
|
5559
5600
|
:cache_security_group_names,
|
5560
5601
|
:security_group_ids,
|
@@ -6236,8 +6277,9 @@ module Aws::ElastiCache
|
|
6236
6277
|
# secondary cluster accepts only reads. The primary cluster
|
6237
6278
|
# automatically replicates updates to the secondary cluster.
|
6238
6279
|
#
|
6239
|
-
# * The **
|
6240
|
-
# Datastore, which is what you use to associate a secondary
|
6280
|
+
# * The **GlobalReplicationGroupIdSuffix** represents the name of the
|
6281
|
+
# Global Datastore, which is what you use to associate a secondary
|
6282
|
+
# cluster.
|
6241
6283
|
#
|
6242
6284
|
# ^
|
6243
6285
|
# @return [Types::GlobalReplicationGroup]
|
@@ -6440,6 +6482,9 @@ module Aws::ElastiCache
|
|
6440
6482
|
# * Redis (cluster mode enabled): T1 node types.
|
6441
6483
|
# @return [String]
|
6442
6484
|
#
|
6485
|
+
# @!attribute [rw] multi_az
|
6486
|
+
# @return [String]
|
6487
|
+
#
|
6443
6488
|
# @!attribute [rw] configuration_endpoint
|
6444
6489
|
# The configuration endpoint for this replication group. Use the
|
6445
6490
|
# configuration endpoint to connect to this replication group.
|
@@ -6525,6 +6570,10 @@ module Aws::ElastiCache
|
|
6525
6570
|
# The ID of the KMS key used to encrypt the disk in the cluster.
|
6526
6571
|
# @return [String]
|
6527
6572
|
#
|
6573
|
+
# @!attribute [rw] arn
|
6574
|
+
# The ARN (Amazon Resource Name) of the replication group.
|
6575
|
+
# @return [String]
|
6576
|
+
#
|
6528
6577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/ReplicationGroup AWS API Documentation
|
6529
6578
|
#
|
6530
6579
|
class ReplicationGroup < Struct.new(
|
@@ -6537,6 +6586,7 @@ module Aws::ElastiCache
|
|
6537
6586
|
:node_groups,
|
6538
6587
|
:snapshotting_cluster_id,
|
6539
6588
|
:automatic_failover,
|
6589
|
+
:multi_az,
|
6540
6590
|
:configuration_endpoint,
|
6541
6591
|
:snapshot_retention_limit,
|
6542
6592
|
:snapshot_window,
|
@@ -6546,7 +6596,8 @@ module Aws::ElastiCache
|
|
6546
6596
|
:auth_token_last_modified_date,
|
6547
6597
|
:transit_encryption_enabled,
|
6548
6598
|
:at_rest_encryption_enabled,
|
6549
|
-
:kms_key_id
|
6599
|
+
:kms_key_id,
|
6600
|
+
:arn)
|
6550
6601
|
include Aws::Structure
|
6551
6602
|
end
|
6552
6603
|
|
@@ -7479,6 +7530,10 @@ module Aws::ElastiCache
|
|
7479
7530
|
# The ID of the KMS key used to encrypt the snapshot.
|
7480
7531
|
# @return [String]
|
7481
7532
|
#
|
7533
|
+
# @!attribute [rw] arn
|
7534
|
+
# The ARN (Amazon Resource Name) of the snapshot.
|
7535
|
+
# @return [String]
|
7536
|
+
#
|
7482
7537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/Snapshot AWS API Documentation
|
7483
7538
|
#
|
7484
7539
|
class Snapshot < Struct.new(
|
@@ -7506,7 +7561,8 @@ module Aws::ElastiCache
|
|
7506
7561
|
:num_node_groups,
|
7507
7562
|
:automatic_failover,
|
7508
7563
|
:node_snapshots,
|
7509
|
-
:kms_key_id
|
7564
|
+
:kms_key_id,
|
7565
|
+
:arn)
|
7510
7566
|
include Aws::Structure
|
7511
7567
|
end
|
7512
7568
|
|