aws-sdk-redshift 1.98.0 → 1.100.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 +252 -5
- data/lib/aws-sdk-redshift/client_api.rb +131 -3
- 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 +33 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-redshift/types.rb +315 -8
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
@@ -888,6 +888,16 @@ module Aws::Redshift
|
|
888
888
|
# domain name.
|
889
889
|
# @return [Time]
|
890
890
|
#
|
891
|
+
# @!attribute [rw] master_password_secret_arn
|
892
|
+
# The Amazon Resource Name (ARN) for the cluster's admin user
|
893
|
+
# credentials secret.
|
894
|
+
# @return [String]
|
895
|
+
#
|
896
|
+
# @!attribute [rw] master_password_secret_kms_key_id
|
897
|
+
# The ID of the Key Management Service (KMS) key used to encrypt and
|
898
|
+
# store the cluster's admin credentials secret.
|
899
|
+
# @return [String]
|
900
|
+
#
|
891
901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
892
902
|
#
|
893
903
|
class Cluster < Struct.new(
|
@@ -945,7 +955,9 @@ module Aws::Redshift
|
|
945
955
|
:reserved_node_exchange_status,
|
946
956
|
:custom_domain_name,
|
947
957
|
:custom_domain_certificate_arn,
|
948
|
-
:custom_domain_certificate_expiry_date
|
958
|
+
:custom_domain_certificate_expiry_date,
|
959
|
+
:master_password_secret_arn,
|
960
|
+
:master_password_secret_kms_key_id)
|
949
961
|
SENSITIVE = []
|
950
962
|
include Aws::Structure
|
951
963
|
end
|
@@ -1712,6 +1724,12 @@ module Aws::Redshift
|
|
1712
1724
|
include Aws::Structure
|
1713
1725
|
end
|
1714
1726
|
|
1727
|
+
# There is a conflict while updating the resource policy.
|
1728
|
+
#
|
1729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ConflictPolicyUpdateFault AWS API Documentation
|
1730
|
+
#
|
1731
|
+
class ConflictPolicyUpdateFault < Aws::EmptyStructure; end
|
1732
|
+
|
1715
1733
|
# @!attribute [rw] source_snapshot_identifier
|
1716
1734
|
# The identifier for the source snapshot.
|
1717
1735
|
#
|
@@ -1932,6 +1950,9 @@ module Aws::Redshift
|
|
1932
1950
|
# The password associated with the admin user account for the cluster
|
1933
1951
|
# that is being created.
|
1934
1952
|
#
|
1953
|
+
# You can't use `MasterUserPassword` if `ManageMasterPassword` is
|
1954
|
+
# `true`.
|
1955
|
+
#
|
1935
1956
|
# Constraints:
|
1936
1957
|
#
|
1937
1958
|
# * Must be between 8 and 64 characters in length.
|
@@ -2216,6 +2237,20 @@ module Aws::Redshift
|
|
2216
2237
|
# is created.
|
2217
2238
|
# @return [String]
|
2218
2239
|
#
|
2240
|
+
# @!attribute [rw] manage_master_password
|
2241
|
+
# If `true`, Amazon Redshift uses Secrets Manager to manage this
|
2242
|
+
# cluster's admin credentials. You can't use `MasterUserPassword` if
|
2243
|
+
# `ManageMasterPassword` is true. If `ManageMasterPassword` is false
|
2244
|
+
# or not set, Amazon Redshift uses `MasterUserPassword` for the admin
|
2245
|
+
# user account's password.
|
2246
|
+
# @return [Boolean]
|
2247
|
+
#
|
2248
|
+
# @!attribute [rw] master_password_secret_kms_key_id
|
2249
|
+
# The ID of the Key Management Service (KMS) key used to encrypt and
|
2250
|
+
# store the cluster's admin credentials secret. You can only use this
|
2251
|
+
# parameter if `ManageMasterPassword` is true.
|
2252
|
+
# @return [String]
|
2253
|
+
#
|
2219
2254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
|
2220
2255
|
#
|
2221
2256
|
class CreateClusterMessage < Struct.new(
|
@@ -2252,8 +2287,10 @@ module Aws::Redshift
|
|
2252
2287
|
:availability_zone_relocation,
|
2253
2288
|
:aqua_configuration_status,
|
2254
2289
|
:default_iam_role_arn,
|
2255
|
-
:load_sample_data
|
2256
|
-
|
2290
|
+
:load_sample_data,
|
2291
|
+
:manage_master_password,
|
2292
|
+
:master_password_secret_kms_key_id)
|
2293
|
+
SENSITIVE = [:master_user_password]
|
2257
2294
|
include Aws::Structure
|
2258
2295
|
end
|
2259
2296
|
|
@@ -3490,6 +3527,19 @@ module Aws::Redshift
|
|
3490
3527
|
include Aws::Structure
|
3491
3528
|
end
|
3492
3529
|
|
3530
|
+
# @!attribute [rw] resource_arn
|
3531
|
+
# The Amazon Resource Name (ARN) of the resource of which its resource
|
3532
|
+
# policy is deleted.
|
3533
|
+
# @return [String]
|
3534
|
+
#
|
3535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteResourcePolicyMessage AWS API Documentation
|
3536
|
+
#
|
3537
|
+
class DeleteResourcePolicyMessage < Struct.new(
|
3538
|
+
:resource_arn)
|
3539
|
+
SENSITIVE = []
|
3540
|
+
include Aws::Structure
|
3541
|
+
end
|
3542
|
+
|
3493
3543
|
# @!attribute [rw] scheduled_action_name
|
3494
3544
|
# The name of the scheduled action to delete.
|
3495
3545
|
# @return [String]
|
@@ -4828,6 +4878,48 @@ module Aws::Redshift
|
|
4828
4878
|
include Aws::Structure
|
4829
4879
|
end
|
4830
4880
|
|
4881
|
+
# @!attribute [rw] integration_arn
|
4882
|
+
# The Amazon Resource Name (ARN) of the inbound integration.
|
4883
|
+
# @return [String]
|
4884
|
+
#
|
4885
|
+
# @!attribute [rw] target_arn
|
4886
|
+
# The Amazon Resource Name (ARN) of the target of an inbound
|
4887
|
+
# integration.
|
4888
|
+
# @return [String]
|
4889
|
+
#
|
4890
|
+
# @!attribute [rw] max_records
|
4891
|
+
# The maximum number of response records to return in each call. If
|
4892
|
+
# the number of remaining response records exceeds the specified
|
4893
|
+
# `MaxRecords` value, a value is returned in a `marker` field of the
|
4894
|
+
# response. You can retrieve the next set of records by retrying the
|
4895
|
+
# command with the returned marker value.
|
4896
|
+
#
|
4897
|
+
# Default: `100`
|
4898
|
+
#
|
4899
|
+
# Constraints: minimum 20, maximum 100.
|
4900
|
+
# @return [Integer]
|
4901
|
+
#
|
4902
|
+
# @!attribute [rw] marker
|
4903
|
+
# An optional parameter that specifies the starting point to return a
|
4904
|
+
# set of response records. When the results of a
|
4905
|
+
# DescribeInboundIntegrations request exceed the value specified in
|
4906
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4907
|
+
# field of the response. You can retrieve the next set of response
|
4908
|
+
# records by providing the returned marker value in the `Marker`
|
4909
|
+
# parameter and retrying the request.
|
4910
|
+
# @return [String]
|
4911
|
+
#
|
4912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeInboundIntegrationsMessage AWS API Documentation
|
4913
|
+
#
|
4914
|
+
class DescribeInboundIntegrationsMessage < Struct.new(
|
4915
|
+
:integration_arn,
|
4916
|
+
:target_arn,
|
4917
|
+
:max_records,
|
4918
|
+
:marker)
|
4919
|
+
SENSITIVE = []
|
4920
|
+
include Aws::Structure
|
4921
|
+
end
|
4922
|
+
|
4831
4923
|
# @!attribute [rw] cluster_identifier
|
4832
4924
|
# The identifier of the cluster from which to get the logging status.
|
4833
4925
|
#
|
@@ -6548,6 +6640,31 @@ module Aws::Redshift
|
|
6548
6640
|
include Aws::Structure
|
6549
6641
|
end
|
6550
6642
|
|
6643
|
+
# @!attribute [rw] resource_arn
|
6644
|
+
# The Amazon Resource Name (ARN) of the resource of which its resource
|
6645
|
+
# policy is fetched.
|
6646
|
+
# @return [String]
|
6647
|
+
#
|
6648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetResourcePolicyMessage AWS API Documentation
|
6649
|
+
#
|
6650
|
+
class GetResourcePolicyMessage < Struct.new(
|
6651
|
+
:resource_arn)
|
6652
|
+
SENSITIVE = []
|
6653
|
+
include Aws::Structure
|
6654
|
+
end
|
6655
|
+
|
6656
|
+
# @!attribute [rw] resource_policy
|
6657
|
+
# The content of the resource policy.
|
6658
|
+
# @return [Types::ResourcePolicy]
|
6659
|
+
#
|
6660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetResourcePolicyResult AWS API Documentation
|
6661
|
+
#
|
6662
|
+
class GetResourcePolicyResult < Struct.new(
|
6663
|
+
:resource_policy)
|
6664
|
+
SENSITIVE = []
|
6665
|
+
include Aws::Structure
|
6666
|
+
end
|
6667
|
+
|
6551
6668
|
# Returns information about an HSM client certificate. The certificate
|
6552
6669
|
# is stored in a secure Hardware Storage Module (HSM), and used by the
|
6553
6670
|
# Amazon Redshift cluster to encrypt data files.
|
@@ -6774,6 +6891,70 @@ module Aws::Redshift
|
|
6774
6891
|
#
|
6775
6892
|
class InProgressTableRestoreQuotaExceededFault < Aws::EmptyStructure; end
|
6776
6893
|
|
6894
|
+
# The content of an inbound integration.
|
6895
|
+
#
|
6896
|
+
# @!attribute [rw] integration_arn
|
6897
|
+
# The Amazon Resource Name (ARN) of an inbound integration.
|
6898
|
+
# @return [String]
|
6899
|
+
#
|
6900
|
+
# @!attribute [rw] source_arn
|
6901
|
+
# The Amazon Resource Name (ARN) of the source of an inbound
|
6902
|
+
# integration.
|
6903
|
+
# @return [String]
|
6904
|
+
#
|
6905
|
+
# @!attribute [rw] target_arn
|
6906
|
+
# The Amazon Resource Name (ARN) of the target of an inbound
|
6907
|
+
# integration.
|
6908
|
+
# @return [String]
|
6909
|
+
#
|
6910
|
+
# @!attribute [rw] status
|
6911
|
+
# The status of an inbound integration.
|
6912
|
+
# @return [String]
|
6913
|
+
#
|
6914
|
+
# @!attribute [rw] errors
|
6915
|
+
# The outstanding errors of an inbound integration. Each item is an
|
6916
|
+
# "IntegrationError". This is null if there is no error.
|
6917
|
+
# @return [Array<Types::IntegrationError>]
|
6918
|
+
#
|
6919
|
+
# @!attribute [rw] create_time
|
6920
|
+
# The creation time of an inbound integration.
|
6921
|
+
# @return [Time]
|
6922
|
+
#
|
6923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InboundIntegration AWS API Documentation
|
6924
|
+
#
|
6925
|
+
class InboundIntegration < Struct.new(
|
6926
|
+
:integration_arn,
|
6927
|
+
:source_arn,
|
6928
|
+
:target_arn,
|
6929
|
+
:status,
|
6930
|
+
:errors,
|
6931
|
+
:create_time)
|
6932
|
+
SENSITIVE = []
|
6933
|
+
include Aws::Structure
|
6934
|
+
end
|
6935
|
+
|
6936
|
+
# @!attribute [rw] marker
|
6937
|
+
# A value that indicates the starting point for the next set of
|
6938
|
+
# response records in a subsequent request. If a value is returned in
|
6939
|
+
# a response, you can retrieve the next set of records by providing
|
6940
|
+
# this returned marker value in the `Marker` parameter and retrying
|
6941
|
+
# the command. If the `Marker` field is empty, all response records
|
6942
|
+
# have been retrieved for the request.
|
6943
|
+
# @return [String]
|
6944
|
+
#
|
6945
|
+
# @!attribute [rw] inbound_integrations
|
6946
|
+
# A list of InboundIntegration instances.
|
6947
|
+
# @return [Array<Types::InboundIntegration>]
|
6948
|
+
#
|
6949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InboundIntegrationsMessage AWS API Documentation
|
6950
|
+
#
|
6951
|
+
class InboundIntegrationsMessage < Struct.new(
|
6952
|
+
:marker,
|
6953
|
+
:inbound_integrations)
|
6954
|
+
SENSITIVE = []
|
6955
|
+
include Aws::Structure
|
6956
|
+
end
|
6957
|
+
|
6777
6958
|
# The specified options are incompatible.
|
6778
6959
|
#
|
6779
6960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IncompatibleOrderableOptions AWS API Documentation
|
@@ -6794,6 +6975,31 @@ module Aws::Redshift
|
|
6794
6975
|
#
|
6795
6976
|
class InsufficientS3BucketPolicyFault < Aws::EmptyStructure; end
|
6796
6977
|
|
6978
|
+
# The error of an inbound integration.
|
6979
|
+
#
|
6980
|
+
# @!attribute [rw] error_code
|
6981
|
+
# The error code of an inbound integration error.
|
6982
|
+
# @return [String]
|
6983
|
+
#
|
6984
|
+
# @!attribute [rw] error_message
|
6985
|
+
# The error message of an inbound integration error.
|
6986
|
+
# @return [String]
|
6987
|
+
#
|
6988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationError AWS API Documentation
|
6989
|
+
#
|
6990
|
+
class IntegrationError < Struct.new(
|
6991
|
+
:error_code,
|
6992
|
+
:error_message)
|
6993
|
+
SENSITIVE = []
|
6994
|
+
include Aws::Structure
|
6995
|
+
end
|
6996
|
+
|
6997
|
+
# The integration can't be found.
|
6998
|
+
#
|
6999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/IntegrationNotFoundFault AWS API Documentation
|
7000
|
+
#
|
7001
|
+
class IntegrationNotFoundFault < Aws::EmptyStructure; end
|
7002
|
+
|
6797
7003
|
# The authentication profile request is not valid. The profile name
|
6798
7004
|
# can't be null or empty. The authentication profile API operation must
|
6799
7005
|
# be available in the Amazon Web Services Region.
|
@@ -6898,6 +7104,12 @@ module Aws::Redshift
|
|
6898
7104
|
#
|
6899
7105
|
class InvalidNamespaceFault < Aws::EmptyStructure; end
|
6900
7106
|
|
7107
|
+
# The resource policy isn't valid.
|
7108
|
+
#
|
7109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/InvalidPolicyFault AWS API Documentation
|
7110
|
+
#
|
7111
|
+
class InvalidPolicyFault < Aws::EmptyStructure; end
|
7112
|
+
|
6901
7113
|
# Indicates that the Reserved Node being exchanged is not in an active
|
6902
7114
|
# state.
|
6903
7115
|
#
|
@@ -7364,6 +7576,9 @@ module Aws::Redshift
|
|
7364
7576
|
# element exists in the `PendingModifiedValues` element of the
|
7365
7577
|
# operation response.
|
7366
7578
|
#
|
7579
|
+
# You can't use `MasterUserPassword` if `ManageMasterPassword` is
|
7580
|
+
# `true`.
|
7581
|
+
#
|
7367
7582
|
# <note markdown="1"> Operations never return the password, so this operation provides a
|
7368
7583
|
# way to regain access to the admin user account for a cluster if the
|
7369
7584
|
# password is lost.
|
@@ -7575,6 +7790,20 @@ module Aws::Redshift
|
|
7575
7790
|
# The option to change the port of an Amazon Redshift cluster.
|
7576
7791
|
# @return [Integer]
|
7577
7792
|
#
|
7793
|
+
# @!attribute [rw] manage_master_password
|
7794
|
+
# If `true`, Amazon Redshift uses Secrets Manager to manage this
|
7795
|
+
# cluster's admin credentials. You can't use `MasterUserPassword` if
|
7796
|
+
# `ManageMasterPassword` is true. If `ManageMasterPassword` is false
|
7797
|
+
# or not set, Amazon Redshift uses `MasterUserPassword` for the admin
|
7798
|
+
# user account's password.
|
7799
|
+
# @return [Boolean]
|
7800
|
+
#
|
7801
|
+
# @!attribute [rw] master_password_secret_kms_key_id
|
7802
|
+
# The ID of the Key Management Service (KMS) key used to encrypt and
|
7803
|
+
# store the cluster's admin credentials secret. You can only use this
|
7804
|
+
# parameter if `ManageMasterPassword` is true.
|
7805
|
+
# @return [String]
|
7806
|
+
#
|
7578
7807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMessage AWS API Documentation
|
7579
7808
|
#
|
7580
7809
|
class ModifyClusterMessage < Struct.new(
|
@@ -7602,8 +7831,10 @@ module Aws::Redshift
|
|
7602
7831
|
:kms_key_id,
|
7603
7832
|
:availability_zone_relocation,
|
7604
7833
|
:availability_zone,
|
7605
|
-
:port
|
7606
|
-
|
7834
|
+
:port,
|
7835
|
+
:manage_master_password,
|
7836
|
+
:master_password_secret_kms_key_id)
|
7837
|
+
SENSITIVE = [:master_user_password]
|
7607
7838
|
include Aws::Structure
|
7608
7839
|
end
|
7609
7840
|
|
@@ -8510,7 +8741,7 @@ module Aws::Redshift
|
|
8510
8741
|
:enhanced_vpc_routing,
|
8511
8742
|
:maintenance_track_name,
|
8512
8743
|
:encryption_type)
|
8513
|
-
SENSITIVE = []
|
8744
|
+
SENSITIVE = [:master_user_password]
|
8514
8745
|
include Aws::Structure
|
8515
8746
|
end
|
8516
8747
|
|
@@ -8548,6 +8779,36 @@ module Aws::Redshift
|
|
8548
8779
|
include Aws::Structure
|
8549
8780
|
end
|
8550
8781
|
|
8782
|
+
# @!attribute [rw] resource_arn
|
8783
|
+
# The Amazon Resource Name (ARN) of the resource of which its resource
|
8784
|
+
# policy is updated.
|
8785
|
+
# @return [String]
|
8786
|
+
#
|
8787
|
+
# @!attribute [rw] policy
|
8788
|
+
# The content of the resource policy being updated.
|
8789
|
+
# @return [String]
|
8790
|
+
#
|
8791
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PutResourcePolicyMessage AWS API Documentation
|
8792
|
+
#
|
8793
|
+
class PutResourcePolicyMessage < Struct.new(
|
8794
|
+
:resource_arn,
|
8795
|
+
:policy)
|
8796
|
+
SENSITIVE = []
|
8797
|
+
include Aws::Structure
|
8798
|
+
end
|
8799
|
+
|
8800
|
+
# @!attribute [rw] resource_policy
|
8801
|
+
# The content of the updated resource policy.
|
8802
|
+
# @return [Types::ResourcePolicy]
|
8803
|
+
#
|
8804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PutResourcePolicyResult AWS API Documentation
|
8805
|
+
#
|
8806
|
+
class PutResourcePolicyResult < Struct.new(
|
8807
|
+
:resource_policy)
|
8808
|
+
SENSITIVE = []
|
8809
|
+
include Aws::Structure
|
8810
|
+
end
|
8811
|
+
|
8551
8812
|
# @!attribute [rw] cluster_identifier
|
8552
8813
|
# The cluster identifier.
|
8553
8814
|
# @return [String]
|
@@ -9171,6 +9432,25 @@ module Aws::Redshift
|
|
9171
9432
|
#
|
9172
9433
|
class ResourceNotFoundFault < Aws::EmptyStructure; end
|
9173
9434
|
|
9435
|
+
# The policy that is attached to a resource.
|
9436
|
+
#
|
9437
|
+
# @!attribute [rw] resource_arn
|
9438
|
+
# The resources that a policy is attached to.
|
9439
|
+
# @return [String]
|
9440
|
+
#
|
9441
|
+
# @!attribute [rw] policy
|
9442
|
+
# The content of a resource policy.
|
9443
|
+
# @return [String]
|
9444
|
+
#
|
9445
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResourcePolicy AWS API Documentation
|
9446
|
+
#
|
9447
|
+
class ResourcePolicy < Struct.new(
|
9448
|
+
:resource_arn,
|
9449
|
+
:policy)
|
9450
|
+
SENSITIVE = []
|
9451
|
+
include Aws::Structure
|
9452
|
+
end
|
9453
|
+
|
9174
9454
|
# @!attribute [rw] cluster_identifier
|
9175
9455
|
# The identifier of the cluster that will be created from restoring
|
9176
9456
|
# the snapshot.
|
@@ -9467,6 +9747,19 @@ module Aws::Redshift
|
|
9467
9747
|
# key.
|
9468
9748
|
# @return [Boolean]
|
9469
9749
|
#
|
9750
|
+
# @!attribute [rw] manage_master_password
|
9751
|
+
# If `true`, Amazon Redshift uses Secrets Manager to manage the
|
9752
|
+
# restored cluster's admin credentials. If `ManageMasterPassword` is
|
9753
|
+
# false or not set, Amazon Redshift uses the admin credentials the
|
9754
|
+
# cluster had at the time the snapshot was taken.
|
9755
|
+
# @return [Boolean]
|
9756
|
+
#
|
9757
|
+
# @!attribute [rw] master_password_secret_kms_key_id
|
9758
|
+
# The ID of the Key Management Service (KMS) key used to encrypt and
|
9759
|
+
# store the cluster's admin credentials secret. You can only use this
|
9760
|
+
# parameter if `ManageMasterPassword` is true.
|
9761
|
+
# @return [String]
|
9762
|
+
#
|
9470
9763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
|
9471
9764
|
#
|
9472
9765
|
class RestoreFromClusterSnapshotMessage < Struct.new(
|
@@ -9502,7 +9795,9 @@ module Aws::Redshift
|
|
9502
9795
|
:default_iam_role_arn,
|
9503
9796
|
:reserved_node_id,
|
9504
9797
|
:target_reserved_node_offering_id,
|
9505
|
-
:encrypted
|
9798
|
+
:encrypted,
|
9799
|
+
:manage_master_password,
|
9800
|
+
:master_password_secret_kms_key_id)
|
9506
9801
|
SENSITIVE = []
|
9507
9802
|
include Aws::Structure
|
9508
9803
|
end
|
@@ -10241,6 +10536,16 @@ module Aws::Redshift
|
|
10241
10536
|
# snapshot.
|
10242
10537
|
# @return [Time]
|
10243
10538
|
#
|
10539
|
+
# @!attribute [rw] master_password_secret_arn
|
10540
|
+
# The Amazon Resource Name (ARN) for the cluster's admin user
|
10541
|
+
# credentials secret.
|
10542
|
+
# @return [String]
|
10543
|
+
#
|
10544
|
+
# @!attribute [rw] master_password_secret_kms_key_id
|
10545
|
+
# The ID of the Key Management Service (KMS) key used to encrypt and
|
10546
|
+
# store the cluster's admin credentials secret.
|
10547
|
+
# @return [String]
|
10548
|
+
#
|
10244
10549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Snapshot AWS API Documentation
|
10245
10550
|
#
|
10246
10551
|
class Snapshot < Struct.new(
|
@@ -10277,7 +10582,9 @@ module Aws::Redshift
|
|
10277
10582
|
:maintenance_track_name,
|
10278
10583
|
:manual_snapshot_retention_period,
|
10279
10584
|
:manual_snapshot_remaining_days,
|
10280
|
-
:snapshot_retention_start_time
|
10585
|
+
:snapshot_retention_start_time,
|
10586
|
+
:master_password_secret_arn,
|
10587
|
+
:master_password_secret_kms_key_id)
|
10281
10588
|
SENSITIVE = []
|
10282
10589
|
include Aws::Structure
|
10283
10590
|
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.100.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-
|
11
|
+
date: 2023-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|