aws-sdk-redshift 1.68.0 → 1.72.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0aeb5a56bed1cf423cfb5aad928d91f66fb3fcbf0af1973a265adf5b67a81fd
4
- data.tar.gz: 6bae72ec5f85b8345318d30c3237c48cc7e7c1bf23c5cd5c305785fb6c3fc56a
3
+ metadata.gz: a659c0541ad3241a422293d5306e48251b6c5dfd142b112e1a489fd6b4d09861
4
+ data.tar.gz: 83a9a90481ceaf3ed86acd85f5ea9e8606966e8f2bde2c0eb44ef1f950a606db
5
5
  SHA512:
6
- metadata.gz: d6b661189fe41f20cdfd6a7043b03837ab101e3ccc02ec04b2ed0e7fa2da12aeeeb174fe33e3d1f4e4a464a1518345cd397e550181859b3d6fcabba14ebb653f
7
- data.tar.gz: afdeaae05e6f735633e2779be4882a8bc8c6fc42aca4eac80412880642d77a1a96a2978fa7d7ba4256fbb79a7632d5fb819e29f9f44a2e038d0524b45218ceaa
6
+ metadata.gz: f25fef7b3d5235d705ffad28efe32c333cce453e25d73c68575e337c6444c4d1fe8cf5989172bd6e18b8accf0901d9d08749e22d1c0d6130f0bf5a2425739ffc
7
+ data.tar.gz: e77699cf797f3a7022967a6f93a99997b19df2609befe87f6988182fdb5f9de6cf53e35f208fedd3bfdb16b29eee4915d29228b320ea39fb1f24198b6f587d73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2021-11-19)
5
+ ------------------
6
+
7
+ * Feature - Added support of default IAM role for CreateCluster, RestoreFromClusterSnapshot and ModifyClusterIamRoles APIs
8
+
9
+ 1.71.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.70.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.69.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.68.0 (2021-08-03)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.72.0
@@ -275,6 +275,15 @@ module Aws::Redshift
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -573,7 +582,7 @@ module Aws::Redshift
573
582
  #
574
583
  # @option params [required, String] :consumer_identifier
575
584
  # The identifier of the data consumer that is authorized to access the
576
- # datashare. This identifier is an AWS account ID.
585
+ # datashare. This identifier is an Amazon Web Services account ID.
577
586
  #
578
587
  # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
579
588
  #
@@ -1420,6 +1429,10 @@ module Aws::Redshift
1420
1429
  #
1421
1430
  # * auto - Amazon Redshift determines whether to use AQUA.
1422
1431
  #
1432
+ # @option params [String] :default_iam_role_arn
1433
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
1434
+ # default for the cluster when the cluster was created.
1435
+ #
1423
1436
  # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1424
1437
  #
1425
1438
  # * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
@@ -1464,6 +1477,7 @@ module Aws::Redshift
1464
1477
  # snapshot_schedule_identifier: "String",
1465
1478
  # availability_zone_relocation: false,
1466
1479
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
1480
+ # default_iam_role_arn: "String",
1467
1481
  # })
1468
1482
  #
1469
1483
  # @example Response structure
@@ -1576,6 +1590,7 @@ module Aws::Redshift
1576
1590
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
1577
1591
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
1578
1592
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
1593
+ # resp.cluster.default_iam_role_arn #=> String
1579
1594
  #
1580
1595
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCluster AWS API Documentation
1581
1596
  #
@@ -2679,7 +2694,8 @@ module Aws::Redshift
2679
2694
  #
2680
2695
  # @option params [required, String] :consumer_identifier
2681
2696
  # The identifier of the data consumer that is to have authorization
2682
- # removed from the datashare. This identifier is an AWS account ID.
2697
+ # removed from the datashare. This identifier is an Amazon Web Services
2698
+ # account ID.
2683
2699
  #
2684
2700
  # @return [Types::DataShare] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2685
2701
  #
@@ -2936,6 +2952,7 @@ module Aws::Redshift
2936
2952
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
2937
2953
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
2938
2954
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
2955
+ # resp.cluster.default_iam_role_arn #=> String
2939
2956
  #
2940
2957
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCluster AWS API Documentation
2941
2958
  #
@@ -4487,6 +4504,7 @@ module Aws::Redshift
4487
4504
  # resp.clusters[0].total_storage_capacity_in_mega_bytes #=> Integer
4488
4505
  # resp.clusters[0].aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
4489
4506
  # resp.clusters[0].aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
4507
+ # resp.clusters[0].default_iam_role_arn #=> String
4490
4508
  #
4491
4509
  #
4492
4510
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4520,10 +4538,11 @@ module Aws::Redshift
4520
4538
  # @option params [String] :marker
4521
4539
  # An optional parameter that specifies the starting point to return a
4522
4540
  # set of response records. When the results of a DescribeDataShares
4523
- # request exceed the value specified in `MaxRecords`, AWS returns a
4524
- # value in the `Marker` field of the response. You can retrieve the next
4525
- # set of response records by providing the returned marker value in the
4526
- # `Marker` parameter and retrying the request.
4541
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4542
+ # Services returns a value in the `Marker` field of the response. You
4543
+ # can retrieve the next set of response records by providing the
4544
+ # returned marker value in the `Marker` parameter and retrying the
4545
+ # request.
4527
4546
  #
4528
4547
  # @return [Types::DescribeDataSharesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4529
4548
  #
@@ -4583,10 +4602,10 @@ module Aws::Redshift
4583
4602
  # An optional parameter that specifies the starting point to return a
4584
4603
  # set of response records. When the results of a
4585
4604
  # DescribeDataSharesForConsumer request exceed the value specified in
4586
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4587
- # response. You can retrieve the next set of response records by
4588
- # providing the returned marker value in the `Marker` parameter and
4589
- # retrying the request.
4605
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4606
+ # field of the response. You can retrieve the next set of response
4607
+ # records by providing the returned marker value in the `Marker`
4608
+ # parameter and retrying the request.
4590
4609
  #
4591
4610
  # @return [Types::DescribeDataSharesForConsumerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4592
4611
  #
@@ -4647,10 +4666,10 @@ module Aws::Redshift
4647
4666
  # An optional parameter that specifies the starting point to return a
4648
4667
  # set of response records. When the results of a
4649
4668
  # DescribeDataSharesForProducer request exceed the value specified in
4650
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4651
- # response. You can retrieve the next set of response records by
4652
- # providing the returned marker value in the `Marker` parameter and
4653
- # retrying the request.
4669
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4670
+ # field of the response. You can retrieve the next set of response
4671
+ # records by providing the returned marker value in the `Marker`
4672
+ # parameter and retrying the request.
4654
4673
  #
4655
4674
  # @return [Types::DescribeDataSharesForProducerResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4656
4675
  #
@@ -6639,6 +6658,7 @@ module Aws::Redshift
6639
6658
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6640
6659
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6641
6660
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6661
+ # resp.cluster.default_iam_role_arn #=> String
6642
6662
  #
6643
6663
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DisableSnapshotCopy AWS API Documentation
6644
6664
  #
@@ -6939,6 +6959,7 @@ module Aws::Redshift
6939
6959
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
6940
6960
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
6941
6961
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
6962
+ # resp.cluster.default_iam_role_arn #=> String
6942
6963
  #
6943
6964
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EnableSnapshotCopy AWS API Documentation
6944
6965
  #
@@ -7667,6 +7688,7 @@ module Aws::Redshift
7667
7688
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7668
7689
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7669
7690
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7691
+ # resp.cluster.default_iam_role_arn #=> String
7670
7692
  #
7671
7693
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCluster AWS API Documentation
7672
7694
  #
@@ -7811,6 +7833,7 @@ module Aws::Redshift
7811
7833
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7812
7834
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7813
7835
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7836
+ # resp.cluster.default_iam_role_arn #=> String
7814
7837
  #
7815
7838
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterDbRevision AWS API Documentation
7816
7839
  #
@@ -7841,6 +7864,10 @@ module Aws::Redshift
7841
7864
  # You can disassociate up to 10 IAM roles from a single cluster in a
7842
7865
  # single request.
7843
7866
  #
7867
+ # @option params [String] :default_iam_role_arn
7868
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
7869
+ # default for the cluster when the cluster was last modified.
7870
+ #
7844
7871
  # @return [Types::ModifyClusterIamRolesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7845
7872
  #
7846
7873
  # * {Types::ModifyClusterIamRolesResult#cluster #cluster} => Types::Cluster
@@ -7851,6 +7878,7 @@ module Aws::Redshift
7851
7878
  # cluster_identifier: "String", # required
7852
7879
  # add_iam_roles: ["String"],
7853
7880
  # remove_iam_roles: ["String"],
7881
+ # default_iam_role_arn: "String",
7854
7882
  # })
7855
7883
  #
7856
7884
  # @example Response structure
@@ -7963,6 +7991,7 @@ module Aws::Redshift
7963
7991
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
7964
7992
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
7965
7993
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
7994
+ # resp.cluster.default_iam_role_arn #=> String
7966
7995
  #
7967
7996
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRoles AWS API Documentation
7968
7997
  #
@@ -8123,6 +8152,7 @@ module Aws::Redshift
8123
8152
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8124
8153
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8125
8154
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8155
+ # resp.cluster.default_iam_role_arn #=> String
8126
8156
  #
8127
8157
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterMaintenance AWS API Documentation
8128
8158
  #
@@ -8783,6 +8813,7 @@ module Aws::Redshift
8783
8813
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
8784
8814
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
8785
8815
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
8816
+ # resp.cluster.default_iam_role_arn #=> String
8786
8817
  #
8787
8818
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifySnapshotCopyRetentionPeriod AWS API Documentation
8788
8819
  #
@@ -9026,6 +9057,7 @@ module Aws::Redshift
9026
9057
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9027
9058
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9028
9059
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9060
+ # resp.cluster.default_iam_role_arn #=> String
9029
9061
  #
9030
9062
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/PauseCluster AWS API Documentation
9031
9063
  #
@@ -9232,6 +9264,7 @@ module Aws::Redshift
9232
9264
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9233
9265
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9234
9266
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9267
+ # resp.cluster.default_iam_role_arn #=> String
9235
9268
  #
9236
9269
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RebootCluster AWS API Documentation
9237
9270
  #
@@ -9515,6 +9548,7 @@ module Aws::Redshift
9515
9548
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9516
9549
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9517
9550
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9551
+ # resp.cluster.default_iam_role_arn #=> String
9518
9552
  #
9519
9553
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeCluster AWS API Documentation
9520
9554
  #
@@ -9780,6 +9814,11 @@ module Aws::Redshift
9780
9814
  #
9781
9815
  # * auto - Amazon Redshift determines whether to use AQUA.
9782
9816
  #
9817
+ # @option params [String] :default_iam_role_arn
9818
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
9819
+ # default for the cluster when the cluster was last modified while it
9820
+ # was restored from a snapshot.
9821
+ #
9783
9822
  # @return [Types::RestoreFromClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9784
9823
  #
9785
9824
  # * {Types::RestoreFromClusterSnapshotResult#cluster #cluster} => Types::Cluster
@@ -9815,6 +9854,7 @@ module Aws::Redshift
9815
9854
  # number_of_nodes: 1,
9816
9855
  # availability_zone_relocation: false,
9817
9856
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
9857
+ # default_iam_role_arn: "String",
9818
9858
  # })
9819
9859
  #
9820
9860
  # @example Response structure
@@ -9927,6 +9967,7 @@ module Aws::Redshift
9927
9967
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
9928
9968
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
9929
9969
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
9970
+ # resp.cluster.default_iam_role_arn #=> String
9930
9971
  #
9931
9972
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshot AWS API Documentation
9932
9973
  #
@@ -10155,6 +10196,7 @@ module Aws::Redshift
10155
10196
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
10156
10197
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
10157
10198
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
10199
+ # resp.cluster.default_iam_role_arn #=> String
10158
10200
  #
10159
10201
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResumeCluster AWS API Documentation
10160
10202
  #
@@ -10519,6 +10561,7 @@ module Aws::Redshift
10519
10561
  # resp.cluster.total_storage_capacity_in_mega_bytes #=> Integer
10520
10562
  # resp.cluster.aqua_configuration.aqua_status #=> String, one of "enabled", "disabled", "applying"
10521
10563
  # resp.cluster.aqua_configuration.aqua_configuration_status #=> String, one of "enabled", "disabled", "auto"
10564
+ # resp.cluster.default_iam_role_arn #=> String
10522
10565
  #
10523
10566
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RotateEncryptionKey AWS API Documentation
10524
10567
  #
@@ -10594,7 +10637,7 @@ module Aws::Redshift
10594
10637
  params: params,
10595
10638
  config: config)
10596
10639
  context[:gem_name] = 'aws-sdk-redshift'
10597
- context[:gem_version] = '1.68.0'
10640
+ context[:gem_version] = '1.72.0'
10598
10641
  Seahorse::Client::Request.new(handlers, context)
10599
10642
  end
10600
10643
 
@@ -699,6 +699,7 @@ module Aws::Redshift
699
699
  Cluster.add_member(:cluster_namespace_arn, Shapes::ShapeRef.new(shape: String, location_name: "ClusterNamespaceArn"))
700
700
  Cluster.add_member(:total_storage_capacity_in_mega_bytes, Shapes::ShapeRef.new(shape: LongOptional, location_name: "TotalStorageCapacityInMegaBytes"))
701
701
  Cluster.add_member(:aqua_configuration, Shapes::ShapeRef.new(shape: AquaConfiguration, location_name: "AquaConfiguration"))
702
+ Cluster.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
702
703
  Cluster.struct_class = Types::Cluster
703
704
 
704
705
  ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
@@ -910,6 +911,7 @@ module Aws::Redshift
910
911
  CreateClusterMessage.add_member(:snapshot_schedule_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotScheduleIdentifier"))
911
912
  CreateClusterMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
912
913
  CreateClusterMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
914
+ CreateClusterMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
913
915
  CreateClusterMessage.struct_class = Types::CreateClusterMessage
914
916
 
915
917
  CreateClusterParameterGroupMessage.add_member(:parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ParameterGroupName"))
@@ -1722,6 +1724,7 @@ module Aws::Redshift
1722
1724
  ModifyClusterIamRolesMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
1723
1725
  ModifyClusterIamRolesMessage.add_member(:add_iam_roles, Shapes::ShapeRef.new(shape: IamRoleArnList, location_name: "AddIamRoles"))
1724
1726
  ModifyClusterIamRolesMessage.add_member(:remove_iam_roles, Shapes::ShapeRef.new(shape: IamRoleArnList, location_name: "RemoveIamRoles"))
1727
+ ModifyClusterIamRolesMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
1725
1728
  ModifyClusterIamRolesMessage.struct_class = Types::ModifyClusterIamRolesMessage
1726
1729
 
1727
1730
  ModifyClusterIamRolesResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -2078,6 +2081,7 @@ module Aws::Redshift
2078
2081
  RestoreFromClusterSnapshotMessage.add_member(:number_of_nodes, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "NumberOfNodes"))
2079
2082
  RestoreFromClusterSnapshotMessage.add_member(:availability_zone_relocation, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AvailabilityZoneRelocation"))
2080
2083
  RestoreFromClusterSnapshotMessage.add_member(:aqua_configuration_status, Shapes::ShapeRef.new(shape: AquaConfigurationStatus, location_name: "AquaConfigurationStatus"))
2084
+ RestoreFromClusterSnapshotMessage.add_member(:default_iam_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "DefaultIamRoleArn"))
2081
2085
  RestoreFromClusterSnapshotMessage.struct_class = Types::RestoreFromClusterSnapshotMessage
2082
2086
 
2083
2087
  RestoreFromClusterSnapshotResult.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
@@ -329,7 +329,7 @@ module Aws::Redshift
329
329
  #
330
330
  # @!attribute [rw] consumer_identifier
331
331
  # The identifier of the data consumer that is authorized to access the
332
- # datashare. This identifier is an AWS account ID.
332
+ # datashare. This identifier is an Amazon Web Services account ID.
333
333
  # @return [String]
334
334
  #
335
335
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShareMessage AWS API Documentation
@@ -895,6 +895,11 @@ module Aws::Redshift
895
895
  # The AQUA (Advanced Query Accelerator) configuration of the cluster.
896
896
  # @return [Types::AquaConfiguration]
897
897
  #
898
+ # @!attribute [rw] default_iam_role_arn
899
+ # The Amazon Resource Name (ARN) for the IAM role set as default for
900
+ # the cluster.
901
+ # @return [String]
902
+ #
898
903
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
899
904
  #
900
905
  class Cluster < Struct.new(
@@ -947,7 +952,8 @@ module Aws::Redshift
947
952
  :availability_zone_relocation_status,
948
953
  :cluster_namespace_arn,
949
954
  :total_storage_capacity_in_mega_bytes,
950
- :aqua_configuration)
955
+ :aqua_configuration,
956
+ :default_iam_role_arn)
951
957
  SENSITIVE = []
952
958
  include Aws::Structure
953
959
  end
@@ -1858,6 +1864,7 @@ module Aws::Redshift
1858
1864
  # snapshot_schedule_identifier: "String",
1859
1865
  # availability_zone_relocation: false,
1860
1866
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
1867
+ # default_iam_role_arn: "String",
1861
1868
  # }
1862
1869
  #
1863
1870
  # @!attribute [rw] db_name
@@ -2233,6 +2240,11 @@ module Aws::Redshift
2233
2240
  # * auto - Amazon Redshift determines whether to use AQUA.
2234
2241
  # @return [String]
2235
2242
  #
2243
+ # @!attribute [rw] default_iam_role_arn
2244
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
2245
+ # default for the cluster when the cluster was created.
2246
+ # @return [String]
2247
+ #
2236
2248
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
2237
2249
  #
2238
2250
  class CreateClusterMessage < Struct.new(
@@ -2267,7 +2279,8 @@ module Aws::Redshift
2267
2279
  :maintenance_track_name,
2268
2280
  :snapshot_schedule_identifier,
2269
2281
  :availability_zone_relocation,
2270
- :aqua_configuration_status)
2282
+ :aqua_configuration_status,
2283
+ :default_iam_role_arn)
2271
2284
  SENSITIVE = []
2272
2285
  include Aws::Structure
2273
2286
  end
@@ -3319,7 +3332,8 @@ module Aws::Redshift
3319
3332
  #
3320
3333
  # @!attribute [rw] consumer_identifier
3321
3334
  # The identifier of the data consumer that is to have authorization
3322
- # removed from the datashare. This identifier is an AWS account ID.
3335
+ # removed from the datashare. This identifier is an Amazon Web
3336
+ # Services account ID.
3323
3337
  # @return [String]
3324
3338
  #
3325
3339
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShareMessage AWS API Documentation
@@ -4553,10 +4567,10 @@ module Aws::Redshift
4553
4567
  # An optional parameter that specifies the starting point to return a
4554
4568
  # set of response records. When the results of a
4555
4569
  # DescribeDataSharesForConsumer request exceed the value specified in
4556
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4557
- # response. You can retrieve the next set of response records by
4558
- # providing the returned marker value in the `Marker` parameter and
4559
- # retrying the request.
4570
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4571
+ # field of the response. You can retrieve the next set of response
4572
+ # records by providing the returned marker value in the `Marker`
4573
+ # parameter and retrying the request.
4560
4574
  # @return [String]
4561
4575
  #
4562
4576
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerMessage AWS API Documentation
@@ -4578,10 +4592,10 @@ module Aws::Redshift
4578
4592
  # An optional parameter that specifies the starting point to return a
4579
4593
  # set of response records. When the results of a
4580
4594
  # DescribeDataSharesForConsumer request exceed the value specified in
4581
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4582
- # response. You can retrieve the next set of response records by
4583
- # providing the returned marker value in the `Marker` parameter and
4584
- # retrying the request.
4595
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4596
+ # field of the response. You can retrieve the next set of response
4597
+ # records by providing the returned marker value in the `Marker`
4598
+ # parameter and retrying the request.
4585
4599
  # @return [String]
4586
4600
  #
4587
4601
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerResult AWS API Documentation
@@ -4626,10 +4640,10 @@ module Aws::Redshift
4626
4640
  # An optional parameter that specifies the starting point to return a
4627
4641
  # set of response records. When the results of a
4628
4642
  # DescribeDataSharesForProducer request exceed the value specified in
4629
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4630
- # response. You can retrieve the next set of response records by
4631
- # providing the returned marker value in the `Marker` parameter and
4632
- # retrying the request.
4643
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4644
+ # field of the response. You can retrieve the next set of response
4645
+ # records by providing the returned marker value in the `Marker`
4646
+ # parameter and retrying the request.
4633
4647
  # @return [String]
4634
4648
  #
4635
4649
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerMessage AWS API Documentation
@@ -4651,10 +4665,10 @@ module Aws::Redshift
4651
4665
  # An optional parameter that specifies the starting point to return a
4652
4666
  # set of response records. When the results of a
4653
4667
  # DescribeDataSharesForProducer request exceed the value specified in
4654
- # `MaxRecords`, AWS returns a value in the `Marker` field of the
4655
- # response. You can retrieve the next set of response records by
4656
- # providing the returned marker value in the `Marker` parameter and
4657
- # retrying the request.
4668
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4669
+ # field of the response. You can retrieve the next set of response
4670
+ # records by providing the returned marker value in the `Marker`
4671
+ # parameter and retrying the request.
4658
4672
  # @return [String]
4659
4673
  #
4660
4674
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerResult AWS API Documentation
@@ -4690,10 +4704,11 @@ module Aws::Redshift
4690
4704
  # @!attribute [rw] marker
4691
4705
  # An optional parameter that specifies the starting point to return a
4692
4706
  # set of response records. When the results of a DescribeDataShares
4693
- # request exceed the value specified in `MaxRecords`, AWS returns a
4694
- # value in the `Marker` field of the response. You can retrieve the
4695
- # next set of response records by providing the returned marker value
4696
- # in the `Marker` parameter and retrying the request.
4707
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4708
+ # Services returns a value in the `Marker` field of the response. You
4709
+ # can retrieve the next set of response records by providing the
4710
+ # returned marker value in the `Marker` parameter and retrying the
4711
+ # request.
4697
4712
  # @return [String]
4698
4713
  #
4699
4714
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesMessage AWS API Documentation
@@ -4713,10 +4728,11 @@ module Aws::Redshift
4713
4728
  # @!attribute [rw] marker
4714
4729
  # An optional parameter that specifies the starting point to return a
4715
4730
  # set of response records. When the results of a DescribeDataShares
4716
- # request exceed the value specified in `MaxRecords`, AWS returns a
4717
- # value in the `Marker` field of the response. You can retrieve the
4718
- # next set of response records by providing the returned marker value
4719
- # in the `Marker` parameter and retrying the request.
4731
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4732
+ # Services returns a value in the `Marker` field of the response. You
4733
+ # can retrieve the next set of response records by providing the
4734
+ # returned marker value in the `Marker` parameter and retrying the
4735
+ # request.
4720
4736
  # @return [String]
4721
4737
  #
4722
4738
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesResult AWS API Documentation
@@ -7668,6 +7684,7 @@ module Aws::Redshift
7668
7684
  # cluster_identifier: "String", # required
7669
7685
  # add_iam_roles: ["String"],
7670
7686
  # remove_iam_roles: ["String"],
7687
+ # default_iam_role_arn: "String",
7671
7688
  # }
7672
7689
  #
7673
7690
  # @!attribute [rw] cluster_identifier
@@ -7687,12 +7704,18 @@ module Aws::Redshift
7687
7704
  # cluster in a single request.
7688
7705
  # @return [Array<String>]
7689
7706
  #
7707
+ # @!attribute [rw] default_iam_role_arn
7708
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
7709
+ # default for the cluster when the cluster was last modified.
7710
+ # @return [String]
7711
+ #
7690
7712
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRolesMessage AWS API Documentation
7691
7713
  #
7692
7714
  class ModifyClusterIamRolesMessage < Struct.new(
7693
7715
  :cluster_identifier,
7694
7716
  :add_iam_roles,
7695
- :remove_iam_roles)
7717
+ :remove_iam_roles,
7718
+ :default_iam_role_arn)
7696
7719
  SENSITIVE = []
7697
7720
  include Aws::Structure
7698
7721
  end
@@ -9785,6 +9808,7 @@ module Aws::Redshift
9785
9808
  # number_of_nodes: 1,
9786
9809
  # availability_zone_relocation: false,
9787
9810
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
9811
+ # default_iam_role_arn: "String",
9788
9812
  # }
9789
9813
  #
9790
9814
  # @!attribute [rw] cluster_identifier
@@ -10051,6 +10075,12 @@ module Aws::Redshift
10051
10075
  # * auto - Amazon Redshift determines whether to use AQUA.
10052
10076
  # @return [String]
10053
10077
  #
10078
+ # @!attribute [rw] default_iam_role_arn
10079
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
10080
+ # default for the cluster when the cluster was last modified while it
10081
+ # was restored from a snapshot.
10082
+ # @return [String]
10083
+ #
10054
10084
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
10055
10085
  #
10056
10086
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -10081,7 +10111,8 @@ module Aws::Redshift
10081
10111
  :snapshot_schedule_identifier,
10082
10112
  :number_of_nodes,
10083
10113
  :availability_zone_relocation,
10084
- :aqua_configuration_status)
10114
+ :aqua_configuration_status,
10115
+ :default_iam_role_arn)
10085
10116
  SENSITIVE = []
10086
10117
  include Aws::Structure
10087
10118
  end
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-redshift/customizations'
49
49
  # @!group service
50
50
  module Aws::Redshift
51
51
 
52
- GEM_VERSION = '1.68.0'
52
+ GEM_VERSION = '1.72.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshift
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.68.0
4
+ version: 1.72.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-03 00:00:00.000000000 Z
11
+ date: 2021-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.119.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
- version: '0'
80
+ version: '2.3'
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="