aws-sdk-redshift 1.61.0 → 1.65.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift.rb +1 -1
- data/lib/aws-sdk-redshift/client.rb +541 -200
- data/lib/aws-sdk-redshift/client_api.rb +212 -0
- data/lib/aws-sdk-redshift/errors.rb +66 -0
- data/lib/aws-sdk-redshift/types.rb +657 -226
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 777c92c3d81b2c05575bc7d7811dbf2a07447788091658e22fae0c75ee036046
|
4
|
+
data.tar.gz: '0872c758736acbf6c50ff82cff87688210a3606d1caf519e40f530d73adbf1bd'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 685f757bc9e8baa5b86020ccc3101ab8240c3e6f15b21d6958d6614254f388a275f4d1efaf90d3a02dbb6c46f8a889741e10c0324708940388b47e981c30f3ce
|
7
|
+
data.tar.gz: 5d969ec81ba82aa09c9af82a985d10dbae62d5b444292d00712a0473f7c47ff8f0d7663ec19f1a9192f200f6523d87f0655ea28e8cec1bc47273a1cab2fcaf13
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2021-07-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Release new APIs to support new Redshift feature - Authentication Profile
|
8
|
+
|
9
|
+
1.64.0 (2021-06-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added InvalidClusterStateFault to the DisableLogging API, thrown when calling the API on a non available cluster.
|
13
|
+
|
14
|
+
1.63.0 (2021-06-10)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Added InvalidClusterStateFault to the ModifyAquaConfiguration API, thrown when calling the API on a non available cluster.
|
18
|
+
|
19
|
+
1.62.0 (2021-04-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Add operations: AddPartner, DescribePartners, DeletePartner, and UpdatePartnerStatus to support tracking integration status with data partners.
|
23
|
+
|
4
24
|
1.61.0 (2021-04-13)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
data/lib/aws-sdk-redshift.rb
CHANGED
@@ -378,6 +378,52 @@ module Aws::Redshift
|
|
378
378
|
req.send_request(options)
|
379
379
|
end
|
380
380
|
|
381
|
+
# Adds a partner integration to a cluster. This operation authorizes a
|
382
|
+
# partner to push status updates for the specified database. To complete
|
383
|
+
# the integration, you also set up the integration on the partner
|
384
|
+
# website.
|
385
|
+
#
|
386
|
+
# @option params [required, String] :account_id
|
387
|
+
# The Region ID that owns the cluster.
|
388
|
+
#
|
389
|
+
# @option params [required, String] :cluster_identifier
|
390
|
+
# The cluster identifier of the cluster that receives data from the
|
391
|
+
# partner.
|
392
|
+
#
|
393
|
+
# @option params [required, String] :database_name
|
394
|
+
# The name of the database that receives data from the partner.
|
395
|
+
#
|
396
|
+
# @option params [required, String] :partner_name
|
397
|
+
# The name of the partner that is authorized to send data.
|
398
|
+
#
|
399
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
400
|
+
#
|
401
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
402
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
403
|
+
#
|
404
|
+
# @example Request syntax with placeholder values
|
405
|
+
#
|
406
|
+
# resp = client.add_partner({
|
407
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
408
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
409
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
410
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
411
|
+
# })
|
412
|
+
#
|
413
|
+
# @example Response structure
|
414
|
+
#
|
415
|
+
# resp.database_name #=> String
|
416
|
+
# resp.partner_name #=> String
|
417
|
+
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AddPartner AWS API Documentation
|
419
|
+
#
|
420
|
+
# @overload add_partner(params = {})
|
421
|
+
# @param [Hash] params ({})
|
422
|
+
def add_partner(params = {}, options = {})
|
423
|
+
req = build_request(:add_partner, params)
|
424
|
+
req.send_request(options)
|
425
|
+
end
|
426
|
+
|
381
427
|
# Adds an inbound (ingress) rule to an Amazon Redshift security group.
|
382
428
|
# Depending on whether the application accessing your cluster is running
|
383
429
|
# on the Internet or an Amazon EC2 instance, you can authorize inbound
|
@@ -387,8 +433,7 @@ module Aws::Redshift
|
|
387
433
|
#
|
388
434
|
# If you authorize access to an Amazon EC2 security group, specify
|
389
435
|
# *EC2SecurityGroupName* and *EC2SecurityGroupOwnerId*. The Amazon EC2
|
390
|
-
# security group and Amazon Redshift cluster must be in the same
|
391
|
-
# Region.
|
436
|
+
# security group and Amazon Redshift cluster must be in the same Region.
|
392
437
|
#
|
393
438
|
# If you authorize access to a CIDR/IP address range, specify *CIDRIP*.
|
394
439
|
# For an overview of CIDR blocks, see the Wikipedia article on
|
@@ -415,9 +460,9 @@ module Aws::Redshift
|
|
415
460
|
# The EC2 security group to be added the Amazon Redshift security group.
|
416
461
|
#
|
417
462
|
# @option params [String] :ec2_security_group_owner_id
|
418
|
-
# The
|
419
|
-
#
|
420
|
-
# acceptable value.
|
463
|
+
# The account number of the owner of the security group specified by the
|
464
|
+
# *EC2SecurityGroupName* parameter. The Amazon Web Services Access Key
|
465
|
+
# ID is not an acceptable value.
|
421
466
|
#
|
422
467
|
# Example: `111122223333`
|
423
468
|
#
|
@@ -470,7 +515,7 @@ module Aws::Redshift
|
|
470
515
|
# The cluster identifier of the cluster to grant access to.
|
471
516
|
#
|
472
517
|
# @option params [required, String] :account
|
473
|
-
# The
|
518
|
+
# The account ID to grant access to.
|
474
519
|
#
|
475
520
|
# @option params [Array<String>] :vpc_ids
|
476
521
|
# The virtual private cloud (VPC) identifiers to grant access to.
|
@@ -517,8 +562,7 @@ module Aws::Redshift
|
|
517
562
|
req.send_request(options)
|
518
563
|
end
|
519
564
|
|
520
|
-
# Authorizes the specified
|
521
|
-
# snapshot.
|
565
|
+
# Authorizes the specified account to restore the specified snapshot.
|
522
566
|
#
|
523
567
|
# For more information about working with snapshots, go to [Amazon
|
524
568
|
# Redshift Snapshots][1] in the *Amazon Redshift Cluster Management
|
@@ -538,10 +582,11 @@ module Aws::Redshift
|
|
538
582
|
# the cluster name.
|
539
583
|
#
|
540
584
|
# @option params [required, String] :account_with_restore_access
|
541
|
-
# The identifier of the
|
542
|
-
#
|
585
|
+
# The identifier of the account authorized to restore the specified
|
586
|
+
# snapshot.
|
543
587
|
#
|
544
|
-
# To share a snapshot with
|
588
|
+
# To share a snapshot with Amazon Web Services Support, specify
|
589
|
+
# amazon-redshift-support.
|
545
590
|
#
|
546
591
|
# @return [Types::AuthorizeSnapshotAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
547
592
|
#
|
@@ -814,7 +859,7 @@ module Aws::Redshift
|
|
814
859
|
#
|
815
860
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
816
861
|
#
|
817
|
-
# * Must be unique for the
|
862
|
+
# * Must be unique for the account that is making the request.
|
818
863
|
#
|
819
864
|
# @option params [Integer] :manual_snapshot_retention_period
|
820
865
|
# The number of days that a manual snapshot is retained. If the value is
|
@@ -888,6 +933,41 @@ module Aws::Redshift
|
|
888
933
|
req.send_request(options)
|
889
934
|
end
|
890
935
|
|
936
|
+
# Creates an authentication profile with the specified parameters.
|
937
|
+
#
|
938
|
+
# @option params [required, String] :authentication_profile_name
|
939
|
+
# The name of the authentication profile to be created.
|
940
|
+
#
|
941
|
+
# @option params [required, String] :authentication_profile_content
|
942
|
+
# The content of the authentication profile in JSON format. The maximum
|
943
|
+
# length of the JSON string is determined by a quota for your account.
|
944
|
+
#
|
945
|
+
# @return [Types::CreateAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
946
|
+
#
|
947
|
+
# * {Types::CreateAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
|
948
|
+
# * {Types::CreateAuthenticationProfileResult#authentication_profile_content #authentication_profile_content} => String
|
949
|
+
#
|
950
|
+
# @example Request syntax with placeholder values
|
951
|
+
#
|
952
|
+
# resp = client.create_authentication_profile({
|
953
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
954
|
+
# authentication_profile_content: "String", # required
|
955
|
+
# })
|
956
|
+
#
|
957
|
+
# @example Response structure
|
958
|
+
#
|
959
|
+
# resp.authentication_profile_name #=> String
|
960
|
+
# resp.authentication_profile_content #=> String
|
961
|
+
#
|
962
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateAuthenticationProfile AWS API Documentation
|
963
|
+
#
|
964
|
+
# @overload create_authentication_profile(params = {})
|
965
|
+
# @param [Hash] params ({})
|
966
|
+
def create_authentication_profile(params = {}, options = {})
|
967
|
+
req = build_request(:create_authentication_profile, params)
|
968
|
+
req.send_request(options)
|
969
|
+
end
|
970
|
+
|
891
971
|
# Creates a new cluster with the specified parameters.
|
892
972
|
#
|
893
973
|
# To create a cluster in Virtual Private Cloud (VPC), you must provide a
|
@@ -943,7 +1023,7 @@ module Aws::Redshift
|
|
943
1023
|
#
|
944
1024
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
945
1025
|
#
|
946
|
-
# * Must be unique for all clusters within an
|
1026
|
+
# * Must be unique for all clusters within an account.
|
947
1027
|
#
|
948
1028
|
# Example: `myexamplecluster`
|
949
1029
|
#
|
@@ -972,7 +1052,7 @@ module Aws::Redshift
|
|
972
1052
|
# [1]: https://docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#how-many-nodes
|
973
1053
|
#
|
974
1054
|
# @option params [required, String] :master_username
|
975
|
-
# The user name associated with the
|
1055
|
+
# The user name associated with the admin user account for the cluster
|
976
1056
|
# that is being created.
|
977
1057
|
#
|
978
1058
|
# Constraints:
|
@@ -990,7 +1070,7 @@ module Aws::Redshift
|
|
990
1070
|
# [1]: https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
|
991
1071
|
#
|
992
1072
|
# @option params [required, String] :master_user_password
|
993
|
-
# The password associated with the
|
1073
|
+
# The password associated with the admin user account for the cluster
|
994
1074
|
# that is being created.
|
995
1075
|
#
|
996
1076
|
# Constraints:
|
@@ -1184,8 +1264,8 @@ module Aws::Redshift
|
|
1184
1264
|
# A list of tag instances.
|
1185
1265
|
#
|
1186
1266
|
# @option params [String] :kms_key_id
|
1187
|
-
# The
|
1188
|
-
#
|
1267
|
+
# The Key Management Service (KMS) key ID of the encryption key that you
|
1268
|
+
# want to use to encrypt data in the cluster.
|
1189
1269
|
#
|
1190
1270
|
# @option params [Boolean] :enhanced_vpc_routing
|
1191
1271
|
# An option that specifies whether to create the cluster with enhanced
|
@@ -1206,10 +1286,10 @@ module Aws::Redshift
|
|
1206
1286
|
# Reserved.
|
1207
1287
|
#
|
1208
1288
|
# @option params [Array<String>] :iam_roles
|
1209
|
-
# A list of
|
1210
|
-
#
|
1211
|
-
# IAM roles in their Amazon Resource Name (ARN) format. You
|
1212
|
-
# up to 10 IAM roles in a single request.
|
1289
|
+
# A list of Identity and Access Management (IAM) roles that can be used
|
1290
|
+
# by the cluster to access other Amazon Web Services services. You must
|
1291
|
+
# supply the IAM roles in their Amazon Resource Name (ARN) format. You
|
1292
|
+
# can supply up to 10 IAM roles in a single request.
|
1213
1293
|
#
|
1214
1294
|
# A cluster can have up to 10 IAM roles associated with it at any time.
|
1215
1295
|
#
|
@@ -1230,7 +1310,7 @@ module Aws::Redshift
|
|
1230
1310
|
# (Advanced Query Accelerator) when it is created. Possible values
|
1231
1311
|
# include the following.
|
1232
1312
|
#
|
1233
|
-
# * enabled - Use AQUA if it is available for the current
|
1313
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
1234
1314
|
# Amazon Redshift node type.
|
1235
1315
|
#
|
1236
1316
|
# * disabled - Don't use AQUA.
|
@@ -1431,7 +1511,7 @@ module Aws::Redshift
|
|
1431
1511
|
#
|
1432
1512
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
1433
1513
|
#
|
1434
|
-
# * Must be unique withing your
|
1514
|
+
# * Must be unique withing your account.
|
1435
1515
|
#
|
1436
1516
|
# <note markdown="1"> This value is stored as a lower-case string.
|
1437
1517
|
#
|
@@ -1444,7 +1524,7 @@ module Aws::Redshift
|
|
1444
1524
|
#
|
1445
1525
|
# To get a list of valid parameter group family names, you can call
|
1446
1526
|
# DescribeClusterParameterGroups. By default, Amazon Redshift returns a
|
1447
|
-
# list of all the parameter groups that are owned by your
|
1527
|
+
# list of all the parameter groups that are owned by your account,
|
1448
1528
|
# including the default parameter groups for each Amazon Redshift engine
|
1449
1529
|
# version. The parameter group family names associated with the default
|
1450
1530
|
# parameter groups provide you the valid values. For example, a valid
|
@@ -1513,7 +1593,7 @@ module Aws::Redshift
|
|
1513
1593
|
#
|
1514
1594
|
# * Must not be "Default".
|
1515
1595
|
#
|
1516
|
-
# * Must be unique for all security groups that are created by your
|
1596
|
+
# * Must be unique for all security groups that are created by your
|
1517
1597
|
# account.
|
1518
1598
|
#
|
1519
1599
|
# Example: `examplesecuritygroup`
|
@@ -1584,7 +1664,7 @@ module Aws::Redshift
|
|
1584
1664
|
#
|
1585
1665
|
# @option params [required, String] :snapshot_identifier
|
1586
1666
|
# A unique identifier for the snapshot that you are requesting. This
|
1587
|
-
# identifier must be unique for all snapshots within the
|
1667
|
+
# identifier must be unique for all snapshots within the account.
|
1588
1668
|
#
|
1589
1669
|
# Constraints:
|
1590
1670
|
#
|
@@ -1702,7 +1782,7 @@ module Aws::Redshift
|
|
1702
1782
|
#
|
1703
1783
|
# * Must not be "Default".
|
1704
1784
|
#
|
1705
|
-
# * Must be unique for all subnet groups that are created by your
|
1785
|
+
# * Must be unique for all subnet groups that are created by your
|
1706
1786
|
# account.
|
1707
1787
|
#
|
1708
1788
|
# Example: `examplesubnetgroup`
|
@@ -1766,8 +1846,8 @@ module Aws::Redshift
|
|
1766
1846
|
# The cluster identifier of the cluster to access.
|
1767
1847
|
#
|
1768
1848
|
# @option params [String] :resource_owner
|
1769
|
-
# The
|
1770
|
-
#
|
1849
|
+
# The account ID of the owner of the cluster. This is only required if
|
1850
|
+
# the cluster is in another account.
|
1771
1851
|
#
|
1772
1852
|
# @option params [required, String] :endpoint_name
|
1773
1853
|
# The Redshift-managed VPC endpoint name.
|
@@ -1857,11 +1937,11 @@ module Aws::Redshift
|
|
1857
1937
|
# type = cluster and source identifier = my-cluster-1, notifications
|
1858
1938
|
# will be sent for all the cluster events for my-cluster-1. If you
|
1859
1939
|
# specify a source type but do not specify a source identifier, you will
|
1860
|
-
# receive notice of the events for the objects of that type in your
|
1940
|
+
# receive notice of the events for the objects of that type in your
|
1861
1941
|
# account. If you do not specify either the SourceType nor the
|
1862
1942
|
# SourceIdentifier, you will be notified of events generated from all
|
1863
|
-
# Amazon Redshift sources belonging to your
|
1864
|
-
#
|
1943
|
+
# Amazon Redshift sources belonging to your account. You must specify a
|
1944
|
+
# source type if you specify a source ID.
|
1865
1945
|
#
|
1866
1946
|
# @option params [required, String] :subscription_name
|
1867
1947
|
# The name of the event subscription to be created.
|
@@ -1885,8 +1965,8 @@ module Aws::Redshift
|
|
1885
1965
|
# The type of source that will be generating the events. For example, if
|
1886
1966
|
# you want to be notified of events generated by a cluster, you would
|
1887
1967
|
# set this parameter to cluster. If this value is not specified, events
|
1888
|
-
# are returned for all Amazon Redshift objects in your
|
1889
|
-
#
|
1968
|
+
# are returned for all Amazon Redshift objects in your account. You must
|
1969
|
+
# specify a source type in order to specify source IDs.
|
1890
1970
|
#
|
1891
1971
|
# Valid values: cluster, cluster-parameter-group,
|
1892
1972
|
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
@@ -2213,8 +2293,8 @@ module Aws::Redshift
|
|
2213
2293
|
end
|
2214
2294
|
|
2215
2295
|
# Creates a snapshot copy grant that permits Amazon Redshift to use a
|
2216
|
-
# customer master key (CMK) from
|
2217
|
-
#
|
2296
|
+
# customer master key (CMK) from Key Management Service (KMS) to encrypt
|
2297
|
+
# copied snapshots in a destination region.
|
2218
2298
|
#
|
2219
2299
|
# For more information about managing snapshot copy grants, go to
|
2220
2300
|
# [Amazon Redshift Database Encryption][1] in the *Amazon Redshift
|
@@ -2226,7 +2306,7 @@ module Aws::Redshift
|
|
2226
2306
|
#
|
2227
2307
|
# @option params [required, String] :snapshot_copy_grant_name
|
2228
2308
|
# The name of the snapshot copy grant. This name must be unique in the
|
2229
|
-
# region for the
|
2309
|
+
# region for the account.
|
2230
2310
|
#
|
2231
2311
|
# Constraints:
|
2232
2312
|
#
|
@@ -2238,7 +2318,7 @@ module Aws::Redshift
|
|
2238
2318
|
#
|
2239
2319
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
2240
2320
|
#
|
2241
|
-
# * Must be unique for all clusters within an
|
2321
|
+
# * Must be unique for all clusters within an account.
|
2242
2322
|
#
|
2243
2323
|
# @option params [String] :kms_key_id
|
2244
2324
|
# The unique identifier of the customer master key (CMK) to which to
|
@@ -2482,6 +2562,34 @@ module Aws::Redshift
|
|
2482
2562
|
req.send_request(options)
|
2483
2563
|
end
|
2484
2564
|
|
2565
|
+
# Deletes an authentication profile.
|
2566
|
+
#
|
2567
|
+
# @option params [required, String] :authentication_profile_name
|
2568
|
+
# The name of the authentication profile to delete.
|
2569
|
+
#
|
2570
|
+
# @return [Types::DeleteAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2571
|
+
#
|
2572
|
+
# * {Types::DeleteAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
|
2573
|
+
#
|
2574
|
+
# @example Request syntax with placeholder values
|
2575
|
+
#
|
2576
|
+
# resp = client.delete_authentication_profile({
|
2577
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
2578
|
+
# })
|
2579
|
+
#
|
2580
|
+
# @example Response structure
|
2581
|
+
#
|
2582
|
+
# resp.authentication_profile_name #=> String
|
2583
|
+
#
|
2584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteAuthenticationProfile AWS API Documentation
|
2585
|
+
#
|
2586
|
+
# @overload delete_authentication_profile(params = {})
|
2587
|
+
# @param [Hash] params ({})
|
2588
|
+
def delete_authentication_profile(params = {}, options = {})
|
2589
|
+
req = build_request(:delete_authentication_profile, params)
|
2590
|
+
req.send_request(options)
|
2591
|
+
end
|
2592
|
+
|
2485
2593
|
# Deletes a previously provisioned cluster without its final snapshot
|
2486
2594
|
# being created. A successful response from the web service indicates
|
2487
2595
|
# that the request was received correctly. Use DescribeClusters to
|
@@ -2983,6 +3091,51 @@ module Aws::Redshift
|
|
2983
3091
|
req.send_request(options)
|
2984
3092
|
end
|
2985
3093
|
|
3094
|
+
# Deletes a partner integration from a cluster. Data can still flow to
|
3095
|
+
# the cluster until the integration is deleted at the partner's
|
3096
|
+
# website.
|
3097
|
+
#
|
3098
|
+
# @option params [required, String] :account_id
|
3099
|
+
# The Region ID that owns the cluster.
|
3100
|
+
#
|
3101
|
+
# @option params [required, String] :cluster_identifier
|
3102
|
+
# The cluster identifier of the cluster that receives data from the
|
3103
|
+
# partner.
|
3104
|
+
#
|
3105
|
+
# @option params [required, String] :database_name
|
3106
|
+
# The name of the database that receives data from the partner.
|
3107
|
+
#
|
3108
|
+
# @option params [required, String] :partner_name
|
3109
|
+
# The name of the partner that is authorized to send data.
|
3110
|
+
#
|
3111
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3112
|
+
#
|
3113
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
3114
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
3115
|
+
#
|
3116
|
+
# @example Request syntax with placeholder values
|
3117
|
+
#
|
3118
|
+
# resp = client.delete_partner({
|
3119
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
3120
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
3121
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
3122
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
3123
|
+
# })
|
3124
|
+
#
|
3125
|
+
# @example Response structure
|
3126
|
+
#
|
3127
|
+
# resp.database_name #=> String
|
3128
|
+
# resp.partner_name #=> String
|
3129
|
+
#
|
3130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeletePartner AWS API Documentation
|
3131
|
+
#
|
3132
|
+
# @overload delete_partner(params = {})
|
3133
|
+
# @param [Hash] params ({})
|
3134
|
+
def delete_partner(params = {}, options = {})
|
3135
|
+
req = build_request(:delete_partner, params)
|
3136
|
+
req.send_request(options)
|
3137
|
+
end
|
3138
|
+
|
2986
3139
|
# Deletes a scheduled action.
|
2987
3140
|
#
|
2988
3141
|
# @option params [required, String] :scheduled_action_name
|
@@ -3131,6 +3284,37 @@ module Aws::Redshift
|
|
3131
3284
|
req.send_request(options)
|
3132
3285
|
end
|
3133
3286
|
|
3287
|
+
# Describes an authentication profile.
|
3288
|
+
#
|
3289
|
+
# @option params [String] :authentication_profile_name
|
3290
|
+
# The name of the authentication profile to describe. If not specified
|
3291
|
+
# then all authentication profiles owned by the account are listed.
|
3292
|
+
#
|
3293
|
+
# @return [Types::DescribeAuthenticationProfilesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3294
|
+
#
|
3295
|
+
# * {Types::DescribeAuthenticationProfilesResult#authentication_profiles #authentication_profiles} => Array<Types::AuthenticationProfile>
|
3296
|
+
#
|
3297
|
+
# @example Request syntax with placeholder values
|
3298
|
+
#
|
3299
|
+
# resp = client.describe_authentication_profiles({
|
3300
|
+
# authentication_profile_name: "AuthenticationProfileNameString",
|
3301
|
+
# })
|
3302
|
+
#
|
3303
|
+
# @example Response structure
|
3304
|
+
#
|
3305
|
+
# resp.authentication_profiles #=> Array
|
3306
|
+
# resp.authentication_profiles[0].authentication_profile_name #=> String
|
3307
|
+
# resp.authentication_profiles[0].authentication_profile_content #=> String
|
3308
|
+
#
|
3309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeAuthenticationProfiles AWS API Documentation
|
3310
|
+
#
|
3311
|
+
# @overload describe_authentication_profiles(params = {})
|
3312
|
+
# @param [Hash] params ({})
|
3313
|
+
def describe_authentication_profiles(params = {}, options = {})
|
3314
|
+
req = build_request(:describe_authentication_profiles, params)
|
3315
|
+
req.send_request(options)
|
3316
|
+
end
|
3317
|
+
|
3134
3318
|
# Returns an array of `ClusterDbRevision` objects.
|
3135
3319
|
#
|
3136
3320
|
# @option params [String] :cluster_identifier
|
@@ -3244,10 +3428,10 @@ module Aws::Redshift
|
|
3244
3428
|
# An optional parameter that specifies the starting point to return a
|
3245
3429
|
# set of response records. When the results of a
|
3246
3430
|
# DescribeClusterParameterGroups request exceed the value specified in
|
3247
|
-
# `MaxRecords`,
|
3248
|
-
# response. You can retrieve the next set of response
|
3249
|
-
# providing the returned marker value in the `Marker`
|
3250
|
-
# retrying the request.
|
3431
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3432
|
+
# field of the response. You can retrieve the next set of response
|
3433
|
+
# records by providing the returned marker value in the `Marker`
|
3434
|
+
# parameter and retrying the request.
|
3251
3435
|
#
|
3252
3436
|
# @option params [Array<String>] :tag_keys
|
3253
3437
|
# A tag key or keys for which you want to return all matching cluster
|
@@ -3349,10 +3533,10 @@ module Aws::Redshift
|
|
3349
3533
|
# An optional parameter that specifies the starting point to return a
|
3350
3534
|
# set of response records. When the results of a
|
3351
3535
|
# DescribeClusterParameters request exceed the value specified in
|
3352
|
-
# `MaxRecords`,
|
3353
|
-
# response. You can retrieve the next set of response
|
3354
|
-
# providing the returned marker value in the `Marker`
|
3355
|
-
# retrying the request.
|
3536
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3537
|
+
# field of the response. You can retrieve the next set of response
|
3538
|
+
# records by providing the returned marker value in the `Marker`
|
3539
|
+
# parameter and retrying the request.
|
3356
3540
|
#
|
3357
3541
|
# @return [Types::ClusterParameterGroupDetails] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3358
3542
|
#
|
@@ -3438,10 +3622,10 @@ module Aws::Redshift
|
|
3438
3622
|
# An optional parameter that specifies the starting point to return a
|
3439
3623
|
# set of response records. When the results of a
|
3440
3624
|
# DescribeClusterSecurityGroups request exceed the value specified in
|
3441
|
-
# `MaxRecords`,
|
3442
|
-
# response. You can retrieve the next set of response
|
3443
|
-
# providing the returned marker value in the `Marker`
|
3444
|
-
# retrying the request.
|
3625
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3626
|
+
# field of the response. You can retrieve the next set of response
|
3627
|
+
# records by providing the returned marker value in the `Marker`
|
3628
|
+
# parameter and retrying the request.
|
3445
3629
|
#
|
3446
3630
|
# Constraints: You can specify either the **ClusterSecurityGroupName**
|
3447
3631
|
# parameter or the **Marker** parameter, but not both.
|
@@ -3515,9 +3699,8 @@ module Aws::Redshift
|
|
3515
3699
|
|
3516
3700
|
# Returns one or more snapshot objects, which contain metadata about
|
3517
3701
|
# your cluster snapshots. By default, this operation returns information
|
3518
|
-
# about all snapshots of all clusters that are owned by
|
3519
|
-
#
|
3520
|
-
# AWS customer accounts.
|
3702
|
+
# about all snapshots of all clusters that are owned by your account. No
|
3703
|
+
# information is returned for snapshots owned by inactive accounts.
|
3521
3704
|
#
|
3522
3705
|
# If you specify both tag keys and tag values in the same request,
|
3523
3706
|
# Amazon Redshift returns all snapshots that match any combination of
|
@@ -3582,16 +3765,16 @@ module Aws::Redshift
|
|
3582
3765
|
# An optional parameter that specifies the starting point to return a
|
3583
3766
|
# set of response records. When the results of a
|
3584
3767
|
# DescribeClusterSnapshots request exceed the value specified in
|
3585
|
-
# `MaxRecords`,
|
3586
|
-
# response. You can retrieve the next set of response
|
3587
|
-
# providing the returned marker value in the `Marker`
|
3588
|
-
# retrying the request.
|
3768
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3769
|
+
# field of the response. You can retrieve the next set of response
|
3770
|
+
# records by providing the returned marker value in the `Marker`
|
3771
|
+
# parameter and retrying the request.
|
3589
3772
|
#
|
3590
3773
|
# @option params [String] :owner_account
|
3591
|
-
# The
|
3592
|
-
#
|
3593
|
-
#
|
3594
|
-
#
|
3774
|
+
# The account used to create or copy the snapshot. Use this field to
|
3775
|
+
# filter the results to snapshots owned by a particular account. To
|
3776
|
+
# describe snapshots you own, either specify your account, or do not
|
3777
|
+
# specify the parameter.
|
3595
3778
|
#
|
3596
3779
|
# @option params [Array<String>] :tag_keys
|
3597
3780
|
# A tag key or keys for which you want to return all matching cluster
|
@@ -3723,7 +3906,7 @@ module Aws::Redshift
|
|
3723
3906
|
# Returns one or more cluster subnet group objects, which contain
|
3724
3907
|
# metadata about your cluster subnet groups. By default, this operation
|
3725
3908
|
# returns information about all cluster subnet groups that are defined
|
3726
|
-
# in
|
3909
|
+
# in your account.
|
3727
3910
|
#
|
3728
3911
|
# If you specify both tag keys and tag values in the same request,
|
3729
3912
|
# Amazon Redshift returns all subnet groups that match any combination
|
@@ -3754,10 +3937,10 @@ module Aws::Redshift
|
|
3754
3937
|
# An optional parameter that specifies the starting point to return a
|
3755
3938
|
# set of response records. When the results of a
|
3756
3939
|
# DescribeClusterSubnetGroups request exceed the value specified in
|
3757
|
-
# `MaxRecords`,
|
3758
|
-
# response. You can retrieve the next set of response
|
3759
|
-
# providing the returned marker value in the `Marker`
|
3760
|
-
# retrying the request.
|
3940
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
3941
|
+
# field of the response. You can retrieve the next set of response
|
3942
|
+
# records by providing the returned marker value in the `Marker`
|
3943
|
+
# parameter and retrying the request.
|
3761
3944
|
#
|
3762
3945
|
# @option params [Array<String>] :tag_keys
|
3763
3946
|
# A tag key or keys for which you want to return all matching cluster
|
@@ -3915,10 +4098,11 @@ module Aws::Redshift
|
|
3915
4098
|
# @option params [String] :marker
|
3916
4099
|
# An optional parameter that specifies the starting point to return a
|
3917
4100
|
# set of response records. When the results of a DescribeClusterVersions
|
3918
|
-
# request exceed the value specified in `MaxRecords`,
|
3919
|
-
# value in the `Marker` field of the response. You
|
3920
|
-
# set of response records by providing the
|
3921
|
-
# `Marker` parameter and retrying the
|
4101
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4102
|
+
# Services returns a value in the `Marker` field of the response. You
|
4103
|
+
# can retrieve the next set of response records by providing the
|
4104
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4105
|
+
# request.
|
3922
4106
|
#
|
3923
4107
|
# @return [Types::ClusterVersionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3924
4108
|
#
|
@@ -3994,10 +4178,11 @@ module Aws::Redshift
|
|
3994
4178
|
# @option params [String] :marker
|
3995
4179
|
# An optional parameter that specifies the starting point to return a
|
3996
4180
|
# set of response records. When the results of a DescribeClusters
|
3997
|
-
# request exceed the value specified in `MaxRecords`,
|
3998
|
-
# value in the `Marker` field of the response. You
|
3999
|
-
# set of response records by providing the
|
4000
|
-
# `Marker` parameter and retrying the
|
4181
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
4182
|
+
# Services returns a value in the `Marker` field of the response. You
|
4183
|
+
# can retrieve the next set of response records by providing the
|
4184
|
+
# returned marker value in the `Marker` parameter and retrying the
|
4185
|
+
# request.
|
4001
4186
|
#
|
4002
4187
|
# Constraints: You can specify either the **ClusterIdentifier**
|
4003
4188
|
# parameter or the **Marker** parameter, but not both.
|
@@ -4194,10 +4379,10 @@ module Aws::Redshift
|
|
4194
4379
|
# An optional parameter that specifies the starting point to return a
|
4195
4380
|
# set of response records. When the results of a
|
4196
4381
|
# DescribeDefaultClusterParameters request exceed the value specified in
|
4197
|
-
# `MaxRecords`,
|
4198
|
-
# response. You can retrieve the next set of response
|
4199
|
-
# providing the returned marker value in the `Marker`
|
4200
|
-
# retrying the request.
|
4382
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4383
|
+
# field of the response. You can retrieve the next set of response
|
4384
|
+
# records by providing the returned marker value in the `Marker`
|
4385
|
+
# parameter and retrying the request.
|
4201
4386
|
#
|
4202
4387
|
# @return [Types::DescribeDefaultClusterParametersResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4203
4388
|
#
|
@@ -4243,7 +4428,7 @@ module Aws::Redshift
|
|
4243
4428
|
# The cluster identifier associated with the described endpoint.
|
4244
4429
|
#
|
4245
4430
|
# @option params [String] :resource_owner
|
4246
|
-
# The
|
4431
|
+
# The account ID of the owner of the cluster.
|
4247
4432
|
#
|
4248
4433
|
# @option params [String] :endpoint_name
|
4249
4434
|
# The name of the endpoint to be described.
|
@@ -4252,16 +4437,24 @@ module Aws::Redshift
|
|
4252
4437
|
# The virtual private cloud (VPC) identifier with access to the cluster.
|
4253
4438
|
#
|
4254
4439
|
# @option params [Integer] :max_records
|
4255
|
-
#
|
4440
|
+
# The maximum number of records to include in the response. If more
|
4441
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4442
|
+
# token called a `Marker` is included in the response so that the
|
4443
|
+
# remaining results can be retrieved.
|
4256
4444
|
#
|
4257
4445
|
# @option params [String] :marker
|
4258
|
-
#
|
4446
|
+
# An optional pagination token provided by a previous
|
4447
|
+
# `DescribeEndpointAccess` request. If this parameter is specified, the
|
4448
|
+
# response includes only records beyond the marker, up to the value
|
4449
|
+
# specified by the `MaxRecords` parameter.
|
4259
4450
|
#
|
4260
4451
|
# @return [Types::EndpointAccessList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4261
4452
|
#
|
4262
4453
|
# * {Types::EndpointAccessList#endpoint_access_list #endpoint_access_list} => Array<Types::EndpointAccess>
|
4263
4454
|
# * {Types::EndpointAccessList#marker #marker} => String
|
4264
4455
|
#
|
4456
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4457
|
+
#
|
4265
4458
|
# @example Request syntax with placeholder values
|
4266
4459
|
#
|
4267
4460
|
# resp = client.describe_endpoint_access({
|
@@ -4311,8 +4504,8 @@ module Aws::Redshift
|
|
4311
4504
|
# The cluster identifier of the cluster to access.
|
4312
4505
|
#
|
4313
4506
|
# @option params [String] :account
|
4314
|
-
# The
|
4315
|
-
#
|
4507
|
+
# The Aaccount ID of either the cluster owner (grantor) or grantee. If
|
4508
|
+
# `Grantee` parameter is true, then the `Account` value is of the
|
4316
4509
|
# grantor.
|
4317
4510
|
#
|
4318
4511
|
# @option params [Boolean] :grantee
|
@@ -4322,16 +4515,24 @@ module Aws::Redshift
|
|
4322
4515
|
# authorization from a grantor point of view.
|
4323
4516
|
#
|
4324
4517
|
# @option params [Integer] :max_records
|
4325
|
-
#
|
4518
|
+
# The maximum number of records to include in the response. If more
|
4519
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
4520
|
+
# token called a `Marker` is included in the response so that the
|
4521
|
+
# remaining results can be retrieved.
|
4326
4522
|
#
|
4327
4523
|
# @option params [String] :marker
|
4328
|
-
#
|
4524
|
+
# An optional pagination token provided by a previous
|
4525
|
+
# `DescribeEndpointAuthorization` request. If this parameter is
|
4526
|
+
# specified, the response includes only records beyond the marker, up to
|
4527
|
+
# the value specified by the `MaxRecords` parameter.
|
4329
4528
|
#
|
4330
4529
|
# @return [Types::EndpointAuthorizationList] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4331
4530
|
#
|
4332
4531
|
# * {Types::EndpointAuthorizationList#endpoint_authorization_list #endpoint_authorization_list} => Array<Types::EndpointAuthorization>
|
4333
4532
|
# * {Types::EndpointAuthorizationList#marker #marker} => String
|
4334
4533
|
#
|
4534
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4535
|
+
#
|
4335
4536
|
# @example Request syntax with placeholder values
|
4336
4537
|
#
|
4337
4538
|
# resp = client.describe_endpoint_authorization({
|
@@ -4445,10 +4646,10 @@ module Aws::Redshift
|
|
4445
4646
|
# An optional parameter that specifies the starting point to return a
|
4446
4647
|
# set of response records. When the results of a
|
4447
4648
|
# DescribeEventSubscriptions request exceed the value specified in
|
4448
|
-
# `MaxRecords`,
|
4449
|
-
# response. You can retrieve the next set of response
|
4450
|
-
# providing the returned marker value in the `Marker`
|
4451
|
-
# retrying the request.
|
4649
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4650
|
+
# field of the response. You can retrieve the next set of response
|
4651
|
+
# records by providing the returned marker value in the `Marker`
|
4652
|
+
# parameter and retrying the request.
|
4452
4653
|
#
|
4453
4654
|
# @option params [Array<String>] :tag_keys
|
4454
4655
|
# A tag key or keys for which you want to return all matching event
|
@@ -4603,10 +4804,10 @@ module Aws::Redshift
|
|
4603
4804
|
# @option params [String] :marker
|
4604
4805
|
# An optional parameter that specifies the starting point to return a
|
4605
4806
|
# set of response records. When the results of a DescribeEvents request
|
4606
|
-
# exceed the value specified in `MaxRecords`,
|
4607
|
-
# `Marker` field of the response. You can
|
4608
|
-
# response records by providing the returned
|
4609
|
-
# `Marker` parameter and retrying the request.
|
4807
|
+
# exceed the value specified in `MaxRecords`, Amazon Web Services
|
4808
|
+
# returns a value in the `Marker` field of the response. You can
|
4809
|
+
# retrieve the next set of response records by providing the returned
|
4810
|
+
# marker value in the `Marker` parameter and retrying the request.
|
4610
4811
|
#
|
4611
4812
|
# @return [Types::EventsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4612
4813
|
#
|
@@ -4651,7 +4852,7 @@ module Aws::Redshift
|
|
4651
4852
|
|
4652
4853
|
# Returns information about the specified HSM client certificate. If no
|
4653
4854
|
# certificate ID is specified, returns information about all the HSM
|
4654
|
-
# certificates owned by your
|
4855
|
+
# certificates owned by your account.
|
4655
4856
|
#
|
4656
4857
|
# If you specify both tag keys and tag values in the same request,
|
4657
4858
|
# Amazon Redshift returns all HSM client certificates that match any
|
@@ -4667,7 +4868,7 @@ module Aws::Redshift
|
|
4667
4868
|
# @option params [String] :hsm_client_certificate_identifier
|
4668
4869
|
# The identifier of a specific HSM client certificate for which you want
|
4669
4870
|
# information. If no identifier is specified, information is returned
|
4670
|
-
# for all HSM client certificates owned by your
|
4871
|
+
# for all HSM client certificates owned by your account.
|
4671
4872
|
#
|
4672
4873
|
# @option params [Integer] :max_records
|
4673
4874
|
# The maximum number of response records to return in each call. If the
|
@@ -4684,10 +4885,10 @@ module Aws::Redshift
|
|
4684
4885
|
# An optional parameter that specifies the starting point to return a
|
4685
4886
|
# set of response records. When the results of a
|
4686
4887
|
# DescribeHsmClientCertificates request exceed the value specified in
|
4687
|
-
# `MaxRecords`,
|
4688
|
-
# response. You can retrieve the next set of response
|
4689
|
-
# providing the returned marker value in the `Marker`
|
4690
|
-
# retrying the request.
|
4888
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4889
|
+
# field of the response. You can retrieve the next set of response
|
4890
|
+
# records by providing the returned marker value in the `Marker`
|
4891
|
+
# parameter and retrying the request.
|
4691
4892
|
#
|
4692
4893
|
# @option params [Array<String>] :tag_keys
|
4693
4894
|
# A tag key or keys for which you want to return all matching HSM client
|
@@ -4745,8 +4946,7 @@ module Aws::Redshift
|
|
4745
4946
|
|
4746
4947
|
# Returns information about the specified Amazon Redshift HSM
|
4747
4948
|
# configuration. If no configuration ID is specified, returns
|
4748
|
-
# information about all the HSM configurations owned by your
|
4749
|
-
# customer account.
|
4949
|
+
# information about all the HSM configurations owned by your account.
|
4750
4950
|
#
|
4751
4951
|
# If you specify both tag keys and tag values in the same request,
|
4752
4952
|
# Amazon Redshift returns all HSM connections that match any combination
|
@@ -4762,7 +4962,7 @@ module Aws::Redshift
|
|
4762
4962
|
# @option params [String] :hsm_configuration_identifier
|
4763
4963
|
# The identifier of a specific Amazon Redshift HSM configuration to be
|
4764
4964
|
# described. If no identifier is specified, information is returned for
|
4765
|
-
# all HSM configurations owned by your
|
4965
|
+
# all HSM configurations owned by your account.
|
4766
4966
|
#
|
4767
4967
|
# @option params [Integer] :max_records
|
4768
4968
|
# The maximum number of response records to return in each call. If the
|
@@ -4779,10 +4979,10 @@ module Aws::Redshift
|
|
4779
4979
|
# An optional parameter that specifies the starting point to return a
|
4780
4980
|
# set of response records. When the results of a
|
4781
4981
|
# DescribeHsmConfigurations request exceed the value specified in
|
4782
|
-
# `MaxRecords`,
|
4783
|
-
# response. You can retrieve the next set of response
|
4784
|
-
# providing the returned marker value in the `Marker`
|
4785
|
-
# retrying the request.
|
4982
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
4983
|
+
# field of the response. You can retrieve the next set of response
|
4984
|
+
# records by providing the returned marker value in the `Marker`
|
4985
|
+
# parameter and retrying the request.
|
4786
4986
|
#
|
4787
4987
|
# @option params [Array<String>] :tag_keys
|
4788
4988
|
# A tag key or keys for which you want to return all matching HSM
|
@@ -4901,9 +5101,8 @@ module Aws::Redshift
|
|
4901
5101
|
# configurations.
|
4902
5102
|
#
|
4903
5103
|
# @option params [String] :owner_account
|
4904
|
-
# The
|
4905
|
-
#
|
4906
|
-
# the snapshot.
|
5104
|
+
# The account used to create or copy the snapshot. Required if you are
|
5105
|
+
# restoring a snapshot you do not own, optional if you own the snapshot.
|
4907
5106
|
#
|
4908
5107
|
# @option params [Array<Types::NodeConfigurationOptionsFilter>] :filters
|
4909
5108
|
# A set of name, operator, and value items to filter the results.
|
@@ -4912,10 +5111,10 @@ module Aws::Redshift
|
|
4912
5111
|
# An optional parameter that specifies the starting point to return a
|
4913
5112
|
# set of response records. When the results of a
|
4914
5113
|
# DescribeNodeConfigurationOptions request exceed the value specified in
|
4915
|
-
# `MaxRecords`,
|
4916
|
-
# response. You can retrieve the next set of response
|
4917
|
-
# providing the returned marker value in the `Marker`
|
4918
|
-
# retrying the request.
|
5114
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5115
|
+
# field of the response. You can retrieve the next set of response
|
5116
|
+
# records by providing the returned marker value in the `Marker`
|
5117
|
+
# parameter and retrying the request.
|
4919
5118
|
#
|
4920
5119
|
# @option params [Integer] :max_records
|
4921
5120
|
# The maximum number of response records to return in each call. If the
|
@@ -4973,12 +5172,12 @@ module Aws::Redshift
|
|
4973
5172
|
|
4974
5173
|
# Returns a list of orderable cluster options. Before you create a new
|
4975
5174
|
# cluster you can use this operation to find what options are available,
|
4976
|
-
# such as the EC2 Availability Zones (AZ) in the specific
|
4977
|
-
#
|
4978
|
-
#
|
4979
|
-
#
|
4980
|
-
#
|
4981
|
-
#
|
5175
|
+
# such as the EC2 Availability Zones (AZ) in the specific Region that
|
5176
|
+
# you can specify, and the node types you can request. The node types
|
5177
|
+
# differ by available storage, memory, CPU and price. With the cost
|
5178
|
+
# involved you might want to obtain a list of cluster options in the
|
5179
|
+
# specific region and specify values when creating a cluster. For more
|
5180
|
+
# information about managing clusters, go to [Amazon Redshift
|
4982
5181
|
# Clusters][1] in the *Amazon Redshift Cluster Management Guide*.
|
4983
5182
|
#
|
4984
5183
|
#
|
@@ -5013,10 +5212,10 @@ module Aws::Redshift
|
|
5013
5212
|
# An optional parameter that specifies the starting point to return a
|
5014
5213
|
# set of response records. When the results of a
|
5015
5214
|
# DescribeOrderableClusterOptions request exceed the value specified in
|
5016
|
-
# `MaxRecords`,
|
5017
|
-
# response. You can retrieve the next set of response
|
5018
|
-
# providing the returned marker value in the `Marker`
|
5019
|
-
# retrying the request.
|
5215
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5216
|
+
# field of the response. You can retrieve the next set of response
|
5217
|
+
# records by providing the returned marker value in the `Marker`
|
5218
|
+
# parameter and retrying the request.
|
5020
5219
|
#
|
5021
5220
|
# @return [Types::OrderableClusterOptionsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5022
5221
|
#
|
@@ -5055,6 +5254,57 @@ module Aws::Redshift
|
|
5055
5254
|
req.send_request(options)
|
5056
5255
|
end
|
5057
5256
|
|
5257
|
+
# Returns information about the partner integrations defined for a
|
5258
|
+
# cluster.
|
5259
|
+
#
|
5260
|
+
# @option params [required, String] :account_id
|
5261
|
+
# The Region ID that owns the cluster.
|
5262
|
+
#
|
5263
|
+
# @option params [required, String] :cluster_identifier
|
5264
|
+
# The cluster identifier of the cluster whose partner integration is
|
5265
|
+
# being described.
|
5266
|
+
#
|
5267
|
+
# @option params [String] :database_name
|
5268
|
+
# The name of the database whose partner integration is being described.
|
5269
|
+
# If database name is not specified, then all databases in the cluster
|
5270
|
+
# are described.
|
5271
|
+
#
|
5272
|
+
# @option params [String] :partner_name
|
5273
|
+
# The name of the partner that is being described. If partner name is
|
5274
|
+
# not specified, then all partner integrations are described.
|
5275
|
+
#
|
5276
|
+
# @return [Types::DescribePartnersOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5277
|
+
#
|
5278
|
+
# * {Types::DescribePartnersOutputMessage#partner_integration_info_list #partner_integration_info_list} => Array<Types::PartnerIntegrationInfo>
|
5279
|
+
#
|
5280
|
+
# @example Request syntax with placeholder values
|
5281
|
+
#
|
5282
|
+
# resp = client.describe_partners({
|
5283
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
5284
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
5285
|
+
# database_name: "PartnerIntegrationDatabaseName",
|
5286
|
+
# partner_name: "PartnerIntegrationPartnerName",
|
5287
|
+
# })
|
5288
|
+
#
|
5289
|
+
# @example Response structure
|
5290
|
+
#
|
5291
|
+
# resp.partner_integration_info_list #=> Array
|
5292
|
+
# resp.partner_integration_info_list[0].database_name #=> String
|
5293
|
+
# resp.partner_integration_info_list[0].partner_name #=> String
|
5294
|
+
# resp.partner_integration_info_list[0].status #=> String, one of "Active", "Inactive", "RuntimeFailure", "ConnectionFailure"
|
5295
|
+
# resp.partner_integration_info_list[0].status_message #=> String
|
5296
|
+
# resp.partner_integration_info_list[0].created_at #=> Time
|
5297
|
+
# resp.partner_integration_info_list[0].updated_at #=> Time
|
5298
|
+
#
|
5299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribePartners AWS API Documentation
|
5300
|
+
#
|
5301
|
+
# @overload describe_partners(params = {})
|
5302
|
+
# @param [Hash] params ({})
|
5303
|
+
def describe_partners(params = {}, options = {})
|
5304
|
+
req = build_request(:describe_partners, params)
|
5305
|
+
req.send_request(options)
|
5306
|
+
end
|
5307
|
+
|
5058
5308
|
# Returns a list of the available reserved node offerings by Amazon
|
5059
5309
|
# Redshift with their descriptions including the node type, the fixed
|
5060
5310
|
# and recurring costs of reserving the node and duration the node will
|
@@ -5088,10 +5338,10 @@ module Aws::Redshift
|
|
5088
5338
|
# An optional parameter that specifies the starting point to return a
|
5089
5339
|
# set of response records. When the results of a
|
5090
5340
|
# DescribeReservedNodeOfferings request exceed the value specified in
|
5091
|
-
# `MaxRecords`,
|
5092
|
-
# response. You can retrieve the next set of response
|
5093
|
-
# providing the returned marker value in the `Marker`
|
5094
|
-
# retrying the request.
|
5341
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5342
|
+
# field of the response. You can retrieve the next set of response
|
5343
|
+
# records by providing the returned marker value in the `Marker`
|
5344
|
+
# parameter and retrying the request.
|
5095
5345
|
#
|
5096
5346
|
# @return [Types::ReservedNodeOfferingsMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5097
5347
|
#
|
@@ -5152,10 +5402,11 @@ module Aws::Redshift
|
|
5152
5402
|
# @option params [String] :marker
|
5153
5403
|
# An optional parameter that specifies the starting point to return a
|
5154
5404
|
# set of response records. When the results of a DescribeReservedNodes
|
5155
|
-
# request exceed the value specified in `MaxRecords`,
|
5156
|
-
# value in the `Marker` field of the response. You
|
5157
|
-
# set of response records by providing the
|
5158
|
-
# `Marker` parameter and retrying the
|
5405
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
5406
|
+
# Services returns a value in the `Marker` field of the response. You
|
5407
|
+
# can retrieve the next set of response records by providing the
|
5408
|
+
# returned marker value in the `Marker` parameter and retrying the
|
5409
|
+
# request.
|
5159
5410
|
#
|
5160
5411
|
# @return [Types::ReservedNodesMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5161
5412
|
#
|
@@ -5214,8 +5465,8 @@ module Aws::Redshift
|
|
5214
5465
|
# The unique identifier of a cluster whose resize progress you are
|
5215
5466
|
# requesting. This parameter is case-sensitive.
|
5216
5467
|
#
|
5217
|
-
# By default, resize operations for all clusters defined for an
|
5218
|
-
#
|
5468
|
+
# By default, resize operations for all clusters defined for an account
|
5469
|
+
# are returned.
|
5219
5470
|
#
|
5220
5471
|
# @return [Types::ResizeProgressMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5221
5472
|
#
|
@@ -5302,10 +5553,10 @@ module Aws::Redshift
|
|
5302
5553
|
# An optional parameter that specifies the starting point to return a
|
5303
5554
|
# set of response records. When the results of a
|
5304
5555
|
# DescribeScheduledActions request exceed the value specified in
|
5305
|
-
# `MaxRecords`,
|
5306
|
-
# response. You can retrieve the next set of response
|
5307
|
-
# providing the returned marker value in the `Marker`
|
5308
|
-
# retrying the request.
|
5556
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5557
|
+
# field of the response. You can retrieve the next set of response
|
5558
|
+
# records by providing the returned marker value in the `Marker`
|
5559
|
+
# parameter and retrying the request.
|
5309
5560
|
#
|
5310
5561
|
# @option params [Integer] :max_records
|
5311
5562
|
# The maximum number of response records to return in each call. If the
|
@@ -5373,7 +5624,7 @@ module Aws::Redshift
|
|
5373
5624
|
req.send_request(options)
|
5374
5625
|
end
|
5375
5626
|
|
5376
|
-
# Returns a list of snapshot copy grants owned by the
|
5627
|
+
# Returns a list of snapshot copy grants owned by the account in the
|
5377
5628
|
# destination region.
|
5378
5629
|
#
|
5379
5630
|
# For more information about managing snapshot copy grants, go to
|
@@ -5402,10 +5653,10 @@ module Aws::Redshift
|
|
5402
5653
|
# An optional parameter that specifies the starting point to return a
|
5403
5654
|
# set of response records. When the results of a
|
5404
5655
|
# `DescribeSnapshotCopyGrant` request exceed the value specified in
|
5405
|
-
# `MaxRecords`,
|
5406
|
-
# response. You can retrieve the next set of response
|
5407
|
-
# providing the returned marker value in the `Marker`
|
5408
|
-
# retrying the request.
|
5656
|
+
# `MaxRecords`, Amazon Web Services returns a value in the `Marker`
|
5657
|
+
# field of the response. You can retrieve the next set of response
|
5658
|
+
# records by providing the returned marker value in the `Marker`
|
5659
|
+
# parameter and retrying the request.
|
5409
5660
|
#
|
5410
5661
|
# Constraints: You can specify either the **SnapshotCopyGrantName**
|
5411
5662
|
# parameter or the **Marker** parameter, but not both.
|
@@ -5803,10 +6054,11 @@ module Aws::Redshift
|
|
5803
6054
|
# @option params [String] :marker
|
5804
6055
|
# An optional parameter that specifies the starting point to return a
|
5805
6056
|
# set of response records. When the results of a DescribeUsageLimits
|
5806
|
-
# request exceed the value specified in `MaxRecords`,
|
5807
|
-
# value in the `Marker` field of the response. You
|
5808
|
-
# set of response records by providing the
|
5809
|
-
# `Marker` parameter and retrying the
|
6057
|
+
# request exceed the value specified in `MaxRecords`, Amazon Web
|
6058
|
+
# Services returns a value in the `Marker` field of the response. You
|
6059
|
+
# can retrieve the next set of response records by providing the
|
6060
|
+
# returned marker value in the `Marker` parameter and retrying the
|
6061
|
+
# request.
|
5810
6062
|
#
|
5811
6063
|
# @option params [Array<String>] :tag_keys
|
5812
6064
|
# A tag key or keys for which you want to return all matching usage
|
@@ -5914,9 +6166,9 @@ module Aws::Redshift
|
|
5914
6166
|
# region for a specified cluster.
|
5915
6167
|
#
|
5916
6168
|
# If your cluster and its snapshots are encrypted using a customer
|
5917
|
-
# master key (CMK) from
|
5918
|
-
# the grant that grants Amazon
|
5919
|
-
# destination region.
|
6169
|
+
# master key (CMK) from Key Management Service, use
|
6170
|
+
# DeleteSnapshotCopyGrant to delete the grant that grants Amazon
|
6171
|
+
# Redshift permission to the CMK in the destination region.
|
5920
6172
|
#
|
5921
6173
|
# @option params [required, String] :cluster_identifier
|
5922
6174
|
# The unique identifier of the source cluster that you want to disable
|
@@ -6139,11 +6391,11 @@ module Aws::Redshift
|
|
6139
6391
|
# not already have cross-region snapshot copy enabled.
|
6140
6392
|
#
|
6141
6393
|
# @option params [required, String] :destination_region
|
6142
|
-
# The destination
|
6394
|
+
# The destination Region that you want to copy snapshots to.
|
6143
6395
|
#
|
6144
|
-
# Constraints: Must be the name of a valid
|
6145
|
-
#
|
6146
|
-
#
|
6396
|
+
# Constraints: Must be the name of a valid Region. For more information,
|
6397
|
+
# see [Regions and Endpoints][1] in the Amazon Web Services General
|
6398
|
+
# Reference.
|
6147
6399
|
#
|
6148
6400
|
#
|
6149
6401
|
#
|
@@ -6158,13 +6410,14 @@ module Aws::Redshift
|
|
6158
6410
|
# Constraints: Must be at least 1 and no more than 35.
|
6159
6411
|
#
|
6160
6412
|
# @option params [String] :snapshot_copy_grant_name
|
6161
|
-
# The name of the snapshot copy grant to use when snapshots of an
|
6162
|
-
# KMS-encrypted cluster are copied to the destination
|
6413
|
+
# The name of the snapshot copy grant to use when snapshots of an Amazon
|
6414
|
+
# Web Services KMS-encrypted cluster are copied to the destination
|
6415
|
+
# region.
|
6163
6416
|
#
|
6164
6417
|
# @option params [Integer] :manual_snapshot_retention_period
|
6165
6418
|
# The number of days to retain newly copied snapshots in the destination
|
6166
|
-
#
|
6167
|
-
#
|
6419
|
+
# Region after they are copied from the source Region. If the value is
|
6420
|
+
# -1, the manual snapshot is retained indefinitely.
|
6168
6421
|
#
|
6169
6422
|
# The value must be either -1 or an integer between 1 and 3,653.
|
6170
6423
|
#
|
@@ -6313,7 +6566,7 @@ module Aws::Redshift
|
|
6313
6566
|
# Authentication to Generate Database User Credentials][1] in the Amazon
|
6314
6567
|
# Redshift Cluster Management Guide.
|
6315
6568
|
#
|
6316
|
-
# The
|
6569
|
+
# The Identity and Access Management (IAM) user or role that runs
|
6317
6570
|
# GetClusterCredentials must have an IAM policy attached that allows
|
6318
6571
|
# access to all necessary actions and resources. For more information
|
6319
6572
|
# about permissions, see [Resource Policies for
|
@@ -6526,7 +6779,7 @@ module Aws::Redshift
|
|
6526
6779
|
# The new value of AQUA configuration status. Possible values include
|
6527
6780
|
# the following.
|
6528
6781
|
#
|
6529
|
-
# * enabled - Use AQUA if it is available for the current
|
6782
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
6530
6783
|
# Amazon Redshift node type.
|
6531
6784
|
#
|
6532
6785
|
# * disabled - Don't use AQUA.
|
@@ -6558,6 +6811,42 @@ module Aws::Redshift
|
|
6558
6811
|
req.send_request(options)
|
6559
6812
|
end
|
6560
6813
|
|
6814
|
+
# Modifies an authentication profile.
|
6815
|
+
#
|
6816
|
+
# @option params [required, String] :authentication_profile_name
|
6817
|
+
# The name of the authentication profile to replace.
|
6818
|
+
#
|
6819
|
+
# @option params [required, String] :authentication_profile_content
|
6820
|
+
# The new content of the authentication profile in JSON format. The
|
6821
|
+
# maximum length of the JSON string is determined by a quota for your
|
6822
|
+
# account.
|
6823
|
+
#
|
6824
|
+
# @return [Types::ModifyAuthenticationProfileResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6825
|
+
#
|
6826
|
+
# * {Types::ModifyAuthenticationProfileResult#authentication_profile_name #authentication_profile_name} => String
|
6827
|
+
# * {Types::ModifyAuthenticationProfileResult#authentication_profile_content #authentication_profile_content} => String
|
6828
|
+
#
|
6829
|
+
# @example Request syntax with placeholder values
|
6830
|
+
#
|
6831
|
+
# resp = client.modify_authentication_profile({
|
6832
|
+
# authentication_profile_name: "AuthenticationProfileNameString", # required
|
6833
|
+
# authentication_profile_content: "String", # required
|
6834
|
+
# })
|
6835
|
+
#
|
6836
|
+
# @example Response structure
|
6837
|
+
#
|
6838
|
+
# resp.authentication_profile_name #=> String
|
6839
|
+
# resp.authentication_profile_content #=> String
|
6840
|
+
#
|
6841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyAuthenticationProfile AWS API Documentation
|
6842
|
+
#
|
6843
|
+
# @overload modify_authentication_profile(params = {})
|
6844
|
+
# @param [Hash] params ({})
|
6845
|
+
def modify_authentication_profile(params = {}, options = {})
|
6846
|
+
req = build_request(:modify_authentication_profile, params)
|
6847
|
+
req.send_request(options)
|
6848
|
+
end
|
6849
|
+
|
6561
6850
|
# Modifies the settings for a cluster.
|
6562
6851
|
#
|
6563
6852
|
# You can also change node type and the number of nodes to scale up or
|
@@ -6565,7 +6854,7 @@ module Aws::Redshift
|
|
6565
6854
|
# number of nodes and the node type even if one of the parameters does
|
6566
6855
|
# not change.
|
6567
6856
|
#
|
6568
|
-
# You can add another security or parameter group, or change the
|
6857
|
+
# You can add another security or parameter group, or change the admin
|
6569
6858
|
# user password. Resetting a cluster password or modifying the security
|
6570
6859
|
# groups associated with a cluster do not need a reboot. However,
|
6571
6860
|
# modifying a parameter group requires a reboot for parameters to take
|
@@ -6645,14 +6934,14 @@ module Aws::Redshift
|
|
6645
6934
|
# possible.
|
6646
6935
|
#
|
6647
6936
|
# @option params [String] :master_user_password
|
6648
|
-
# The new password for the cluster
|
6937
|
+
# The new password for the cluster admin user. This change is
|
6649
6938
|
# asynchronously applied as soon as possible. Between the time of the
|
6650
6939
|
# request and the completion of the request, the `MasterUserPassword`
|
6651
6940
|
# element exists in the `PendingModifiedValues` element of the operation
|
6652
6941
|
# response.
|
6653
6942
|
#
|
6654
6943
|
# <note markdown="1"> Operations never return the password, so this operation provides a way
|
6655
|
-
# to regain access to the
|
6944
|
+
# to regain access to the admin user account for a cluster if the
|
6656
6945
|
# password is lost.
|
6657
6946
|
#
|
6658
6947
|
# </note>
|
@@ -6772,7 +7061,7 @@ module Aws::Redshift
|
|
6772
7061
|
#
|
6773
7062
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
6774
7063
|
#
|
6775
|
-
# * Must be unique for all clusters within an
|
7064
|
+
# * Must be unique for all clusters within an account.
|
6776
7065
|
#
|
6777
7066
|
# Example: `examplecluster`
|
6778
7067
|
#
|
@@ -6825,8 +7114,8 @@ module Aws::Redshift
|
|
6825
7114
|
# If the value is not encrypted (false), then the cluster is decrypted.
|
6826
7115
|
#
|
6827
7116
|
# @option params [String] :kms_key_id
|
6828
|
-
# The
|
6829
|
-
#
|
7117
|
+
# The Key Management Service (KMS) key ID of the encryption key that you
|
7118
|
+
# want to use to encrypt data in the cluster.
|
6830
7119
|
#
|
6831
7120
|
# @option params [Boolean] :availability_zone_relocation
|
6832
7121
|
# The option to enable relocation for an Amazon Redshift cluster between
|
@@ -7137,8 +7426,9 @@ module Aws::Redshift
|
|
7137
7426
|
req.send_request(options)
|
7138
7427
|
end
|
7139
7428
|
|
7140
|
-
# Modifies the list of
|
7141
|
-
#
|
7429
|
+
# Modifies the list of Identity and Access Management (IAM) roles that
|
7430
|
+
# can be used by the cluster to access other Amazon Web Services
|
7431
|
+
# services.
|
7142
7432
|
#
|
7143
7433
|
# A cluster can have up to 10 IAM roles associated at any time.
|
7144
7434
|
#
|
@@ -7751,8 +8041,8 @@ module Aws::Redshift
|
|
7751
8041
|
# The type of source that will be generating the events. For example, if
|
7752
8042
|
# you want to be notified of events generated by a cluster, you would
|
7753
8043
|
# set this parameter to cluster. If this value is not specified, events
|
7754
|
-
# are returned for all Amazon Redshift objects in your
|
7755
|
-
#
|
8044
|
+
# are returned for all Amazon Redshift objects in your account. You must
|
8045
|
+
# specify a source type in order to specify source IDs.
|
7756
8046
|
#
|
7757
8047
|
# Valid values: cluster, cluster-parameter-group,
|
7758
8048
|
# cluster-security-group, cluster-snapshot, and scheduled-action.
|
@@ -7926,9 +8216,9 @@ module Aws::Redshift
|
|
7926
8216
|
req.send_request(options)
|
7927
8217
|
end
|
7928
8218
|
|
7929
|
-
# Modifies the number of days to retain snapshots in the destination
|
7930
|
-
# Region after they are copied from the source
|
7931
|
-
#
|
8219
|
+
# Modifies the number of days to retain snapshots in the destination
|
8220
|
+
# Region after they are copied from the source Region. By default, this
|
8221
|
+
# operation only changes the retention period of copied automated
|
7932
8222
|
# snapshots. The retention periods for both new and existing copied
|
7933
8223
|
# automated snapshots are updated with the new retention period. You can
|
7934
8224
|
# set the manual option to change only the retention periods of copied
|
@@ -7938,22 +8228,22 @@ module Aws::Redshift
|
|
7938
8228
|
# @option params [required, String] :cluster_identifier
|
7939
8229
|
# The unique identifier of the cluster for which you want to change the
|
7940
8230
|
# retention period for either automated or manual snapshots that are
|
7941
|
-
# copied to a destination
|
8231
|
+
# copied to a destination Region.
|
7942
8232
|
#
|
7943
8233
|
# Constraints: Must be the valid name of an existing cluster that has
|
7944
8234
|
# cross-region snapshot copy enabled.
|
7945
8235
|
#
|
7946
8236
|
# @option params [required, Integer] :retention_period
|
7947
8237
|
# The number of days to retain automated snapshots in the destination
|
7948
|
-
#
|
8238
|
+
# Region after they are copied from the source Region.
|
7949
8239
|
#
|
7950
8240
|
# By default, this only changes the retention period of copied automated
|
7951
8241
|
# snapshots.
|
7952
8242
|
#
|
7953
8243
|
# If you decrease the retention period for automated snapshots that are
|
7954
|
-
# copied to a destination
|
7955
|
-
#
|
7956
|
-
#
|
8244
|
+
# copied to a destination Region, Amazon Redshift deletes any existing
|
8245
|
+
# automated snapshots that were copied to the destination Region and
|
8246
|
+
# that fall outside of the new retention period.
|
7957
8247
|
#
|
7958
8248
|
# Constraints: Must be at least 1 and no more than 35 for automated
|
7959
8249
|
# snapshots.
|
@@ -8832,7 +9122,7 @@ module Aws::Redshift
|
|
8832
9122
|
#
|
8833
9123
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
8834
9124
|
#
|
8835
|
-
# * Must be unique for all clusters within an
|
9125
|
+
# * Must be unique for all clusters within an account.
|
8836
9126
|
#
|
8837
9127
|
# @option params [required, String] :snapshot_identifier
|
8838
9128
|
# The name of the snapshot from which to create the new cluster. This
|
@@ -8878,9 +9168,8 @@ module Aws::Redshift
|
|
8878
9168
|
# If `true`, the cluster can be accessed from a public network.
|
8879
9169
|
#
|
8880
9170
|
# @option params [String] :owner_account
|
8881
|
-
# The
|
8882
|
-
#
|
8883
|
-
# the snapshot.
|
9171
|
+
# The account used to create or copy the snapshot. Required if you are
|
9172
|
+
# restoring a snapshot you do not own, optional if you own the snapshot.
|
8884
9173
|
#
|
8885
9174
|
# @option params [String] :hsm_client_certificate_identifier
|
8886
9175
|
# Specifies the name of the HSM client certificate the Amazon Redshift
|
@@ -8970,8 +9259,8 @@ module Aws::Redshift
|
|
8970
9259
|
# The value must be either -1 or an integer between 1 and 3,653.
|
8971
9260
|
#
|
8972
9261
|
# @option params [String] :kms_key_id
|
8973
|
-
# The
|
8974
|
-
#
|
9262
|
+
# The Key Management Service (KMS) key ID of the encryption key that you
|
9263
|
+
# want to use to encrypt data in the cluster that you restore from a
|
8975
9264
|
# shared snapshot.
|
8976
9265
|
#
|
8977
9266
|
# @option params [String] :node_type
|
@@ -9013,10 +9302,10 @@ module Aws::Redshift
|
|
9013
9302
|
# Reserved.
|
9014
9303
|
#
|
9015
9304
|
# @option params [Array<String>] :iam_roles
|
9016
|
-
# A list of
|
9017
|
-
#
|
9018
|
-
# IAM roles in their Amazon Resource Name (ARN) format. You
|
9019
|
-
# up to 10 IAM roles in a single request.
|
9305
|
+
# A list of Identity and Access Management (IAM) roles that can be used
|
9306
|
+
# by the cluster to access other Amazon Web Services services. You must
|
9307
|
+
# supply the IAM roles in their Amazon Resource Name (ARN) format. You
|
9308
|
+
# can supply up to 10 IAM roles in a single request.
|
9020
9309
|
#
|
9021
9310
|
# A cluster can have up to 10 IAM roles associated at any time.
|
9022
9311
|
#
|
@@ -9044,7 +9333,7 @@ module Aws::Redshift
|
|
9044
9333
|
# (Advanced Query Accelerator) after the cluster is restored. Possible
|
9045
9334
|
# values include the following.
|
9046
9335
|
#
|
9047
|
-
# * enabled - Use AQUA if it is available for the current
|
9336
|
+
# * enabled - Use AQUA if it is available for the current Region and
|
9048
9337
|
# Amazon Redshift node type.
|
9049
9338
|
#
|
9050
9339
|
# * disabled - Don't use AQUA.
|
@@ -9462,11 +9751,11 @@ module Aws::Redshift
|
|
9462
9751
|
# also be provided and `CIDRIP` cannot be provided.
|
9463
9752
|
#
|
9464
9753
|
# @option params [String] :ec2_security_group_owner_id
|
9465
|
-
# The
|
9466
|
-
#
|
9467
|
-
# acceptable value. If `EC2SecurityGroupOwnerId` is
|
9468
|
-
# `EC2SecurityGroupName` must also be provided. and `CIDRIP`
|
9469
|
-
# provided.
|
9754
|
+
# The account number of the owner of the security group specified in the
|
9755
|
+
# `EC2SecurityGroupName` parameter. The Amazon Web Services access key
|
9756
|
+
# ID is not an acceptable value. If `EC2SecurityGroupOwnerId` is
|
9757
|
+
# specified, `EC2SecurityGroupName` must also be provided. and `CIDRIP`
|
9758
|
+
# cannot be provided.
|
9470
9759
|
#
|
9471
9760
|
# Example: `111122223333`
|
9472
9761
|
#
|
@@ -9519,7 +9808,7 @@ module Aws::Redshift
|
|
9519
9808
|
# The cluster to revoke access from.
|
9520
9809
|
#
|
9521
9810
|
# @option params [String] :account
|
9522
|
-
# The
|
9811
|
+
# The account ID whose access is to be revoked.
|
9523
9812
|
#
|
9524
9813
|
# @option params [Array<String>] :vpc_ids
|
9525
9814
|
# The virtual private cloud (VPC) identifiers for which access is to be
|
@@ -9573,9 +9862,9 @@ module Aws::Redshift
|
|
9573
9862
|
req.send_request(options)
|
9574
9863
|
end
|
9575
9864
|
|
9576
|
-
# Removes the ability of the specified
|
9577
|
-
#
|
9578
|
-
#
|
9865
|
+
# Removes the ability of the specified account to restore the specified
|
9866
|
+
# snapshot. If the account is currently restoring the snapshot, the
|
9867
|
+
# restore will run to completion.
|
9579
9868
|
#
|
9580
9869
|
# For more information about working with snapshots, go to [Amazon
|
9581
9870
|
# Redshift Snapshots][1] in the *Amazon Redshift Cluster Management
|
@@ -9595,8 +9884,8 @@ module Aws::Redshift
|
|
9595
9884
|
# the cluster name.
|
9596
9885
|
#
|
9597
9886
|
# @option params [required, String] :account_with_restore_access
|
9598
|
-
# The identifier of the
|
9599
|
-
#
|
9887
|
+
# The identifier of the account that can no longer restore the specified
|
9888
|
+
# snapshot.
|
9600
9889
|
#
|
9601
9890
|
# @return [Types::RevokeSnapshotAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9602
9891
|
#
|
@@ -9800,6 +10089,58 @@ module Aws::Redshift
|
|
9800
10089
|
req.send_request(options)
|
9801
10090
|
end
|
9802
10091
|
|
10092
|
+
# Updates the status of a partner integration.
|
10093
|
+
#
|
10094
|
+
# @option params [required, String] :account_id
|
10095
|
+
# The Region ID that owns the cluster.
|
10096
|
+
#
|
10097
|
+
# @option params [required, String] :cluster_identifier
|
10098
|
+
# The cluster identifier of the cluster whose partner integration status
|
10099
|
+
# is being updated.
|
10100
|
+
#
|
10101
|
+
# @option params [required, String] :database_name
|
10102
|
+
# The name of the database whose partner integration status is being
|
10103
|
+
# updated.
|
10104
|
+
#
|
10105
|
+
# @option params [required, String] :partner_name
|
10106
|
+
# The name of the partner whose integration status is being updated.
|
10107
|
+
#
|
10108
|
+
# @option params [required, String] :status
|
10109
|
+
# The value of the updated status.
|
10110
|
+
#
|
10111
|
+
# @option params [String] :status_message
|
10112
|
+
# The status message provided by the partner.
|
10113
|
+
#
|
10114
|
+
# @return [Types::PartnerIntegrationOutputMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10115
|
+
#
|
10116
|
+
# * {Types::PartnerIntegrationOutputMessage#database_name #database_name} => String
|
10117
|
+
# * {Types::PartnerIntegrationOutputMessage#partner_name #partner_name} => String
|
10118
|
+
#
|
10119
|
+
# @example Request syntax with placeholder values
|
10120
|
+
#
|
10121
|
+
# resp = client.update_partner_status({
|
10122
|
+
# account_id: "PartnerIntegrationAccountId", # required
|
10123
|
+
# cluster_identifier: "PartnerIntegrationClusterIdentifier", # required
|
10124
|
+
# database_name: "PartnerIntegrationDatabaseName", # required
|
10125
|
+
# partner_name: "PartnerIntegrationPartnerName", # required
|
10126
|
+
# status: "Active", # required, accepts Active, Inactive, RuntimeFailure, ConnectionFailure
|
10127
|
+
# status_message: "PartnerIntegrationStatusMessage",
|
10128
|
+
# })
|
10129
|
+
#
|
10130
|
+
# @example Response structure
|
10131
|
+
#
|
10132
|
+
# resp.database_name #=> String
|
10133
|
+
# resp.partner_name #=> String
|
10134
|
+
#
|
10135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/UpdatePartnerStatus AWS API Documentation
|
10136
|
+
#
|
10137
|
+
# @overload update_partner_status(params = {})
|
10138
|
+
# @param [Hash] params ({})
|
10139
|
+
def update_partner_status(params = {}, options = {})
|
10140
|
+
req = build_request(:update_partner_status, params)
|
10141
|
+
req.send_request(options)
|
10142
|
+
end
|
10143
|
+
|
9803
10144
|
# @!endgroup
|
9804
10145
|
|
9805
10146
|
# @param params ({})
|
@@ -9813,7 +10154,7 @@ module Aws::Redshift
|
|
9813
10154
|
params: params,
|
9814
10155
|
config: config)
|
9815
10156
|
context[:gem_name] = 'aws-sdk-redshift'
|
9816
|
-
context[:gem_version] = '1.
|
10157
|
+
context[:gem_version] = '1.65.0'
|
9817
10158
|
Seahorse::Client::Request.new(handlers, context)
|
9818
10159
|
end
|
9819
10160
|
|