aws-sdk-rds 1.144.0 → 1.145.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +172 -2
- data/lib/aws-sdk-rds/client_api.rb +18 -0
- data/lib/aws-sdk-rds/db_instance.rb +106 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +20 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +22 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +21 -1
- data/lib/aws-sdk-rds/types.rb +214 -9
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2989,6 +2989,7 @@ module Aws::RDS
|
|
2989
2989
|
# enable_customer_owned_ip: false,
|
2990
2990
|
# custom_iam_instance_profile: "String",
|
2991
2991
|
# backup_target: "String",
|
2992
|
+
# network_type: "String",
|
2992
2993
|
# }
|
2993
2994
|
#
|
2994
2995
|
# @!attribute [rw] db_name
|
@@ -3599,7 +3600,7 @@ module Aws::RDS
|
|
3599
3600
|
#
|
3600
3601
|
#
|
3601
3602
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
|
3602
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html
|
3603
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html
|
3603
3604
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3604
3605
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3605
3606
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
@@ -4070,6 +4071,27 @@ module Aws::RDS
|
|
4070
4071
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4071
4072
|
# @return [String]
|
4072
4073
|
#
|
4074
|
+
# @!attribute [rw] network_type
|
4075
|
+
# The network type of the DB instance.
|
4076
|
+
#
|
4077
|
+
# Valid values:
|
4078
|
+
#
|
4079
|
+
# * `IPV4`
|
4080
|
+
#
|
4081
|
+
# * `DUAL`
|
4082
|
+
#
|
4083
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4084
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
4085
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
4086
|
+
#
|
4087
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4088
|
+
# in the *Amazon RDS User Guide.*
|
4089
|
+
#
|
4090
|
+
#
|
4091
|
+
#
|
4092
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4093
|
+
# @return [String]
|
4094
|
+
#
|
4073
4095
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4074
4096
|
#
|
4075
4097
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4122,7 +4144,8 @@ module Aws::RDS
|
|
4122
4144
|
:max_allocated_storage,
|
4123
4145
|
:enable_customer_owned_ip,
|
4124
4146
|
:custom_iam_instance_profile,
|
4125
|
-
:backup_target
|
4147
|
+
:backup_target,
|
4148
|
+
:network_type)
|
4126
4149
|
SENSITIVE = []
|
4127
4150
|
include Aws::Structure
|
4128
4151
|
end
|
@@ -4174,6 +4197,7 @@ module Aws::RDS
|
|
4174
4197
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4175
4198
|
# max_allocated_storage: 1,
|
4176
4199
|
# custom_iam_instance_profile: "String",
|
4200
|
+
# network_type: "String",
|
4177
4201
|
# source_region: "String",
|
4178
4202
|
# }
|
4179
4203
|
#
|
@@ -4706,6 +4730,27 @@ module Aws::RDS
|
|
4706
4730
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
4707
4731
|
# @return [String]
|
4708
4732
|
#
|
4733
|
+
# @!attribute [rw] network_type
|
4734
|
+
# The network type of the DB instance.
|
4735
|
+
#
|
4736
|
+
# Valid values:
|
4737
|
+
#
|
4738
|
+
# * `IPV4`
|
4739
|
+
#
|
4740
|
+
# * `DUAL`
|
4741
|
+
#
|
4742
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4743
|
+
# read replica. A `DBSubnetGroup` can support only the IPv4 protocol
|
4744
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
4745
|
+
#
|
4746
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4747
|
+
# in the *Amazon RDS User Guide.*
|
4748
|
+
#
|
4749
|
+
#
|
4750
|
+
#
|
4751
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4752
|
+
# @return [String]
|
4753
|
+
#
|
4709
4754
|
# @!attribute [rw] source_region
|
4710
4755
|
# The source region of the snapshot. This is only needed when the
|
4711
4756
|
# shapshot is encrypted and in a different region.
|
@@ -4747,6 +4792,7 @@ module Aws::RDS
|
|
4747
4792
|
:replica_mode,
|
4748
4793
|
:max_allocated_storage,
|
4749
4794
|
:custom_iam_instance_profile,
|
4795
|
+
:network_type,
|
4750
4796
|
:source_region)
|
4751
4797
|
SENSITIVE = []
|
4752
4798
|
include Aws::Structure
|
@@ -7664,6 +7710,29 @@ module Aws::RDS
|
|
7664
7710
|
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
7665
7711
|
# @return [String]
|
7666
7712
|
#
|
7713
|
+
# @!attribute [rw] network_type
|
7714
|
+
# The network type of the DB instance.
|
7715
|
+
#
|
7716
|
+
# Valid values:
|
7717
|
+
#
|
7718
|
+
# * `IPV4`
|
7719
|
+
#
|
7720
|
+
# * `DUAL`
|
7721
|
+
#
|
7722
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
7723
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
7724
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
7725
|
+
#
|
7726
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
7727
|
+
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
7728
|
+
# VPC][2] in the *Amazon Aurora User Guide.*
|
7729
|
+
#
|
7730
|
+
#
|
7731
|
+
#
|
7732
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7733
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7734
|
+
# @return [String]
|
7735
|
+
#
|
7667
7736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
7668
7737
|
#
|
7669
7738
|
class DBInstance < Struct.new(
|
@@ -7740,7 +7809,8 @@ module Aws::RDS
|
|
7740
7809
|
:automation_mode,
|
7741
7810
|
:resume_full_automation_mode_time,
|
7742
7811
|
:custom_iam_instance_profile,
|
7743
|
-
:backup_target
|
7812
|
+
:backup_target,
|
7813
|
+
:network_type)
|
7744
7814
|
SENSITIVE = []
|
7745
7815
|
include Aws::Structure
|
7746
7816
|
end
|
@@ -9082,6 +9152,26 @@ module Aws::RDS
|
|
9082
9152
|
# The Amazon Resource Name (ARN) for the DB subnet group.
|
9083
9153
|
# @return [String]
|
9084
9154
|
#
|
9155
|
+
# @!attribute [rw] supported_network_types
|
9156
|
+
# The network type of the DB subnet group.
|
9157
|
+
#
|
9158
|
+
# Valid values:
|
9159
|
+
#
|
9160
|
+
# * `IPV4`
|
9161
|
+
#
|
9162
|
+
# * `DUAL`
|
9163
|
+
#
|
9164
|
+
# A `DBSubnetGroup` can support only the IPv4 protocol or the IPv4 and
|
9165
|
+
# the IPv6 protocols (`DUAL`).
|
9166
|
+
#
|
9167
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
9168
|
+
# in the *Amazon RDS User Guide.*
|
9169
|
+
#
|
9170
|
+
#
|
9171
|
+
#
|
9172
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9173
|
+
# @return [Array<String>]
|
9174
|
+
#
|
9085
9175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSubnetGroup AWS API Documentation
|
9086
9176
|
#
|
9087
9177
|
class DBSubnetGroup < Struct.new(
|
@@ -9090,7 +9180,8 @@ module Aws::RDS
|
|
9090
9180
|
:vpc_id,
|
9091
9181
|
:subnet_group_status,
|
9092
9182
|
:subnets,
|
9093
|
-
:db_subnet_group_arn
|
9183
|
+
:db_subnet_group_arn,
|
9184
|
+
:supported_network_types)
|
9094
9185
|
SENSITIVE = []
|
9095
9186
|
include Aws::Structure
|
9096
9187
|
end
|
@@ -15291,6 +15382,7 @@ module Aws::RDS
|
|
15291
15382
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
15292
15383
|
# automation_mode: "full", # accepts full, all-paused
|
15293
15384
|
# resume_full_automation_mode_minutes: 1,
|
15385
|
+
# network_type: "String",
|
15294
15386
|
# }
|
15295
15387
|
#
|
15296
15388
|
# @!attribute [rw] db_instance_identifier
|
@@ -16131,6 +16223,27 @@ module Aws::RDS
|
|
16131
16223
|
# (default). The maximum value is `1,440`.
|
16132
16224
|
# @return [Integer]
|
16133
16225
|
#
|
16226
|
+
# @!attribute [rw] network_type
|
16227
|
+
# The network type of the DB instance.
|
16228
|
+
#
|
16229
|
+
# Valid values:
|
16230
|
+
#
|
16231
|
+
# * `IPV4`
|
16232
|
+
#
|
16233
|
+
# * `DUAL`
|
16234
|
+
#
|
16235
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
16236
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
16237
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
16238
|
+
#
|
16239
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
16240
|
+
# in the *Amazon RDS User Guide.*
|
16241
|
+
#
|
16242
|
+
#
|
16243
|
+
#
|
16244
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
16245
|
+
# @return [String]
|
16246
|
+
#
|
16134
16247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
16135
16248
|
#
|
16136
16249
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -16180,7 +16293,8 @@ module Aws::RDS
|
|
16180
16293
|
:enable_customer_owned_ip,
|
16181
16294
|
:aws_backup_recovery_point_arn,
|
16182
16295
|
:automation_mode,
|
16183
|
-
:resume_full_automation_mode_minutes
|
16296
|
+
:resume_full_automation_mode_minutes,
|
16297
|
+
:network_type)
|
16184
16298
|
SENSITIVE = []
|
16185
16299
|
include Aws::Structure
|
16186
16300
|
end
|
@@ -16959,6 +17073,13 @@ module Aws::RDS
|
|
16959
17073
|
include Aws::Structure
|
16960
17074
|
end
|
16961
17075
|
|
17076
|
+
# The network type is invalid for the DB instance. Valid nework type
|
17077
|
+
# values are `IPV4` and `DUAL`.
|
17078
|
+
#
|
17079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/NetworkTypeNotSupported AWS API Documentation
|
17080
|
+
#
|
17081
|
+
class NetworkTypeNotSupported < Aws::EmptyStructure; end
|
17082
|
+
|
16962
17083
|
# Option details.
|
16963
17084
|
#
|
16964
17085
|
# @!attribute [rw] option_name
|
@@ -17614,6 +17735,20 @@ module Aws::RDS
|
|
17614
17735
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
17615
17736
|
# @return [Boolean]
|
17616
17737
|
#
|
17738
|
+
# @!attribute [rw] supported_network_types
|
17739
|
+
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
17740
|
+
#
|
17741
|
+
# A DB instance can support only the IPv4 protocol or the IPv4 and the
|
17742
|
+
# IPv6 protocols (`DUAL`).
|
17743
|
+
#
|
17744
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
17745
|
+
# in the *Amazon RDS User Guide.*
|
17746
|
+
#
|
17747
|
+
#
|
17748
|
+
#
|
17749
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
17750
|
+
# @return [Array<String>]
|
17751
|
+
#
|
17617
17752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
17618
17753
|
#
|
17619
17754
|
class OrderableDBInstanceOption < Struct.new(
|
@@ -17645,7 +17780,8 @@ module Aws::RDS
|
|
17645
17780
|
:outpost_capable,
|
17646
17781
|
:supported_activity_stream_modes,
|
17647
17782
|
:supports_global_databases,
|
17648
|
-
:supports_clusters
|
17783
|
+
:supports_clusters,
|
17784
|
+
:supported_network_types)
|
17649
17785
|
SENSITIVE = []
|
17650
17786
|
include Aws::Structure
|
17651
17787
|
end
|
@@ -20686,6 +20822,7 @@ module Aws::RDS
|
|
20686
20822
|
# enable_customer_owned_ip: false,
|
20687
20823
|
# custom_iam_instance_profile: "String",
|
20688
20824
|
# backup_target: "String",
|
20825
|
+
# network_type: "String",
|
20689
20826
|
# }
|
20690
20827
|
#
|
20691
20828
|
# @!attribute [rw] db_instance_identifier
|
@@ -21099,6 +21236,27 @@ module Aws::RDS
|
|
21099
21236
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
21100
21237
|
# @return [String]
|
21101
21238
|
#
|
21239
|
+
# @!attribute [rw] network_type
|
21240
|
+
# The network type of the DB instance.
|
21241
|
+
#
|
21242
|
+
# Valid values:
|
21243
|
+
#
|
21244
|
+
# * `IPV4`
|
21245
|
+
#
|
21246
|
+
# * `DUAL`
|
21247
|
+
#
|
21248
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
21249
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
21250
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
21251
|
+
#
|
21252
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
21253
|
+
# in the *Amazon RDS User Guide.*
|
21254
|
+
#
|
21255
|
+
#
|
21256
|
+
#
|
21257
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
21258
|
+
# @return [String]
|
21259
|
+
#
|
21102
21260
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
21103
21261
|
#
|
21104
21262
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -21132,7 +21290,8 @@ module Aws::RDS
|
|
21132
21290
|
:deletion_protection,
|
21133
21291
|
:enable_customer_owned_ip,
|
21134
21292
|
:custom_iam_instance_profile,
|
21135
|
-
:backup_target
|
21293
|
+
:backup_target,
|
21294
|
+
:network_type)
|
21136
21295
|
SENSITIVE = []
|
21137
21296
|
include Aws::Structure
|
21138
21297
|
end
|
@@ -21215,6 +21374,7 @@ module Aws::RDS
|
|
21215
21374
|
# use_default_processor_features: false,
|
21216
21375
|
# deletion_protection: false,
|
21217
21376
|
# max_allocated_storage: 1,
|
21377
|
+
# network_type: "String",
|
21218
21378
|
# }
|
21219
21379
|
#
|
21220
21380
|
# @!attribute [rw] db_name
|
@@ -21647,6 +21807,27 @@ module Aws::RDS
|
|
21647
21807
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
21648
21808
|
# @return [Integer]
|
21649
21809
|
#
|
21810
|
+
# @!attribute [rw] network_type
|
21811
|
+
# The network type of the DB instance.
|
21812
|
+
#
|
21813
|
+
# Valid values:
|
21814
|
+
#
|
21815
|
+
# * `IPV4`
|
21816
|
+
#
|
21817
|
+
# * `DUAL`
|
21818
|
+
#
|
21819
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
21820
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
21821
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
21822
|
+
#
|
21823
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
21824
|
+
# in the *Amazon RDS User Guide.*
|
21825
|
+
#
|
21826
|
+
#
|
21827
|
+
#
|
21828
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
21829
|
+
# @return [String]
|
21830
|
+
#
|
21650
21831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
21651
21832
|
#
|
21652
21833
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -21693,7 +21874,8 @@ module Aws::RDS
|
|
21693
21874
|
:processor_features,
|
21694
21875
|
:use_default_processor_features,
|
21695
21876
|
:deletion_protection,
|
21696
|
-
:max_allocated_storage
|
21877
|
+
:max_allocated_storage,
|
21878
|
+
:network_type)
|
21697
21879
|
SENSITIVE = []
|
21698
21880
|
include Aws::Structure
|
21699
21881
|
end
|
@@ -21768,6 +21950,7 @@ module Aws::RDS
|
|
21768
21950
|
# enable_customer_owned_ip: false,
|
21769
21951
|
# custom_iam_instance_profile: "String",
|
21770
21952
|
# backup_target: "String",
|
21953
|
+
# network_type: "String",
|
21771
21954
|
# }
|
21772
21955
|
#
|
21773
21956
|
# @!attribute [rw] source_db_instance_identifier
|
@@ -22207,6 +22390,27 @@ module Aws::RDS
|
|
22207
22390
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
22208
22391
|
# @return [String]
|
22209
22392
|
#
|
22393
|
+
# @!attribute [rw] network_type
|
22394
|
+
# The network type of the DB instance.
|
22395
|
+
#
|
22396
|
+
# Valid values:
|
22397
|
+
#
|
22398
|
+
# * `IPV4`
|
22399
|
+
#
|
22400
|
+
# * `DUAL`
|
22401
|
+
#
|
22402
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
22403
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
22404
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
22405
|
+
#
|
22406
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
22407
|
+
# in the *Amazon RDS User Guide.*
|
22408
|
+
#
|
22409
|
+
#
|
22410
|
+
#
|
22411
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
22412
|
+
# @return [String]
|
22413
|
+
#
|
22210
22414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
22211
22415
|
#
|
22212
22416
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -22245,7 +22449,8 @@ module Aws::RDS
|
|
22245
22449
|
:source_db_instance_automated_backups_arn,
|
22246
22450
|
:enable_customer_owned_ip,
|
22247
22451
|
:custom_iam_instance_profile,
|
22248
|
-
:backup_target
|
22452
|
+
:backup_target,
|
22453
|
+
:network_type)
|
22249
22454
|
SENSITIVE = []
|
22250
22455
|
include Aws::Structure
|
22251
22456
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.145.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: 2022-04-
|
11
|
+
date: 2022-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|