aws-sdk-redshift 1.93.0 → 1.94.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5ddecc00f02fe5933c8d4845f8ea54ee97996b581f793ff8e28e25873f6b7e8
4
- data.tar.gz: 4d4e8c77bb97fafaa5e5af18bf55d2148630832c5f67403dfa5a34186e836ffd
3
+ metadata.gz: bb260ba876ac44b622e477072cec2d5f1bd17dd8ac55b643cd601e9f53807623
4
+ data.tar.gz: 631822c0972064062f14c229d3b2113abc384312c13ca1ff70a7f7a715e0ade2
5
5
  SHA512:
6
- metadata.gz: a4bad76a210164d7203c56c16bec04869d5c408de2c5d567b49896335b76c4a162fd5bcbd99b9b4ce7da157f3932bba2114484892b55c482578c9989f45cdf6e
7
- data.tar.gz: 253ac34ec57dfc0b570865b154f58a67f6642a595377ace924a9b2d2149e8ab265d274bc722a108418c02cb489519fd34f4cf984bdd0fca69dec11217d82490a
6
+ metadata.gz: afa436b519ef91611396c124cdbc89eff557060a6bfc56e015c3b003fa0c7cacee9a333ba0d0676b3bcc014955a730921149c7356e9a9aae364a460f815d353e
7
+ data.tar.gz: 0e06441a978e2a121866532233344c2a25c67b4ecf5505209e904786158bc554479faf4a072d732318a47ee7a43fadb8420166b300769050b8334fd2bcbfc85b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.94.0 (2023-06-20)
5
+ ------------------
6
+
7
+ * Feature - Added support for custom domain names for Redshift Provisioned clusters. This feature enables customers to create a custom domain name and use ACM to generate fully secure connections to it.
8
+
4
9
  1.93.0 (2023-06-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.93.0
1
+ 1.94.0
@@ -740,8 +740,8 @@ module Aws::Redshift
740
740
  #
741
741
  # @option params [String] :snapshot_cluster_identifier
742
742
  # The identifier of the cluster the snapshot was created from. This
743
- # parameter is required if your IAM user or role has a policy containing
744
- # a snapshot resource element that specifies anything other than * for
743
+ # parameter is required if your IAM user has a policy containing a
744
+ # snapshot resource element that specifies anything other than * for
745
745
  # the cluster name.
746
746
  #
747
747
  # @option params [required, String] :account_with_restore_access
@@ -1000,9 +1000,9 @@ module Aws::Redshift
1000
1000
  #
1001
1001
  # @option params [String] :source_snapshot_cluster_identifier
1002
1002
  # The identifier of the cluster the source snapshot was created from.
1003
- # This parameter is required if your IAM user or role has a policy
1004
- # containing a snapshot resource element that specifies anything other
1005
- # than * for the cluster name.
1003
+ # This parameter is required if your IAM user has a policy containing a
1004
+ # snapshot resource element that specifies anything other than * for
1005
+ # the cluster name.
1006
1006
  #
1007
1007
  # Constraints:
1008
1008
  #
@@ -1218,8 +1218,8 @@ module Aws::Redshift
1218
1218
  # [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
1219
1219
  #
1220
1220
  # @option params [required, String] :master_username
1221
- # The user name associated with the admin user for the cluster that is
1222
- # being created.
1221
+ # The user name associated with the admin user account for the cluster
1222
+ # that is being created.
1223
1223
  #
1224
1224
  # Constraints:
1225
1225
  #
@@ -1241,8 +1241,8 @@ module Aws::Redshift
1241
1241
  # [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
1242
1242
  #
1243
1243
  # @option params [required, String] :master_user_password
1244
- # The password associated with the admin user for the cluster that is
1245
- # being created.
1244
+ # The password associated with the admin user account for the cluster
1245
+ # that is being created.
1246
1246
  #
1247
1247
  # Constraints:
1248
1248
  #
@@ -1663,6 +1663,9 @@ module Aws::Redshift
1663
1663
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
1664
1664
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
1665
1665
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
1666
+ # resp.cluster.custom_domain_name #=> String
1667
+ # resp.cluster.custom_domain_certificate_arn #=> String
1668
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
1666
1669
  #
1667
1670
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1668
1671
  #
@@ -2031,6 +2034,51 @@ module Aws::Redshift
2031
2034
  req.send_request(options)
2032
2035
  end
2033
2036
 
2037
+ # Used to create a custom domain name for a cluster. Properties include
2038
+ # the custom domain name, the cluster the custom domain is associated
2039
+ # with, and the certificate Amazon Resource Name (ARN).
2040
+ #
2041
+ # @option params [required, String] :custom_domain_name
2042
+ # The custom domain name for a custom domain association.
2043
+ #
2044
+ # @option params [required, String] :custom_domain_certificate_arn
2045
+ # The certificate Amazon Resource Name (ARN) for the custom domain name
2046
+ # association.
2047
+ #
2048
+ # @option params [required, String] :cluster_identifier
2049
+ # The cluster identifier that the custom domain is associated with.
2050
+ #
2051
+ # @return [Types::CreateCustomDomainAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2052
+ #
2053
+ # * {Types::CreateCustomDomainAssociationResult#custom_domain_name #custom_domain_name} => String
2054
+ # * {Types::CreateCustomDomainAssociationResult#custom_domain_certificate_arn #custom_domain_certificate_arn} => String
2055
+ # * {Types::CreateCustomDomainAssociationResult#cluster_identifier #cluster_identifier} => String
2056
+ # * {Types::CreateCustomDomainAssociationResult#custom_domain_cert_expiry_time #custom_domain_cert_expiry_time} => String
2057
+ #
2058
+ # @example Request syntax with placeholder values
2059
+ #
2060
+ # resp = client.create_custom_domain_association({
2061
+ # custom_domain_name: "CustomDomainNameString", # required
2062
+ # custom_domain_certificate_arn: "CustomDomainCertificateArnString", # required
2063
+ # cluster_identifier: "String", # required
2064
+ # })
2065
+ #
2066
+ # @example Response structure
2067
+ #
2068
+ # resp.custom_domain_name #=> String
2069
+ # resp.custom_domain_certificate_arn #=> String
2070
+ # resp.cluster_identifier #=> String
2071
+ # resp.custom_domain_cert_expiry_time #=> String
2072
+ #
2073
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCustomDomainAssociation AWS API Documentation
2074
+ #
2075
+ # @overload create_custom_domain_association(params = {})
2076
+ # @param [Hash] params ({})
2077
+ def create_custom_domain_association(params = {}, options = {})
2078
+ req = build_request(:create_custom_domain_association, params)
2079
+ req.send_request(options)
2080
+ end
2081
+
2034
2082
  # Creates a Redshift-managed VPC endpoint.
2035
2083
  #
2036
2084
  # @option params [String] :cluster_identifier
@@ -3043,6 +3091,9 @@ module Aws::Redshift
3043
3091
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
3044
3092
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
3045
3093
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
3094
+ # resp.cluster.custom_domain_name #=> String
3095
+ # resp.cluster.custom_domain_certificate_arn #=> String
3096
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
3046
3097
  #
3047
3098
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
3048
3099
  #
@@ -3140,9 +3191,9 @@ module Aws::Redshift
3140
3191
  #
3141
3192
  # @option params [String] :snapshot_cluster_identifier
3142
3193
  # The unique identifier of the cluster the snapshot was created from.
3143
- # This parameter is required if your IAM user or role has a policy
3144
- # containing a snapshot resource element that specifies anything other
3145
- # than * for the cluster name.
3194
+ # This parameter is required if your IAM user has a policy containing a
3195
+ # snapshot resource element that specifies anything other than * for
3196
+ # the cluster name.
3146
3197
  #
3147
3198
  # Constraints: Must be the name of valid cluster.
3148
3199
  #
@@ -3230,6 +3281,30 @@ module Aws::Redshift
3230
3281
  req.send_request(options)
3231
3282
  end
3232
3283
 
3284
+ # Contains information about deleting a custom domain association for a
3285
+ # cluster.
3286
+ #
3287
+ # @option params [required, String] :cluster_identifier
3288
+ # The identifier of the cluster to delete a custom domain association
3289
+ # for.
3290
+ #
3291
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3292
+ #
3293
+ # @example Request syntax with placeholder values
3294
+ #
3295
+ # resp = client.delete_custom_domain_association({
3296
+ # cluster_identifier: "String", # required
3297
+ # })
3298
+ #
3299
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCustomDomainAssociation AWS API Documentation
3300
+ #
3301
+ # @overload delete_custom_domain_association(params = {})
3302
+ # @param [Hash] params ({})
3303
+ def delete_custom_domain_association(params = {}, options = {})
3304
+ req = build_request(:delete_custom_domain_association, params)
3305
+ req.send_request(options)
3306
+ end
3307
+
3233
3308
  # Deletes a Redshift-managed VPC endpoint.
3234
3309
  #
3235
3310
  # @option params [required, String] :endpoint_name
@@ -4024,7 +4099,7 @@ module Aws::Redshift
4024
4099
  #
4025
4100
  # Default: `100`
4026
4101
  #
4027
- # Constraints: minimum 20, maximum 500.
4102
+ # Constraints: minimum 20, maximum 100.
4028
4103
  #
4029
4104
  # @option params [String] :marker
4030
4105
  # An optional parameter that specifies the starting point to return a
@@ -4609,6 +4684,9 @@ module Aws::Redshift
4609
4684
  # resp.clusters[0].reserved_node_exchange_status.target_reserved_node_offering_id #=> String
4610
4685
  # resp.clusters[0].reserved_node_exchange_status.target_reserved_node_type #=> String
4611
4686
  # resp.clusters[0].reserved_node_exchange_status.target_reserved_node_count #=> Integer
4687
+ # resp.clusters[0].custom_domain_name #=> String
4688
+ # resp.clusters[0].custom_domain_certificate_arn #=> String
4689
+ # resp.clusters[0].custom_domain_certificate_expiry_date #=> Time
4612
4690
  #
4613
4691
  #
4614
4692
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4626,6 +4704,56 @@ module Aws::Redshift
4626
4704
  req.send_request(options)
4627
4705
  end
4628
4706
 
4707
+ # Contains information for custom domain associations for a cluster.
4708
+ #
4709
+ # @option params [String] :custom_domain_name
4710
+ # The custom domain name for the custom domain association.
4711
+ #
4712
+ # @option params [String] :custom_domain_certificate_arn
4713
+ # The certificate Amazon Resource Name (ARN) for the custom domain
4714
+ # association.
4715
+ #
4716
+ # @option params [Integer] :max_records
4717
+ # The maximum records setting for the associated custom domain.
4718
+ #
4719
+ # @option params [String] :marker
4720
+ # The marker for the custom domain association.
4721
+ #
4722
+ # @return [Types::CustomDomainAssociationsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4723
+ #
4724
+ # * {Types::CustomDomainAssociationsMessage#marker #marker} => String
4725
+ # * {Types::CustomDomainAssociationsMessage#associations #associations} => Array<Types::Association>
4726
+ #
4727
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4728
+ #
4729
+ # @example Request syntax with placeholder values
4730
+ #
4731
+ # resp = client.describe_custom_domain_associations({
4732
+ # custom_domain_name: "CustomDomainNameString",
4733
+ # custom_domain_certificate_arn: "CustomDomainCertificateArnString",
4734
+ # max_records: 1,
4735
+ # marker: "String",
4736
+ # })
4737
+ #
4738
+ # @example Response structure
4739
+ #
4740
+ # resp.marker #=> String
4741
+ # resp.associations #=> Array
4742
+ # resp.associations[0].custom_domain_certificate_arn #=> String
4743
+ # resp.associations[0].custom_domain_certificate_expiry_date #=> Time
4744
+ # resp.associations[0].certificate_associations #=> Array
4745
+ # resp.associations[0].certificate_associations[0].custom_domain_name #=> String
4746
+ # resp.associations[0].certificate_associations[0].cluster_identifier #=> String
4747
+ #
4748
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeCustomDomainAssociations AWS API Documentation
4749
+ #
4750
+ # @overload describe_custom_domain_associations(params = {})
4751
+ # @param [Hash] params ({})
4752
+ def describe_custom_domain_associations(params = {}, options = {})
4753
+ req = build_request(:describe_custom_domain_associations, params)
4754
+ req.send_request(options)
4755
+ end
4756
+
4629
4757
  # Shows the status of any inbound or outbound datashares available in
4630
4758
  # the specified account.
4631
4759
  #
@@ -6866,6 +6994,9 @@ module Aws::Redshift
6866
6994
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
6867
6995
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
6868
6996
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
6997
+ # resp.cluster.custom_domain_name #=> String
6998
+ # resp.cluster.custom_domain_certificate_arn #=> String
6999
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
6869
7000
  #
6870
7001
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
6871
7002
  #
@@ -7200,6 +7331,9 @@ module Aws::Redshift
7200
7331
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
7201
7332
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
7202
7333
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
7334
+ # resp.cluster.custom_domain_name #=> String
7335
+ # resp.cluster.custom_domain_certificate_arn #=> String
7336
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
7203
7337
  #
7204
7338
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
7205
7339
  #
@@ -7298,7 +7432,7 @@ module Aws::Redshift
7298
7432
  #
7299
7433
  # [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
7300
7434
  #
7301
- # @option params [required, String] :cluster_identifier
7435
+ # @option params [String] :cluster_identifier
7302
7436
  # The unique identifier of the cluster that contains the database for
7303
7437
  # which you are requesting credentials. This parameter is case
7304
7438
  # sensitive.
@@ -7338,6 +7472,9 @@ module Aws::Redshift
7338
7472
  #
7339
7473
  # [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
7340
7474
  #
7475
+ # @option params [String] :custom_domain_name
7476
+ # The custom domain name for the cluster credentials.
7477
+ #
7341
7478
  # @return [Types::ClusterCredentials] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7342
7479
  #
7343
7480
  # * {Types::ClusterCredentials#db_user #db_user} => String
@@ -7349,10 +7486,11 @@ module Aws::Redshift
7349
7486
  # resp = client.get_cluster_credentials({
7350
7487
  # db_user: "String", # required
7351
7488
  # db_name: "String",
7352
- # cluster_identifier: "String", # required
7489
+ # cluster_identifier: "String",
7353
7490
  # duration_seconds: 1,
7354
7491
  # auto_create: false,
7355
7492
  # db_groups: ["String"],
7493
+ # custom_domain_name: "String",
7356
7494
  # })
7357
7495
  #
7358
7496
  # @example Response structure
@@ -7394,7 +7532,7 @@ module Aws::Redshift
7394
7532
  # the resource `dbname` for the specified database name. If the database
7395
7533
  # name is not specified, access to all databases is allowed.
7396
7534
  #
7397
- # @option params [required, String] :cluster_identifier
7535
+ # @option params [String] :cluster_identifier
7398
7536
  # The unique identifier of the cluster that contains the database for
7399
7537
  # which you are requesting credentials.
7400
7538
  #
@@ -7403,6 +7541,9 @@ module Aws::Redshift
7403
7541
  #
7404
7542
  # Range: 900-3600. Default: 900.
7405
7543
  #
7544
+ # @option params [String] :custom_domain_name
7545
+ # The custom domain name for the IAM message cluster credentials.
7546
+ #
7406
7547
  # @return [Types::ClusterExtendedCredentials] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7407
7548
  #
7408
7549
  # * {Types::ClusterExtendedCredentials#db_user #db_user} => String
@@ -7414,8 +7555,9 @@ module Aws::Redshift
7414
7555
  #
7415
7556
  # resp = client.get_cluster_credentials_with_iam({
7416
7557
  # db_name: "String",
7417
- # cluster_identifier: "String", # required
7558
+ # cluster_identifier: "String",
7418
7559
  # duration_seconds: 1,
7560
+ # custom_domain_name: "String",
7419
7561
  # })
7420
7562
  #
7421
7563
  # @example Response structure
@@ -7746,8 +7888,8 @@ module Aws::Redshift
7746
7888
  # response.
7747
7889
  #
7748
7890
  # <note markdown="1"> Operations never return the password, so this operation provides a way
7749
- # to regain access to the admin user for a cluster if the password is
7750
- # lost.
7891
+ # to regain access to the admin user account for a cluster if the
7892
+ # password is lost.
7751
7893
  #
7752
7894
  # </note>
7753
7895
  #
@@ -8088,6 +8230,9 @@ module Aws::Redshift
8088
8230
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
8089
8231
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
8090
8232
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
8233
+ # resp.cluster.custom_domain_name #=> String
8234
+ # resp.cluster.custom_domain_certificate_arn #=> String
8235
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8091
8236
  #
8092
8237
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
8093
8238
  #
@@ -8242,6 +8387,9 @@ module Aws::Redshift
8242
8387
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
8243
8388
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
8244
8389
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
8390
+ # resp.cluster.custom_domain_name #=> String
8391
+ # resp.cluster.custom_domain_certificate_arn #=> String
8392
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8245
8393
  #
8246
8394
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
8247
8395
  #
@@ -8412,6 +8560,9 @@ module Aws::Redshift
8412
8560
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
8413
8561
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
8414
8562
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
8563
+ # resp.cluster.custom_domain_name #=> String
8564
+ # resp.cluster.custom_domain_certificate_arn #=> String
8565
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8415
8566
  #
8416
8567
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
8417
8568
  #
@@ -8582,6 +8733,9 @@ module Aws::Redshift
8582
8733
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
8583
8734
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
8584
8735
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
8736
+ # resp.cluster.custom_domain_name #=> String
8737
+ # resp.cluster.custom_domain_certificate_arn #=> String
8738
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
8585
8739
  #
8586
8740
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
8587
8741
  #
@@ -8823,6 +8977,50 @@ module Aws::Redshift
8823
8977
  req.send_request(options)
8824
8978
  end
8825
8979
 
8980
+ # Contains information for changing a custom domain association.
8981
+ #
8982
+ # @option params [String] :custom_domain_name
8983
+ # The custom domain name for a changed custom domain association.
8984
+ #
8985
+ # @option params [String] :custom_domain_certificate_arn
8986
+ # The certificate Amazon Resource Name (ARN) for the changed custom
8987
+ # domain association.
8988
+ #
8989
+ # @option params [required, String] :cluster_identifier
8990
+ # The identifier of the cluster to change a custom domain association
8991
+ # for.
8992
+ #
8993
+ # @return [Types::ModifyCustomDomainAssociationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8994
+ #
8995
+ # * {Types::ModifyCustomDomainAssociationResult#custom_domain_name #custom_domain_name} => String
8996
+ # * {Types::ModifyCustomDomainAssociationResult#custom_domain_certificate_arn #custom_domain_certificate_arn} => String
8997
+ # * {Types::ModifyCustomDomainAssociationResult#cluster_identifier #cluster_identifier} => String
8998
+ # * {Types::ModifyCustomDomainAssociationResult#custom_domain_cert_expiry_time #custom_domain_cert_expiry_time} => String
8999
+ #
9000
+ # @example Request syntax with placeholder values
9001
+ #
9002
+ # resp = client.modify_custom_domain_association({
9003
+ # custom_domain_name: "CustomDomainNameString",
9004
+ # custom_domain_certificate_arn: "CustomDomainCertificateArnString",
9005
+ # cluster_identifier: "String", # required
9006
+ # })
9007
+ #
9008
+ # @example Response structure
9009
+ #
9010
+ # resp.custom_domain_name #=> String
9011
+ # resp.custom_domain_certificate_arn #=> String
9012
+ # resp.cluster_identifier #=> String
9013
+ # resp.custom_domain_cert_expiry_time #=> String
9014
+ #
9015
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCustomDomainAssociation AWS API Documentation
9016
+ #
9017
+ # @overload modify_custom_domain_association(params = {})
9018
+ # @param [Hash] params ({})
9019
+ def modify_custom_domain_association(params = {}, options = {})
9020
+ req = build_request(:modify_custom_domain_association, params)
9021
+ req.send_request(options)
9022
+ end
9023
+
8826
9024
  # Modifies a Redshift-managed VPC endpoint.
8827
9025
  #
8828
9026
  # @option params [required, String] :endpoint_name
@@ -9256,6 +9454,9 @@ module Aws::Redshift
9256
9454
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
9257
9455
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
9258
9456
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
9457
+ # resp.cluster.custom_domain_name #=> String
9458
+ # resp.cluster.custom_domain_certificate_arn #=> String
9459
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9259
9460
  #
9260
9461
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
9261
9462
  #
@@ -9509,6 +9710,9 @@ module Aws::Redshift
9509
9710
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
9510
9711
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
9511
9712
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
9713
+ # resp.cluster.custom_domain_name #=> String
9714
+ # resp.cluster.custom_domain_certificate_arn #=> String
9715
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9512
9716
  #
9513
9717
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
9514
9718
  #
@@ -9725,6 +9929,9 @@ module Aws::Redshift
9725
9929
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
9726
9930
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
9727
9931
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
9932
+ # resp.cluster.custom_domain_name #=> String
9933
+ # resp.cluster.custom_domain_certificate_arn #=> String
9934
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
9728
9935
  #
9729
9936
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
9730
9937
  #
@@ -10029,6 +10236,9 @@ module Aws::Redshift
10029
10236
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
10030
10237
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
10031
10238
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
10239
+ # resp.cluster.custom_domain_name #=> String
10240
+ # resp.cluster.custom_domain_certificate_arn #=> String
10241
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10032
10242
  #
10033
10243
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
10034
10244
  #
@@ -10091,8 +10301,8 @@ module Aws::Redshift
10091
10301
  #
10092
10302
  # @option params [String] :snapshot_cluster_identifier
10093
10303
  # The name of the cluster the source snapshot was created from. This
10094
- # parameter is required if your IAM user or role has a policy containing
10095
- # a snapshot resource element that specifies anything other than * for
10304
+ # parameter is required if your IAM user has a policy containing a
10305
+ # snapshot resource element that specifies anything other than * for
10096
10306
  # the cluster name.
10097
10307
  #
10098
10308
  # @option params [Integer] :port
@@ -10482,6 +10692,9 @@ module Aws::Redshift
10482
10692
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
10483
10693
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
10484
10694
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
10695
+ # resp.cluster.custom_domain_name #=> String
10696
+ # resp.cluster.custom_domain_certificate_arn #=> String
10697
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10485
10698
  #
10486
10699
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
10487
10700
  #
@@ -10727,6 +10940,9 @@ module Aws::Redshift
10727
10940
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
10728
10941
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
10729
10942
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
10943
+ # resp.cluster.custom_domain_name #=> String
10944
+ # resp.cluster.custom_domain_certificate_arn #=> String
10945
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
10730
10946
  #
10731
10947
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
10732
10948
  #
@@ -10895,8 +11111,8 @@ module Aws::Redshift
10895
11111
  #
10896
11112
  # @option params [String] :snapshot_cluster_identifier
10897
11113
  # The identifier of the cluster the snapshot was created from. This
10898
- # parameter is required if your IAM user or role has a policy containing
10899
- # a snapshot resource element that specifies anything other than * for
11114
+ # parameter is required if your IAM user has a policy containing a
11115
+ # snapshot resource element that specifies anything other than * for
10900
11116
  # the cluster name.
10901
11117
  #
10902
11118
  # @option params [required, String] :account_with_restore_access
@@ -11106,6 +11322,9 @@ module Aws::Redshift
11106
11322
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_offering_id #=> String
11107
11323
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_type #=> String
11108
11324
  # resp.cluster.reserved_node_exchange_status.target_reserved_node_count #=> Integer
11325
+ # resp.cluster.custom_domain_name #=> String
11326
+ # resp.cluster.custom_domain_certificate_arn #=> String
11327
+ # resp.cluster.custom_domain_certificate_expiry_date #=> Time
11109
11328
  #
11110
11329
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
11111
11330
  #
@@ -11181,7 +11400,7 @@ module Aws::Redshift
11181
11400
  params: params,
11182
11401
  config: config)
11183
11402
  context[:gem_name] = 'aws-sdk-redshift'
11184
- context[:gem_version] = '1.93.0'
11403
+ context[:gem_version] = '1.94.0'
11185
11404
  Seahorse::Client::Request.new(handlers, context)
11186
11405
  end
11187
11406