aws-sdk-rds 1.197.0 → 1.199.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-rds/client.rb +290 -1
- data/lib/aws-sdk-rds/client_api.rb +125 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/db_instance.rb +19 -0
- data/lib/aws-sdk-rds/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-rds/endpoints.rb +42 -0
- data/lib/aws-sdk-rds/errors.rb +55 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-rds/types.rb +313 -4
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1757,6 +1757,23 @@ module Aws::RDS
|
|
1757
1757
|
# Tags to assign to the blue/green deployment.
|
1758
1758
|
# @return [Array<Types::Tag>]
|
1759
1759
|
#
|
1760
|
+
# @!attribute [rw] target_db_instance_class
|
1761
|
+
# Specify the DB instance class for the databases in the green
|
1762
|
+
# environment.
|
1763
|
+
# @return [String]
|
1764
|
+
#
|
1765
|
+
# @!attribute [rw] upgrade_target_storage_config
|
1766
|
+
# Whether to upgrade the storage file system configuration on the
|
1767
|
+
# green database. This option migrates the green DB instance from the
|
1768
|
+
# older 32-bit file system to the preferred configuration. For more
|
1769
|
+
# information, see [Upgrading the storage file system for a DB
|
1770
|
+
# instance][1].
|
1771
|
+
#
|
1772
|
+
#
|
1773
|
+
#
|
1774
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
1775
|
+
# @return [Boolean]
|
1776
|
+
#
|
1760
1777
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentRequest AWS API Documentation
|
1761
1778
|
#
|
1762
1779
|
class CreateBlueGreenDeploymentRequest < Struct.new(
|
@@ -1765,7 +1782,9 @@ module Aws::RDS
|
|
1765
1782
|
:target_engine_version,
|
1766
1783
|
:target_db_parameter_group_name,
|
1767
1784
|
:target_db_cluster_parameter_group_name,
|
1768
|
-
:tags
|
1785
|
+
:tags,
|
1786
|
+
:target_db_instance_class,
|
1787
|
+
:upgrade_target_storage_config)
|
1769
1788
|
SENSITIVE = []
|
1770
1789
|
include Aws::Structure
|
1771
1790
|
end
|
@@ -5090,6 +5109,12 @@ module Aws::RDS
|
|
5090
5109
|
# enabled.
|
5091
5110
|
# @return [Boolean]
|
5092
5111
|
#
|
5112
|
+
# @!attribute [rw] upgrade_storage_config
|
5113
|
+
# Whether to upgrade the storage file system configuration on the read
|
5114
|
+
# replica. This option migrates the read replica from the old storage
|
5115
|
+
# file system layout to the preferred layout.
|
5116
|
+
# @return [Boolean]
|
5117
|
+
#
|
5093
5118
|
# @!attribute [rw] source_region
|
5094
5119
|
# The source region of the snapshot. This is only needed when the
|
5095
5120
|
# shapshot is encrypted and in a different region.
|
@@ -5141,6 +5166,7 @@ module Aws::RDS
|
|
5141
5166
|
:allocated_storage,
|
5142
5167
|
:source_db_cluster_identifier,
|
5143
5168
|
:dedicated_log_volume,
|
5169
|
+
:upgrade_storage_config,
|
5144
5170
|
:source_region)
|
5145
5171
|
SENSITIVE = []
|
5146
5172
|
include Aws::Structure
|
@@ -5829,6 +5855,63 @@ module Aws::RDS
|
|
5829
5855
|
include Aws::Structure
|
5830
5856
|
end
|
5831
5857
|
|
5858
|
+
# @!attribute [rw] source_arn
|
5859
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster to use as
|
5860
|
+
# the source for replication.
|
5861
|
+
# @return [String]
|
5862
|
+
#
|
5863
|
+
# @!attribute [rw] target_arn
|
5864
|
+
# The ARN of the Redshift data warehouse to use as the target for
|
5865
|
+
# replication.
|
5866
|
+
# @return [String]
|
5867
|
+
#
|
5868
|
+
# @!attribute [rw] integration_name
|
5869
|
+
# The name of the integration.
|
5870
|
+
# @return [String]
|
5871
|
+
#
|
5872
|
+
# @!attribute [rw] kms_key_id
|
5873
|
+
# The Amazon Web Services Key Management System (Amazon Web Services
|
5874
|
+
# KMS) key identifier for the key to use to encrypt the integration.
|
5875
|
+
# If you don't specify an encryption key, Aurora uses a default
|
5876
|
+
# Amazon Web Services owned key.
|
5877
|
+
# @return [String]
|
5878
|
+
#
|
5879
|
+
# @!attribute [rw] additional_encryption_context
|
5880
|
+
# An optional set of non-secret key–value pairs that contains
|
5881
|
+
# additional contextual information about the data. For more
|
5882
|
+
# information, see [Encryption context][1] in the *Amazon Web Services
|
5883
|
+
# Key Management Service Developer Guide*.
|
5884
|
+
#
|
5885
|
+
# You can only include this parameter if you specify the `KMSKeyId`
|
5886
|
+
# parameter.
|
5887
|
+
#
|
5888
|
+
#
|
5889
|
+
#
|
5890
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
5891
|
+
# @return [Hash<String,String>]
|
5892
|
+
#
|
5893
|
+
# @!attribute [rw] tags
|
5894
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5895
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5896
|
+
#
|
5897
|
+
#
|
5898
|
+
#
|
5899
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5900
|
+
# @return [Array<Types::Tag>]
|
5901
|
+
#
|
5902
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegrationMessage AWS API Documentation
|
5903
|
+
#
|
5904
|
+
class CreateIntegrationMessage < Struct.new(
|
5905
|
+
:source_arn,
|
5906
|
+
:target_arn,
|
5907
|
+
:integration_name,
|
5908
|
+
:kms_key_id,
|
5909
|
+
:additional_encryption_context,
|
5910
|
+
:tags)
|
5911
|
+
SENSITIVE = []
|
5912
|
+
include Aws::Structure
|
5913
|
+
end
|
5914
|
+
|
5832
5915
|
# @!attribute [rw] option_group_name
|
5833
5916
|
# Specifies the name of the option group to be created.
|
5834
5917
|
#
|
@@ -7723,6 +7806,11 @@ module Aws::RDS
|
|
7723
7806
|
# Valid for: Aurora DB clusters only
|
7724
7807
|
# @return [Boolean]
|
7725
7808
|
#
|
7809
|
+
# @!attribute [rw] supports_integrations
|
7810
|
+
# Indicates whether the DB engine version supports Aurora zero-ETL
|
7811
|
+
# integrations with Amazon Redshift.
|
7812
|
+
# @return [Boolean]
|
7813
|
+
#
|
7726
7814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
7727
7815
|
#
|
7728
7816
|
class DBEngineVersion < Struct.new(
|
@@ -7757,7 +7845,8 @@ module Aws::RDS
|
|
7757
7845
|
:custom_db_engine_version_manifest,
|
7758
7846
|
:supports_certificate_rotation_without_restart,
|
7759
7847
|
:supported_ca_certificate_identifiers,
|
7760
|
-
:supports_local_write_forwarding
|
7848
|
+
:supports_local_write_forwarding,
|
7849
|
+
:supports_integrations)
|
7761
7850
|
SENSITIVE = []
|
7762
7851
|
include Aws::Structure
|
7763
7852
|
end
|
@@ -8369,6 +8458,18 @@ module Aws::RDS
|
|
8369
8458
|
# enabled.
|
8370
8459
|
# @return [Boolean]
|
8371
8460
|
#
|
8461
|
+
# @!attribute [rw] is_storage_config_upgrade_available
|
8462
|
+
# Indicates whether an upgrade is recommended for the storage file
|
8463
|
+
# system configuration on the DB instance. To migrate to the preferred
|
8464
|
+
# configuration, you can either create a blue/green deployment, or
|
8465
|
+
# create a read replica from the DB instance. For more information,
|
8466
|
+
# see [Upgrading the storage file system for a DB instance][1].
|
8467
|
+
#
|
8468
|
+
#
|
8469
|
+
#
|
8470
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
8471
|
+
# @return [Boolean]
|
8472
|
+
#
|
8372
8473
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
8373
8474
|
#
|
8374
8475
|
class DBInstance < Struct.new(
|
@@ -8454,7 +8555,8 @@ module Aws::RDS
|
|
8454
8555
|
:certificate_details,
|
8455
8556
|
:read_replica_source_db_cluster_identifier,
|
8456
8557
|
:percent_progress,
|
8457
|
-
:dedicated_log_volume
|
8558
|
+
:dedicated_log_volume,
|
8559
|
+
:is_storage_config_upgrade_available)
|
8458
8560
|
SENSITIVE = []
|
8459
8561
|
include Aws::Structure
|
8460
8562
|
end
|
@@ -10546,6 +10648,18 @@ module Aws::RDS
|
|
10546
10648
|
include Aws::Structure
|
10547
10649
|
end
|
10548
10650
|
|
10651
|
+
# @!attribute [rw] integration_identifier
|
10652
|
+
# The unique identifier of the integration.
|
10653
|
+
# @return [String]
|
10654
|
+
#
|
10655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegrationMessage AWS API Documentation
|
10656
|
+
#
|
10657
|
+
class DeleteIntegrationMessage < Struct.new(
|
10658
|
+
:integration_identifier)
|
10659
|
+
SENSITIVE = []
|
10660
|
+
include Aws::Structure
|
10661
|
+
end
|
10662
|
+
|
10549
10663
|
# @!attribute [rw] option_group_name
|
10550
10664
|
# The name of the option group to be deleted.
|
10551
10665
|
#
|
@@ -12757,6 +12871,61 @@ module Aws::RDS
|
|
12757
12871
|
include Aws::Structure
|
12758
12872
|
end
|
12759
12873
|
|
12874
|
+
# @!attribute [rw] integration_identifier
|
12875
|
+
# The unique identifier of the integration.
|
12876
|
+
# @return [String]
|
12877
|
+
#
|
12878
|
+
# @!attribute [rw] filters
|
12879
|
+
# A filter that specifies one or more resources to return.
|
12880
|
+
# @return [Array<Types::Filter>]
|
12881
|
+
#
|
12882
|
+
# @!attribute [rw] max_records
|
12883
|
+
# The maximum number of records to include in the response. If more
|
12884
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
12885
|
+
# token called a marker is included in the response so that you can
|
12886
|
+
# retrieve the remaining results.
|
12887
|
+
#
|
12888
|
+
# Default: 100
|
12889
|
+
#
|
12890
|
+
# Constraints: Minimum 20, maximum 100.
|
12891
|
+
# @return [Integer]
|
12892
|
+
#
|
12893
|
+
# @!attribute [rw] marker
|
12894
|
+
# An optional pagination token provided by a previous
|
12895
|
+
# `DescribeIntegrations` request. If this parameter is specified, the
|
12896
|
+
# response includes only records beyond the marker, up to the value
|
12897
|
+
# specified by `MaxRecords`.
|
12898
|
+
# @return [String]
|
12899
|
+
#
|
12900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrationsMessage AWS API Documentation
|
12901
|
+
#
|
12902
|
+
class DescribeIntegrationsMessage < Struct.new(
|
12903
|
+
:integration_identifier,
|
12904
|
+
:filters,
|
12905
|
+
:max_records,
|
12906
|
+
:marker)
|
12907
|
+
SENSITIVE = []
|
12908
|
+
include Aws::Structure
|
12909
|
+
end
|
12910
|
+
|
12911
|
+
# @!attribute [rw] marker
|
12912
|
+
# A pagination token that can be used in a later
|
12913
|
+
# `DescribeIntegrations` request.
|
12914
|
+
# @return [String]
|
12915
|
+
#
|
12916
|
+
# @!attribute [rw] integrations
|
12917
|
+
# A list of integrations.
|
12918
|
+
# @return [Array<Types::Integration>]
|
12919
|
+
#
|
12920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrationsResponse AWS API Documentation
|
12921
|
+
#
|
12922
|
+
class DescribeIntegrationsResponse < Struct.new(
|
12923
|
+
:marker,
|
12924
|
+
:integrations)
|
12925
|
+
SENSITIVE = []
|
12926
|
+
include Aws::Structure
|
12927
|
+
end
|
12928
|
+
|
12760
12929
|
# @!attribute [rw] engine_name
|
12761
12930
|
# A required parameter. Options available for the given engine name
|
12762
12931
|
# are described.
|
@@ -14394,6 +14563,133 @@ module Aws::RDS
|
|
14394
14563
|
#
|
14395
14564
|
class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure; end
|
14396
14565
|
|
14566
|
+
# An Aurora zero-ETL integration with Amazon Redshift. For more
|
14567
|
+
# information, see [Working with Amazon Aurora zero-ETL integrations
|
14568
|
+
# with Amazon Redshift][1] in the *Amazon Aurora User Guide*.
|
14569
|
+
#
|
14570
|
+
#
|
14571
|
+
#
|
14572
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html
|
14573
|
+
#
|
14574
|
+
# @!attribute [rw] source_arn
|
14575
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster used as the
|
14576
|
+
# source for replication.
|
14577
|
+
# @return [String]
|
14578
|
+
#
|
14579
|
+
# @!attribute [rw] target_arn
|
14580
|
+
# The ARN of the Redshift data warehouse used as the target for
|
14581
|
+
# replication.
|
14582
|
+
# @return [String]
|
14583
|
+
#
|
14584
|
+
# @!attribute [rw] integration_name
|
14585
|
+
# The name of the integration.
|
14586
|
+
# @return [String]
|
14587
|
+
#
|
14588
|
+
# @!attribute [rw] integration_arn
|
14589
|
+
# The ARN of the integration.
|
14590
|
+
# @return [String]
|
14591
|
+
#
|
14592
|
+
# @!attribute [rw] kms_key_id
|
14593
|
+
# The Amazon Web Services Key Management System (Amazon Web Services
|
14594
|
+
# KMS) key identifier for the key used to to encrypt the integration.
|
14595
|
+
# @return [String]
|
14596
|
+
#
|
14597
|
+
# @!attribute [rw] additional_encryption_context
|
14598
|
+
# The encryption context for the integration. For more information,
|
14599
|
+
# see [Encryption context][1] in the *Amazon Web Services Key
|
14600
|
+
# Management Service Developer Guide*.
|
14601
|
+
#
|
14602
|
+
#
|
14603
|
+
#
|
14604
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
14605
|
+
# @return [Hash<String,String>]
|
14606
|
+
#
|
14607
|
+
# @!attribute [rw] status
|
14608
|
+
# The current status of the integration.
|
14609
|
+
# @return [String]
|
14610
|
+
#
|
14611
|
+
# @!attribute [rw] tags
|
14612
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
14613
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
14614
|
+
#
|
14615
|
+
#
|
14616
|
+
#
|
14617
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
14618
|
+
# @return [Array<Types::Tag>]
|
14619
|
+
#
|
14620
|
+
# @!attribute [rw] create_time
|
14621
|
+
# The time when the integration was created, in Universal Coordinated
|
14622
|
+
# Time (UTC).
|
14623
|
+
# @return [Time]
|
14624
|
+
#
|
14625
|
+
# @!attribute [rw] errors
|
14626
|
+
# Any errors associated with the integration.
|
14627
|
+
# @return [Array<Types::IntegrationError>]
|
14628
|
+
#
|
14629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
14630
|
+
#
|
14631
|
+
class Integration < Struct.new(
|
14632
|
+
:source_arn,
|
14633
|
+
:target_arn,
|
14634
|
+
:integration_name,
|
14635
|
+
:integration_arn,
|
14636
|
+
:kms_key_id,
|
14637
|
+
:additional_encryption_context,
|
14638
|
+
:status,
|
14639
|
+
:tags,
|
14640
|
+
:create_time,
|
14641
|
+
:errors)
|
14642
|
+
SENSITIVE = []
|
14643
|
+
include Aws::Structure
|
14644
|
+
end
|
14645
|
+
|
14646
|
+
# The integration you are trying to create already exists.
|
14647
|
+
#
|
14648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationAlreadyExistsFault AWS API Documentation
|
14649
|
+
#
|
14650
|
+
class IntegrationAlreadyExistsFault < Aws::EmptyStructure; end
|
14651
|
+
|
14652
|
+
# A conflicting conditional operation is currently in progress against
|
14653
|
+
# this resource. Typically occurs when there are multiple requests being
|
14654
|
+
# made to the same resource at the same time, and these requests
|
14655
|
+
# conflict with each other.
|
14656
|
+
#
|
14657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationConflictOperationFault AWS API Documentation
|
14658
|
+
#
|
14659
|
+
class IntegrationConflictOperationFault < Aws::EmptyStructure; end
|
14660
|
+
|
14661
|
+
# An error associated with a zero-ETL integration with Amazon Redshift.
|
14662
|
+
#
|
14663
|
+
# @!attribute [rw] error_code
|
14664
|
+
# The error code associated with the integration.
|
14665
|
+
# @return [String]
|
14666
|
+
#
|
14667
|
+
# @!attribute [rw] error_message
|
14668
|
+
# A message explaining the error.
|
14669
|
+
# @return [String]
|
14670
|
+
#
|
14671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationError AWS API Documentation
|
14672
|
+
#
|
14673
|
+
class IntegrationError < Struct.new(
|
14674
|
+
:error_code,
|
14675
|
+
:error_message)
|
14676
|
+
SENSITIVE = []
|
14677
|
+
include Aws::Structure
|
14678
|
+
end
|
14679
|
+
|
14680
|
+
# The specified integration could not be found.
|
14681
|
+
#
|
14682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationNotFoundFault AWS API Documentation
|
14683
|
+
#
|
14684
|
+
class IntegrationNotFoundFault < Aws::EmptyStructure; end
|
14685
|
+
|
14686
|
+
# You can't crate any more zero-ETL integrations because the quota has
|
14687
|
+
# been reached.
|
14688
|
+
#
|
14689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationQuotaExceededFault AWS API Documentation
|
14690
|
+
#
|
14691
|
+
class IntegrationQuotaExceededFault < Aws::EmptyStructure; end
|
14692
|
+
|
14397
14693
|
# The blue/green deployment can't be switched over or deleted because
|
14398
14694
|
# there is an invalid configuration in the green environment.
|
14399
14695
|
#
|
@@ -14540,6 +14836,13 @@ module Aws::RDS
|
|
14540
14836
|
#
|
14541
14837
|
class InvalidGlobalClusterStateFault < Aws::EmptyStructure; end
|
14542
14838
|
|
14839
|
+
# The integration is in an invalid state and can't perform the
|
14840
|
+
# requested operation.
|
14841
|
+
#
|
14842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidIntegrationStateFault AWS API Documentation
|
14843
|
+
#
|
14844
|
+
class InvalidIntegrationStateFault < Aws::EmptyStructure; end
|
14845
|
+
|
14543
14846
|
# The option group isn't in the *available* state.
|
14544
14847
|
#
|
14545
14848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidOptionGroupStateFault AWS API Documentation
|
@@ -24395,6 +24698,11 @@ module Aws::RDS
|
|
24395
24698
|
# Valid for: Aurora DB clusters only
|
24396
24699
|
# @return [Boolean]
|
24397
24700
|
#
|
24701
|
+
# @!attribute [rw] supports_integrations
|
24702
|
+
# Indicates whether the DB engine version supports Aurora zero-ETL
|
24703
|
+
# integrations with Amazon Redshift.
|
24704
|
+
# @return [Boolean]
|
24705
|
+
#
|
24398
24706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
|
24399
24707
|
#
|
24400
24708
|
class UpgradeTarget < Struct.new(
|
@@ -24407,7 +24715,8 @@ module Aws::RDS
|
|
24407
24715
|
:supports_parallel_query,
|
24408
24716
|
:supports_global_databases,
|
24409
24717
|
:supports_babelfish,
|
24410
|
-
:supports_local_write_forwarding
|
24718
|
+
:supports_local_write_forwarding,
|
24719
|
+
:supports_integrations)
|
24411
24720
|
SENSITIVE = []
|
24412
24721
|
include Aws::Structure
|
24413
24722
|
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.199.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-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|