aws-sdk-redshift 1.99.0 → 1.101.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +212 -1
- data/lib/aws-sdk-redshift/client_api.rb +130 -0
- data/lib/aws-sdk-redshift/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-redshift/endpoints.rb +56 -0
- data/lib/aws-sdk-redshift/errors.rb +44 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-redshift/types.rb +279 -6
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
@@ -898,6 +898,11 @@ module Aws::Redshift
|
|
898
898
|
# store the cluster's admin credentials secret.
|
899
899
|
# @return [String]
|
900
900
|
#
|
901
|
+
# @!attribute [rw] ip_address_type
|
902
|
+
# The IP address type for the cluster. Possible values are `ipv4` and
|
903
|
+
# `dualstack`.
|
904
|
+
# @return [String]
|
905
|
+
#
|
901
906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
902
907
|
#
|
903
908
|
class Cluster < Struct.new(
|
@@ -957,7 +962,8 @@ module Aws::Redshift
|
|
957
962
|
:custom_domain_certificate_arn,
|
958
963
|
:custom_domain_certificate_expiry_date,
|
959
964
|
:master_password_secret_arn,
|
960
|
-
:master_password_secret_kms_key_id
|
965
|
+
:master_password_secret_kms_key_id,
|
966
|
+
:ip_address_type)
|
961
967
|
SENSITIVE = []
|
962
968
|
include Aws::Structure
|
963
969
|
end
|
@@ -1573,6 +1579,11 @@ module Aws::Redshift
|
|
1573
1579
|
# The list of tags for the cluster subnet group.
|
1574
1580
|
# @return [Array<Types::Tag>]
|
1575
1581
|
#
|
1582
|
+
# @!attribute [rw] supported_cluster_ip_address_types
|
1583
|
+
# The IP address types supported by this cluster subnet group.
|
1584
|
+
# Possible values are `ipv4` and `dualstack`.
|
1585
|
+
# @return [Array<String>]
|
1586
|
+
#
|
1576
1587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ClusterSubnetGroup AWS API Documentation
|
1577
1588
|
#
|
1578
1589
|
class ClusterSubnetGroup < Struct.new(
|
@@ -1581,7 +1592,8 @@ module Aws::Redshift
|
|
1581
1592
|
:vpc_id,
|
1582
1593
|
:subnet_group_status,
|
1583
1594
|
:subnets,
|
1584
|
-
:tags
|
1595
|
+
:tags,
|
1596
|
+
:supported_cluster_ip_address_types)
|
1585
1597
|
SENSITIVE = []
|
1586
1598
|
include Aws::Structure
|
1587
1599
|
end
|
@@ -1724,6 +1736,12 @@ module Aws::Redshift
|
|
1724
1736
|
include Aws::Structure
|
1725
1737
|
end
|
1726
1738
|
|
1739
|
+
# There is a conflict while updating the resource policy.
|
1740
|
+
#
|
1741
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ConflictPolicyUpdateFault AWS API Documentation
|
1742
|
+
#
|
1743
|
+
class ConflictPolicyUpdateFault < Aws::EmptyStructure; end
|
1744
|
+
|
1727
1745
|
# @!attribute [rw] source_snapshot_identifier
|
1728
1746
|
# The identifier for the source snapshot.
|
1729
1747
|
#
|
@@ -2245,6 +2263,11 @@ module Aws::Redshift
|
|
2245
2263
|
# parameter if `ManageMasterPassword` is true.
|
2246
2264
|
# @return [String]
|
2247
2265
|
#
|
2266
|
+
# @!attribute [rw] ip_address_type
|
2267
|
+
# The IP address types that the cluster supports. Possible values are
|
2268
|
+
# `ipv4` and `dualstack`.
|
2269
|
+
# @return [String]
|
2270
|
+
#
|
2248
2271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2249
2272
|
#
|
2250
2273
|
class CreateClusterMessage < Struct.new(
|
@@ -2283,7 +2306,8 @@ module Aws::Redshift
|
|
2283
2306
|
:default_iam_role_arn,
|
2284
2307
|
:load_sample_data,
|
2285
2308
|
:manage_master_password,
|
2286
|
-
:master_password_secret_kms_key_id
|
2309
|
+
:master_password_secret_kms_key_id,
|
2310
|
+
:ip_address_type)
|
2287
2311
|
SENSITIVE = [:master_user_password]
|
2288
2312
|
include Aws::Structure
|
2289
2313
|
end
|
@@ -3521,6 +3545,19 @@ module Aws::Redshift
|
|
3521
3545
|
include Aws::Structure
|
3522
3546
|
end
|
3523
3547
|
|
3548
|
+
# @!attribute [rw] resource_arn
|
3549
|
+
# The Amazon Resource Name (ARN) of the resource of which its resource
|
3550
|
+
# policy is deleted.
|
3551
|
+
# @return [String]
|
3552
|
+
#
|
3553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteResourcePolicyMessage AWS API Documentation
|
3554
|
+
#
|
3555
|
+
class DeleteResourcePolicyMessage < Struct.new(
|
3556
|
+
:resource_arn)
|
3557
|
+
SENSITIVE = []
|
3558
|
+
include Aws::Structure
|
3559
|
+
end
|
3560
|
+
|
3524
3561
|
# @!attribute [rw] scheduled_action_name
|
3525
3562
|
# The name of the scheduled action to delete.
|
3526
3563
|
# @return [String]
|
@@ -4859,6 +4896,48 @@ module Aws::Redshift
|
|
4859
4896
|
include Aws::Structure
|
4860
4897
|
end
|
4861
4898
|
|
4899
|
+
# @!attribute [rw] integration_arn
|
4900
|
+
# The Amazon Resource Name (ARN) of the inbound integration.
|
4901
|
+
# @return [String]
|
4902
|
+
#
|
4903
|
+
# @!attribute [rw] target_arn
|
4904
|
+
# The Amazon Resource Name (ARN) of the target of an inbound
|
4905
|
+
# integration.
|
4906
|
+
# @return [String]
|
4907
|
+
#
|
4908
|
+
# @!attribute [rw] max_records
|
4909
|
+
# The maximum number of response records to return in each call. If
|
4910
|
+
# the number of remaining response records exceeds the specified
|
4911
|
+
# `MaxRecords` value, a value is returned in a `marker` field of the
|
4912
|
+
# response. You can retrieve the next set of records by retrying the
|
4913
|
+
# command with the returned marker value.
|
4914
|
+
#
|
4915
|
+
# Default: `100`
|
4916
|
+
#
|
4917
|
+
# Constraints: minimum 20, maximum 100.
|
4918
|
+
# @return [Integer]
|
4919
|
+
#
|
4920
|
+
# @!attribute [rw] marker
|
4921
|
+
# An optional parameter that specifies the starting point to return a
|
4922
|
+
# set of response records. When the results of a
|
4923
|
+
# DescribeInboundIntegrations request exceed the value specified in
|
4924
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4925
|
+
# field of the response. You can retrieve the next set of response
|
4926
|
+
# records by providing the returned marker value in the `Marker`
|
4927
|
+
# parameter and retrying the request.
|
4928
|
+
# @return [String]
|
4929
|
+
#
|
4930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeInboundIntegrationsMessage AWS API Documentation
|
4931
|
+
#
|
4932
|
+
class DescribeInboundIntegrationsMessage < Struct.new(
|
4933
|
+
:integration_arn,
|
4934
|
+
:target_arn,
|
4935
|
+
:max_records,
|
4936
|
+
:marker)
|
4937
|
+
SENSITIVE = []
|
4938
|
+
include Aws::Structure
|
4939
|
+
end
|
4940
|
+
|
4862
4941
|
# @!attribute [rw] cluster_identifier
|
4863
4942
|
# The identifier of the cluster from which to get the logging status.
|
4864
4943
|
#
|
@@ -6579,6 +6658,31 @@ module Aws::Redshift
|
|
6579
6658
|
include Aws::Structure
|
6580
6659
|
end
|
6581
6660
|
|
6661
|
+
# @!attribute [rw] resource_arn
|
6662
|
+
# The Amazon Resource Name (ARN) of the resource of which its resource
|
6663
|
+
# policy is fetched.
|
6664
|
+
# @return [String]
|
6665
|
+
#
|
6666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetResourcePolicyMessage AWS API Documentation
|
6667
|
+
#
|
6668
|
+
class GetResourcePolicyMessage < Struct.new(
|
6669
|
+
:resource_arn)
|
6670
|
+
SENSITIVE = []
|
6671
|
+
include Aws::Structure
|
6672
|
+
end
|
6673
|
+
|
6674
|
+
# @!attribute [rw] resource_policy
|
6675
|
+
# The content of the resource policy.
|
6676
|
+
# @return [Types::ResourcePolicy]
|
6677
|
+
#
|
6678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetResourcePolicyResult AWS API Documentation
|
6679
|
+
#
|
6680
|
+
class GetResourcePolicyResult < Struct.new(
|
6681
|
+
:resource_policy)
|
6682
|
+
SENSITIVE = []
|
6683
|
+
include Aws::Structure
|
6684
|
+
end
|
6685
|
+
|
6582
6686
|
# Returns information about an HSM client certificate. The certificate
|
6583
6687
|
# is stored in a secure Hardware Storage Module (HSM), and used by the
|
6584
6688
|
# Amazon Redshift cluster to encrypt data files.
|
@@ -6805,6 +6909,70 @@ module Aws::Redshift
|
|
6805
6909
|
#
|
6806
6910
|
class InProgressTableRestoreQuotaExceededFault < Aws::EmptyStructure; end
|
6807
6911
|
|
6912
|
+
# The content of an inbound integration.
|
6913
|
+
#
|
6914
|
+
# @!attribute [rw] integration_arn
|
6915
|
+
# The Amazon Resource Name (ARN) of an inbound integration.
|
6916
|
+
# @return [String]
|
6917
|
+
#
|
6918
|
+
# @!attribute [rw] source_arn
|
6919
|
+
# The Amazon Resource Name (ARN) of the source of an inbound
|
6920
|
+
# integration.
|
6921
|
+
# @return [String]
|
6922
|
+
#
|
6923
|
+
# @!attribute [rw] target_arn
|
6924
|
+
# The Amazon Resource Name (ARN) of the target of an inbound
|
6925
|
+
# integration.
|
6926
|
+
# @return [String]
|
6927
|
+
#
|
6928
|
+
# @!attribute [rw] status
|
6929
|
+
# The status of an inbound integration.
|
6930
|
+
# @return [String]
|
6931
|
+
#
|
6932
|
+
# @!attribute [rw] errors
|
6933
|
+
# The outstanding errors of an inbound integration. Each item is an
|
6934
|
+
# "IntegrationError". This is null if there is no error.
|
6935
|
+
# @return [Array<Types::IntegrationError>]
|
6936
|
+
#
|
6937
|
+
# @!attribute [rw] create_time
|
6938
|
+
# The creation time of an inbound integration.
|
6939
|
+
# @return [Time]
|
6940
|
+
#
|
6941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InboundIntegration AWS API Documentation
|
6942
|
+
#
|
6943
|
+
class InboundIntegration < Struct.new(
|
6944
|
+
:integration_arn,
|
6945
|
+
:source_arn,
|
6946
|
+
:target_arn,
|
6947
|
+
:status,
|
6948
|
+
:errors,
|
6949
|
+
:create_time)
|
6950
|
+
SENSITIVE = []
|
6951
|
+
include Aws::Structure
|
6952
|
+
end
|
6953
|
+
|
6954
|
+
# @!attribute [rw] marker
|
6955
|
+
# A value that indicates the starting point for the next set of
|
6956
|
+
# response records in a subsequent request. If a value is returned in
|
6957
|
+
# a response, you can retrieve the next set of records by providing
|
6958
|
+
# this returned marker value in the `Marker` parameter and retrying
|
6959
|
+
# the command. If the `Marker` field is empty, all response records
|
6960
|
+
# have been retrieved for the request.
|
6961
|
+
# @return [String]
|
6962
|
+
#
|
6963
|
+
# @!attribute [rw] inbound_integrations
|
6964
|
+
# A list of InboundIntegration instances.
|
6965
|
+
# @return [Array<Types::InboundIntegration>]
|
6966
|
+
#
|
6967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InboundIntegrationsMessage AWS API Documentation
|
6968
|
+
#
|
6969
|
+
class InboundIntegrationsMessage < Struct.new(
|
6970
|
+
:marker,
|
6971
|
+
:inbound_integrations)
|
6972
|
+
SENSITIVE = []
|
6973
|
+
include Aws::Structure
|
6974
|
+
end
|
6975
|
+
|
6808
6976
|
# The specified options are incompatible.
|
6809
6977
|
#
|
6810
6978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IncompatibleOrderableOptions AWS API Documentation
|
@@ -6825,6 +6993,31 @@ module Aws::Redshift
|
|
6825
6993
|
#
|
6826
6994
|
class InsufficientS3BucketPolicyFault < Aws::EmptyStructure; end
|
6827
6995
|
|
6996
|
+
# The error of an inbound integration.
|
6997
|
+
#
|
6998
|
+
# @!attribute [rw] error_code
|
6999
|
+
# The error code of an inbound integration error.
|
7000
|
+
# @return [String]
|
7001
|
+
#
|
7002
|
+
# @!attribute [rw] error_message
|
7003
|
+
# The error message of an inbound integration error.
|
7004
|
+
# @return [String]
|
7005
|
+
#
|
7006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationError AWS API Documentation
|
7007
|
+
#
|
7008
|
+
class IntegrationError < Struct.new(
|
7009
|
+
:error_code,
|
7010
|
+
:error_message)
|
7011
|
+
SENSITIVE = []
|
7012
|
+
include Aws::Structure
|
7013
|
+
end
|
7014
|
+
|
7015
|
+
# The integration can't be found.
|
7016
|
+
#
|
7017
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationNotFoundFault AWS API Documentation
|
7018
|
+
#
|
7019
|
+
class IntegrationNotFoundFault < Aws::EmptyStructure; end
|
7020
|
+
|
6828
7021
|
# The authentication profile request is not valid. The profile name
|
6829
7022
|
# can't be null or empty. The authentication profile API operation must
|
6830
7023
|
# be available in the Amazon Web Services Region.
|
@@ -6929,6 +7122,12 @@ module Aws::Redshift
|
|
6929
7122
|
#
|
6930
7123
|
class InvalidNamespaceFault < Aws::EmptyStructure; end
|
6931
7124
|
|
7125
|
+
# The resource policy isn't valid.
|
7126
|
+
#
|
7127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidPolicyFault AWS API Documentation
|
7128
|
+
#
|
7129
|
+
class InvalidPolicyFault < Aws::EmptyStructure; end
|
7130
|
+
|
6932
7131
|
# Indicates that the Reserved Node being exchanged is not in an active
|
6933
7132
|
# state.
|
6934
7133
|
#
|
@@ -7029,6 +7228,14 @@ module Aws::Redshift
|
|
7029
7228
|
#
|
7030
7229
|
class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
|
7031
7230
|
|
7231
|
+
# There are no subnets in your VPC with associated IPv6 CIDR blocks. To
|
7232
|
+
# use dual-stack mode, associate an IPv6 CIDR block with each subnet in
|
7233
|
+
# your VPC.
|
7234
|
+
#
|
7235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Ipv6CidrBlockNotFoundFault AWS API Documentation
|
7236
|
+
#
|
7237
|
+
class Ipv6CidrBlockNotFoundFault < Aws::EmptyStructure; end
|
7238
|
+
|
7032
7239
|
# The encryption key has exceeded its grant limit in Amazon Web Services
|
7033
7240
|
# KMS.
|
7034
7241
|
#
|
@@ -7623,6 +7830,11 @@ module Aws::Redshift
|
|
7623
7830
|
# parameter if `ManageMasterPassword` is true.
|
7624
7831
|
# @return [String]
|
7625
7832
|
#
|
7833
|
+
# @!attribute [rw] ip_address_type
|
7834
|
+
# The IP address types that the cluster supports. Possible values are
|
7835
|
+
# `ipv4` and `dualstack`.
|
7836
|
+
# @return [String]
|
7837
|
+
#
|
7626
7838
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMessage AWS API Documentation
|
7627
7839
|
#
|
7628
7840
|
class ModifyClusterMessage < Struct.new(
|
@@ -7652,7 +7864,8 @@ module Aws::Redshift
|
|
7652
7864
|
:availability_zone,
|
7653
7865
|
:port,
|
7654
7866
|
:manage_master_password,
|
7655
|
-
:master_password_secret_kms_key_id
|
7867
|
+
:master_password_secret_kms_key_id,
|
7868
|
+
:ip_address_type)
|
7656
7869
|
SENSITIVE = [:master_user_password]
|
7657
7870
|
include Aws::Structure
|
7658
7871
|
end
|
@@ -8128,13 +8341,18 @@ module Aws::Redshift
|
|
8128
8341
|
# The Availability Zone.
|
8129
8342
|
# @return [String]
|
8130
8343
|
#
|
8344
|
+
# @!attribute [rw] ipv_6_address
|
8345
|
+
# The IPv6 address of the network interface within the subnet.
|
8346
|
+
# @return [String]
|
8347
|
+
#
|
8131
8348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/NetworkInterface AWS API Documentation
|
8132
8349
|
#
|
8133
8350
|
class NetworkInterface < Struct.new(
|
8134
8351
|
:network_interface_id,
|
8135
8352
|
:subnet_id,
|
8136
8353
|
:private_ip_address,
|
8137
|
-
:availability_zone
|
8354
|
+
:availability_zone,
|
8355
|
+
:ipv_6_address)
|
8138
8356
|
SENSITIVE = []
|
8139
8357
|
include Aws::Structure
|
8140
8358
|
end
|
@@ -8598,6 +8816,36 @@ module Aws::Redshift
|
|
8598
8816
|
include Aws::Structure
|
8599
8817
|
end
|
8600
8818
|
|
8819
|
+
# @!attribute [rw] resource_arn
|
8820
|
+
# The Amazon Resource Name (ARN) of the resource of which its resource
|
8821
|
+
# policy is updated.
|
8822
|
+
# @return [String]
|
8823
|
+
#
|
8824
|
+
# @!attribute [rw] policy
|
8825
|
+
# The content of the resource policy being updated.
|
8826
|
+
# @return [String]
|
8827
|
+
#
|
8828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PutResourcePolicyMessage AWS API Documentation
|
8829
|
+
#
|
8830
|
+
class PutResourcePolicyMessage < Struct.new(
|
8831
|
+
:resource_arn,
|
8832
|
+
:policy)
|
8833
|
+
SENSITIVE = []
|
8834
|
+
include Aws::Structure
|
8835
|
+
end
|
8836
|
+
|
8837
|
+
# @!attribute [rw] resource_policy
|
8838
|
+
# The content of the updated resource policy.
|
8839
|
+
# @return [Types::ResourcePolicy]
|
8840
|
+
#
|
8841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PutResourcePolicyResult AWS API Documentation
|
8842
|
+
#
|
8843
|
+
class PutResourcePolicyResult < Struct.new(
|
8844
|
+
:resource_policy)
|
8845
|
+
SENSITIVE = []
|
8846
|
+
include Aws::Structure
|
8847
|
+
end
|
8848
|
+
|
8601
8849
|
# @!attribute [rw] cluster_identifier
|
8602
8850
|
# The cluster identifier.
|
8603
8851
|
# @return [String]
|
@@ -9221,6 +9469,25 @@ module Aws::Redshift
|
|
9221
9469
|
#
|
9222
9470
|
class ResourceNotFoundFault < Aws::EmptyStructure; end
|
9223
9471
|
|
9472
|
+
# The policy that is attached to a resource.
|
9473
|
+
#
|
9474
|
+
# @!attribute [rw] resource_arn
|
9475
|
+
# The resources that a policy is attached to.
|
9476
|
+
# @return [String]
|
9477
|
+
#
|
9478
|
+
# @!attribute [rw] policy
|
9479
|
+
# The content of a resource policy.
|
9480
|
+
# @return [String]
|
9481
|
+
#
|
9482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResourcePolicy AWS API Documentation
|
9483
|
+
#
|
9484
|
+
class ResourcePolicy < Struct.new(
|
9485
|
+
:resource_arn,
|
9486
|
+
:policy)
|
9487
|
+
SENSITIVE = []
|
9488
|
+
include Aws::Structure
|
9489
|
+
end
|
9490
|
+
|
9224
9491
|
# @!attribute [rw] cluster_identifier
|
9225
9492
|
# The identifier of the cluster that will be created from restoring
|
9226
9493
|
# the snapshot.
|
@@ -9530,6 +9797,11 @@ module Aws::Redshift
|
|
9530
9797
|
# parameter if `ManageMasterPassword` is true.
|
9531
9798
|
# @return [String]
|
9532
9799
|
#
|
9800
|
+
# @!attribute [rw] ip_address_type
|
9801
|
+
# The IP address type for the cluster. Possible values are `ipv4` and
|
9802
|
+
# `dualstack`.
|
9803
|
+
# @return [String]
|
9804
|
+
#
|
9533
9805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
9534
9806
|
#
|
9535
9807
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -9567,7 +9839,8 @@ module Aws::Redshift
|
|
9567
9839
|
:target_reserved_node_offering_id,
|
9568
9840
|
:encrypted,
|
9569
9841
|
:manage_master_password,
|
9570
|
-
:master_password_secret_kms_key_id
|
9842
|
+
:master_password_secret_kms_key_id,
|
9843
|
+
:ip_address_type)
|
9571
9844
|
SENSITIVE = []
|
9572
9845
|
include Aws::Structure
|
9573
9846
|
end
|
data/lib/aws-sdk-redshift.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.101.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: 2023-10-
|
11
|
+
date: 2023-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|