aws-sdk-redshift 1.71.0 → 1.75.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -329,7 +329,8 @@ 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 or a
333
+ # keyword, such as ADX.
333
334
  # @return [String]
334
335
  #
335
336
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/AuthorizeDataShareMessage AWS API Documentation
@@ -895,6 +896,16 @@ module Aws::Redshift
895
896
  # The AQUA (Advanced Query Accelerator) configuration of the cluster.
896
897
  # @return [Types::AquaConfiguration]
897
898
  #
899
+ # @!attribute [rw] default_iam_role_arn
900
+ # The Amazon Resource Name (ARN) for the IAM role set as default for
901
+ # the cluster.
902
+ # @return [String]
903
+ #
904
+ # @!attribute [rw] reserved_node_exchange_status
905
+ # The status of the reserved-node exchange request. Statuses include
906
+ # in-progress and requested.
907
+ # @return [Types::ReservedNodeExchangeStatus]
908
+ #
898
909
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
899
910
  #
900
911
  class Cluster < Struct.new(
@@ -947,7 +958,9 @@ module Aws::Redshift
947
958
  :availability_zone_relocation_status,
948
959
  :cluster_namespace_arn,
949
960
  :total_storage_capacity_in_mega_bytes,
950
- :aqua_configuration)
961
+ :aqua_configuration,
962
+ :default_iam_role_arn,
963
+ :reserved_node_exchange_status)
951
964
  SENSITIVE = []
952
965
  include Aws::Structure
953
966
  end
@@ -1858,6 +1871,7 @@ module Aws::Redshift
1858
1871
  # snapshot_schedule_identifier: "String",
1859
1872
  # availability_zone_relocation: false,
1860
1873
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
1874
+ # default_iam_role_arn: "String",
1861
1875
  # }
1862
1876
  #
1863
1877
  # @!attribute [rw] db_name
@@ -2233,6 +2247,11 @@ module Aws::Redshift
2233
2247
  # * auto - Amazon Redshift determines whether to use AQUA.
2234
2248
  # @return [String]
2235
2249
  #
2250
+ # @!attribute [rw] default_iam_role_arn
2251
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
2252
+ # default for the cluster when the cluster was created.
2253
+ # @return [String]
2254
+ #
2236
2255
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateClusterMessage AWS API Documentation
2237
2256
  #
2238
2257
  class CreateClusterMessage < Struct.new(
@@ -2267,7 +2286,8 @@ module Aws::Redshift
2267
2286
  :maintenance_track_name,
2268
2287
  :snapshot_schedule_identifier,
2269
2288
  :availability_zone_relocation,
2270
- :aqua_configuration_status)
2289
+ :aqua_configuration_status,
2290
+ :default_iam_role_arn)
2271
2291
  SENSITIVE = []
2272
2292
  include Aws::Structure
2273
2293
  end
@@ -2865,6 +2885,8 @@ module Aws::Redshift
2865
2885
  # node_type: "String",
2866
2886
  # number_of_nodes: 1,
2867
2887
  # classic: false,
2888
+ # reserved_node_id: "String",
2889
+ # target_reserved_node_offering_id: "String",
2868
2890
  # },
2869
2891
  # pause_cluster: {
2870
2892
  # cluster_identifier: "String", # required
@@ -3218,13 +3240,18 @@ module Aws::Redshift
3218
3240
  # a producer and data consumers.
3219
3241
  # @return [Array<Types::DataShareAssociation>]
3220
3242
  #
3243
+ # @!attribute [rw] managed_by
3244
+ # The identifier of a datashare to show its managing entity.
3245
+ # @return [String]
3246
+ #
3221
3247
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DataShare AWS API Documentation
3222
3248
  #
3223
3249
  class DataShare < Struct.new(
3224
3250
  :data_share_arn,
3225
3251
  :producer_arn,
3226
3252
  :allow_publicly_accessible_consumers,
3227
- :data_share_associations)
3253
+ :data_share_associations,
3254
+ :managed_by)
3228
3255
  SENSITIVE = []
3229
3256
  include Aws::Structure
3230
3257
  end
@@ -3319,7 +3346,8 @@ module Aws::Redshift
3319
3346
  #
3320
3347
  # @!attribute [rw] consumer_identifier
3321
3348
  # The identifier of the data consumer that is to have authorization
3322
- # removed from the datashare. This identifier is an AWS account ID.
3349
+ # removed from the datashare. This identifier is an Amazon Web
3350
+ # Services account ID or a keyword, such as ADX.
3323
3351
  # @return [String]
3324
3352
  #
3325
3353
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeauthorizeDataShareMessage AWS API Documentation
@@ -4553,10 +4581,10 @@ module Aws::Redshift
4553
4581
  # An optional parameter that specifies the starting point to return a
4554
4582
  # set of response records. When the results of a
4555
4583
  # 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.
4584
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4585
+ # field of the response. You can retrieve the next set of response
4586
+ # records by providing the returned marker value in the `Marker`
4587
+ # parameter and retrying the request.
4560
4588
  # @return [String]
4561
4589
  #
4562
4590
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerMessage AWS API Documentation
@@ -4578,10 +4606,10 @@ module Aws::Redshift
4578
4606
  # An optional parameter that specifies the starting point to return a
4579
4607
  # set of response records. When the results of a
4580
4608
  # 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.
4609
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4610
+ # field of the response. You can retrieve the next set of response
4611
+ # records by providing the returned marker value in the `Marker`
4612
+ # parameter and retrying the request.
4585
4613
  # @return [String]
4586
4614
  #
4587
4615
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForConsumerResult AWS API Documentation
@@ -4626,10 +4654,10 @@ module Aws::Redshift
4626
4654
  # An optional parameter that specifies the starting point to return a
4627
4655
  # set of response records. When the results of a
4628
4656
  # 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.
4657
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4658
+ # field of the response. You can retrieve the next set of response
4659
+ # records by providing the returned marker value in the `Marker`
4660
+ # parameter and retrying the request.
4633
4661
  # @return [String]
4634
4662
  #
4635
4663
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerMessage AWS API Documentation
@@ -4651,10 +4679,10 @@ module Aws::Redshift
4651
4679
  # An optional parameter that specifies the starting point to return a
4652
4680
  # set of response records. When the results of a
4653
4681
  # 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.
4682
+ # `MaxRecords`, Amazon Web Services returns a value in the `Marker`
4683
+ # field of the response. You can retrieve the next set of response
4684
+ # records by providing the returned marker value in the `Marker`
4685
+ # parameter and retrying the request.
4658
4686
  # @return [String]
4659
4687
  #
4660
4688
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesForProducerResult AWS API Documentation
@@ -4690,10 +4718,11 @@ module Aws::Redshift
4690
4718
  # @!attribute [rw] marker
4691
4719
  # An optional parameter that specifies the starting point to return a
4692
4720
  # 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.
4721
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4722
+ # Services returns a value in the `Marker` field of the response. You
4723
+ # can retrieve the next set of response records by providing the
4724
+ # returned marker value in the `Marker` parameter and retrying the
4725
+ # request.
4697
4726
  # @return [String]
4698
4727
  #
4699
4728
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesMessage AWS API Documentation
@@ -4713,10 +4742,11 @@ module Aws::Redshift
4713
4742
  # @!attribute [rw] marker
4714
4743
  # An optional parameter that specifies the starting point to return a
4715
4744
  # 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.
4745
+ # request exceed the value specified in `MaxRecords`, Amazon Web
4746
+ # Services returns a value in the `Marker` field of the response. You
4747
+ # can retrieve the next set of response records by providing the
4748
+ # returned marker value in the `Marker` parameter and retrying the
4749
+ # request.
4720
4750
  # @return [String]
4721
4751
  #
4722
4752
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeDataSharesResult AWS API Documentation
@@ -5474,6 +5504,73 @@ module Aws::Redshift
5474
5504
  include Aws::Structure
5475
5505
  end
5476
5506
 
5507
+ # @note When making an API call, you may pass DescribeReservedNodeExchangeStatusInputMessage
5508
+ # data as a hash:
5509
+ #
5510
+ # {
5511
+ # reserved_node_id: "String",
5512
+ # reserved_node_exchange_request_id: "String",
5513
+ # max_records: 1,
5514
+ # marker: "String",
5515
+ # }
5516
+ #
5517
+ # @!attribute [rw] reserved_node_id
5518
+ # The identifier of the source reserved node in a reserved-node
5519
+ # exchange request.
5520
+ # @return [String]
5521
+ #
5522
+ # @!attribute [rw] reserved_node_exchange_request_id
5523
+ # The identifier of the reserved-node exchange request.
5524
+ # @return [String]
5525
+ #
5526
+ # @!attribute [rw] max_records
5527
+ # The maximum number of response records to return in each call. If
5528
+ # the number of remaining response records exceeds the specified
5529
+ # `MaxRecords` value, a value is returned in a `Marker` field of the
5530
+ # response. You can retrieve the next set of records by retrying the
5531
+ # command with the returned marker value.
5532
+ # @return [Integer]
5533
+ #
5534
+ # @!attribute [rw] marker
5535
+ # An optional pagination token provided by a previous
5536
+ # `DescribeReservedNodeExchangeStatus` request. If this parameter is
5537
+ # specified, the response includes only records beyond the marker, up
5538
+ # to the value specified by the `MaxRecords` parameter. You can
5539
+ # retrieve the next set of response records by providing the returned
5540
+ # marker value in the `Marker` parameter and retrying the request.
5541
+ # @return [String]
5542
+ #
5543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatusInputMessage AWS API Documentation
5544
+ #
5545
+ class DescribeReservedNodeExchangeStatusInputMessage < Struct.new(
5546
+ :reserved_node_id,
5547
+ :reserved_node_exchange_request_id,
5548
+ :max_records,
5549
+ :marker)
5550
+ SENSITIVE = []
5551
+ include Aws::Structure
5552
+ end
5553
+
5554
+ # @!attribute [rw] reserved_node_exchange_status_details
5555
+ # The details of the reserved-node exchange request, including the
5556
+ # status, request time, source reserved-node identifier, and
5557
+ # additional details.
5558
+ # @return [Array<Types::ReservedNodeExchangeStatus>]
5559
+ #
5560
+ # @!attribute [rw] marker
5561
+ # A pagination token provided by a previous
5562
+ # `DescribeReservedNodeExchangeStatus` request.
5563
+ # @return [String]
5564
+ #
5565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeReservedNodeExchangeStatusOutputMessage AWS API Documentation
5566
+ #
5567
+ class DescribeReservedNodeExchangeStatusOutputMessage < Struct.new(
5568
+ :reserved_node_exchange_status_details,
5569
+ :marker)
5570
+ SENSITIVE = []
5571
+ include Aws::Structure
5572
+ end
5573
+
5477
5574
  # @note When making an API call, you may pass DescribeReservedNodeOfferingsMessage
5478
5575
  # data as a hash:
5479
5576
  #
@@ -6947,6 +7044,83 @@ module Aws::Redshift
6947
7044
  include Aws::Structure
6948
7045
  end
6949
7046
 
7047
+ # @note When making an API call, you may pass GetReservedNodeExchangeConfigurationOptionsInputMessage
7048
+ # data as a hash:
7049
+ #
7050
+ # {
7051
+ # action_type: "restore-cluster", # required, accepts restore-cluster, resize-cluster
7052
+ # cluster_identifier: "String",
7053
+ # snapshot_identifier: "String",
7054
+ # max_records: 1,
7055
+ # marker: "String",
7056
+ # }
7057
+ #
7058
+ # @!attribute [rw] action_type
7059
+ # The action type of the reserved-node configuration. The action type
7060
+ # can be an exchange initiated from either a snapshot or a resize.
7061
+ # @return [String]
7062
+ #
7063
+ # @!attribute [rw] cluster_identifier
7064
+ # The identifier for the cluster that is the source for a
7065
+ # reserved-node exchange.
7066
+ # @return [String]
7067
+ #
7068
+ # @!attribute [rw] snapshot_identifier
7069
+ # The identifier for the snapshot that is the source for the
7070
+ # reserved-node exchange.
7071
+ # @return [String]
7072
+ #
7073
+ # @!attribute [rw] max_records
7074
+ # The maximum number of response records to return in each call. If
7075
+ # the number of remaining response records exceeds the specified
7076
+ # `MaxRecords` value, a value is returned in a `Marker` field of the
7077
+ # response. You can retrieve the next set of records by retrying the
7078
+ # command with the returned marker value.
7079
+ # @return [Integer]
7080
+ #
7081
+ # @!attribute [rw] marker
7082
+ # An optional pagination token provided by a previous
7083
+ # `GetReservedNodeExchangeConfigurationOptions` request. If this
7084
+ # parameter is specified, the response includes only records beyond
7085
+ # the marker, up to the value specified by the `MaxRecords` parameter.
7086
+ # You can retrieve the next set of response records by providing the
7087
+ # returned marker value in the `Marker` parameter and retrying the
7088
+ # request.
7089
+ # @return [String]
7090
+ #
7091
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptionsInputMessage AWS API Documentation
7092
+ #
7093
+ class GetReservedNodeExchangeConfigurationOptionsInputMessage < Struct.new(
7094
+ :action_type,
7095
+ :cluster_identifier,
7096
+ :snapshot_identifier,
7097
+ :max_records,
7098
+ :marker)
7099
+ SENSITIVE = []
7100
+ include Aws::Structure
7101
+ end
7102
+
7103
+ # @!attribute [rw] marker
7104
+ # A pagination token provided by a previous
7105
+ # `GetReservedNodeExchangeConfigurationOptions` request.
7106
+ # @return [String]
7107
+ #
7108
+ # @!attribute [rw] reserved_node_configuration_option_list
7109
+ # the configuration options for the reserved-node exchange. These
7110
+ # options include information about the source reserved node and
7111
+ # target reserved node. Details include the node type, the price, the
7112
+ # node count, and the offering type.
7113
+ # @return [Array<Types::ReservedNodeConfigurationOption>]
7114
+ #
7115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetReservedNodeExchangeConfigurationOptionsOutputMessage AWS API Documentation
7116
+ #
7117
+ class GetReservedNodeExchangeConfigurationOptionsOutputMessage < Struct.new(
7118
+ :marker,
7119
+ :reserved_node_configuration_option_list)
7120
+ SENSITIVE = []
7121
+ include Aws::Structure
7122
+ end
7123
+
6950
7124
  # @note When making an API call, you may pass GetReservedNodeExchangeOfferingsInputMessage
6951
7125
  # data as a hash:
6952
7126
  #
@@ -7668,6 +7842,7 @@ module Aws::Redshift
7668
7842
  # cluster_identifier: "String", # required
7669
7843
  # add_iam_roles: ["String"],
7670
7844
  # remove_iam_roles: ["String"],
7845
+ # default_iam_role_arn: "String",
7671
7846
  # }
7672
7847
  #
7673
7848
  # @!attribute [rw] cluster_identifier
@@ -7687,12 +7862,18 @@ module Aws::Redshift
7687
7862
  # cluster in a single request.
7688
7863
  # @return [Array<String>]
7689
7864
  #
7865
+ # @!attribute [rw] default_iam_role_arn
7866
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
7867
+ # default for the cluster when the cluster was last modified.
7868
+ # @return [String]
7869
+ #
7690
7870
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyClusterIamRolesMessage AWS API Documentation
7691
7871
  #
7692
7872
  class ModifyClusterIamRolesMessage < Struct.new(
7693
7873
  :cluster_identifier,
7694
7874
  :add_iam_roles,
7695
- :remove_iam_roles)
7875
+ :remove_iam_roles,
7876
+ :default_iam_role_arn)
7696
7877
  SENSITIVE = []
7697
7878
  include Aws::Structure
7698
7879
  end
@@ -8447,6 +8628,8 @@ module Aws::Redshift
8447
8628
  # node_type: "String",
8448
8629
  # number_of_nodes: 1,
8449
8630
  # classic: false,
8631
+ # reserved_node_id: "String",
8632
+ # target_reserved_node_offering_id: "String",
8450
8633
  # },
8451
8634
  # pause_cluster: {
8452
8635
  # cluster_identifier: "String", # required
@@ -9361,6 +9544,98 @@ module Aws::Redshift
9361
9544
  #
9362
9545
  class ReservedNodeAlreadyMigratedFault < Aws::EmptyStructure; end
9363
9546
 
9547
+ # Details for a reserved-node exchange. Examples include the node type
9548
+ # for a reserved node, the price for a node, the node's state, and
9549
+ # other details.
9550
+ #
9551
+ # @!attribute [rw] source_reserved_node
9552
+ # Describes a reserved node. You can call the
9553
+ # DescribeReservedNodeOfferings API to obtain the available reserved
9554
+ # node offerings.
9555
+ # @return [Types::ReservedNode]
9556
+ #
9557
+ # @!attribute [rw] target_reserved_node_count
9558
+ # The target reserved-node count.
9559
+ # @return [Integer]
9560
+ #
9561
+ # @!attribute [rw] target_reserved_node_offering
9562
+ # Describes a reserved node offering.
9563
+ # @return [Types::ReservedNodeOffering]
9564
+ #
9565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeConfigurationOption AWS API Documentation
9566
+ #
9567
+ class ReservedNodeConfigurationOption < Struct.new(
9568
+ :source_reserved_node,
9569
+ :target_reserved_node_count,
9570
+ :target_reserved_node_offering)
9571
+ SENSITIVE = []
9572
+ include Aws::Structure
9573
+ end
9574
+
9575
+ # The reserved-node exchange status wasn't found.
9576
+ #
9577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeExchangeNotFoundFault AWS API Documentation
9578
+ #
9579
+ class ReservedNodeExchangeNotFoundFault < Aws::EmptyStructure; end
9580
+
9581
+ # Reserved-node status details, such as the source reserved-node
9582
+ # identifier, the target reserved-node identifier, the node type, the
9583
+ # node count, and other details.
9584
+ #
9585
+ # @!attribute [rw] reserved_node_exchange_request_id
9586
+ # The identifier of the reserved-node exchange request.
9587
+ # @return [String]
9588
+ #
9589
+ # @!attribute [rw] status
9590
+ # The status of the reserved-node exchange request. Statuses include
9591
+ # in-progress and requested.
9592
+ # @return [String]
9593
+ #
9594
+ # @!attribute [rw] request_time
9595
+ # A date and time that indicate when the reserved-node exchange was
9596
+ # requested.
9597
+ # @return [Time]
9598
+ #
9599
+ # @!attribute [rw] source_reserved_node_id
9600
+ # The identifier of the source reserved node.
9601
+ # @return [String]
9602
+ #
9603
+ # @!attribute [rw] source_reserved_node_type
9604
+ # The source reserved-node type, for example ds2.xlarge.
9605
+ # @return [String]
9606
+ #
9607
+ # @!attribute [rw] source_reserved_node_count
9608
+ # The source reserved-node count in the cluster.
9609
+ # @return [Integer]
9610
+ #
9611
+ # @!attribute [rw] target_reserved_node_offering_id
9612
+ # The identifier of the target reserved node offering.
9613
+ # @return [String]
9614
+ #
9615
+ # @!attribute [rw] target_reserved_node_type
9616
+ # The node type of the target reserved node, for example ra3.4xlarge.
9617
+ # @return [String]
9618
+ #
9619
+ # @!attribute [rw] target_reserved_node_count
9620
+ # The count of target reserved nodes in the cluster.
9621
+ # @return [Integer]
9622
+ #
9623
+ # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeExchangeStatus AWS API Documentation
9624
+ #
9625
+ class ReservedNodeExchangeStatus < Struct.new(
9626
+ :reserved_node_exchange_request_id,
9627
+ :status,
9628
+ :request_time,
9629
+ :source_reserved_node_id,
9630
+ :source_reserved_node_type,
9631
+ :source_reserved_node_count,
9632
+ :target_reserved_node_offering_id,
9633
+ :target_reserved_node_type,
9634
+ :target_reserved_node_count)
9635
+ SENSITIVE = []
9636
+ include Aws::Structure
9637
+ end
9638
+
9364
9639
  # The specified reserved compute node not found.
9365
9640
  #
9366
9641
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ReservedNodeNotFoundFault AWS API Documentation
@@ -9551,6 +9826,8 @@ module Aws::Redshift
9551
9826
  # node_type: "String",
9552
9827
  # number_of_nodes: 1,
9553
9828
  # classic: false,
9829
+ # reserved_node_id: "String",
9830
+ # target_reserved_node_offering_id: "String",
9554
9831
  # }
9555
9832
  #
9556
9833
  # @!attribute [rw] cluster_identifier
@@ -9577,6 +9854,14 @@ module Aws::Redshift
9577
9854
  # the value to `false`, the resize type is elastic.
9578
9855
  # @return [Boolean]
9579
9856
  #
9857
+ # @!attribute [rw] reserved_node_id
9858
+ # The identifier of the reserved node.
9859
+ # @return [String]
9860
+ #
9861
+ # @!attribute [rw] target_reserved_node_offering_id
9862
+ # The identifier of the target reserved node offering.
9863
+ # @return [String]
9864
+ #
9580
9865
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ResizeClusterMessage AWS API Documentation
9581
9866
  #
9582
9867
  class ResizeClusterMessage < Struct.new(
@@ -9584,7 +9869,9 @@ module Aws::Redshift
9584
9869
  :cluster_type,
9585
9870
  :node_type,
9586
9871
  :number_of_nodes,
9587
- :classic)
9872
+ :classic,
9873
+ :reserved_node_id,
9874
+ :target_reserved_node_offering_id)
9588
9875
  SENSITIVE = []
9589
9876
  include Aws::Structure
9590
9877
  end
@@ -9785,6 +10072,9 @@ module Aws::Redshift
9785
10072
  # number_of_nodes: 1,
9786
10073
  # availability_zone_relocation: false,
9787
10074
  # aqua_configuration_status: "enabled", # accepts enabled, disabled, auto
10075
+ # default_iam_role_arn: "String",
10076
+ # reserved_node_id: "String",
10077
+ # target_reserved_node_offering_id: "String",
9788
10078
  # }
9789
10079
  #
9790
10080
  # @!attribute [rw] cluster_identifier
@@ -10051,6 +10341,20 @@ module Aws::Redshift
10051
10341
  # * auto - Amazon Redshift determines whether to use AQUA.
10052
10342
  # @return [String]
10053
10343
  #
10344
+ # @!attribute [rw] default_iam_role_arn
10345
+ # The Amazon Resource Name (ARN) for the IAM role that was set as
10346
+ # default for the cluster when the cluster was last modified while it
10347
+ # was restored from a snapshot.
10348
+ # @return [String]
10349
+ #
10350
+ # @!attribute [rw] reserved_node_id
10351
+ # The identifier of the target reserved node offering.
10352
+ # @return [String]
10353
+ #
10354
+ # @!attribute [rw] target_reserved_node_offering_id
10355
+ # The identifier of the target reserved node offering.
10356
+ # @return [String]
10357
+ #
10054
10358
  # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RestoreFromClusterSnapshotMessage AWS API Documentation
10055
10359
  #
10056
10360
  class RestoreFromClusterSnapshotMessage < Struct.new(
@@ -10081,7 +10385,10 @@ module Aws::Redshift
10081
10385
  :snapshot_schedule_identifier,
10082
10386
  :number_of_nodes,
10083
10387
  :availability_zone_relocation,
10084
- :aqua_configuration_status)
10388
+ :aqua_configuration_status,
10389
+ :default_iam_role_arn,
10390
+ :reserved_node_id,
10391
+ :target_reserved_node_offering_id)
10085
10392
  SENSITIVE = []
10086
10393
  include Aws::Structure
10087
10394
  end
@@ -10654,6 +10961,8 @@ module Aws::Redshift
10654
10961
  # node_type: "String",
10655
10962
  # number_of_nodes: 1,
10656
10963
  # classic: false,
10964
+ # reserved_node_id: "String",
10965
+ # target_reserved_node_offering_id: "String",
10657
10966
  # },
10658
10967
  # pause_cluster: {
10659
10968
  # cluster_identifier: "String", # required
@@ -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.71.0'
52
+ GEM_VERSION = '1.75.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.71.0
4
+ version: 1.75.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-11-04 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core