aws-sdk-redshift 1.102.0 → 1.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +275 -5
- data/lib/aws-sdk-redshift/client_api.rb +171 -2
- data/lib/aws-sdk-redshift/endpoints.rb +56 -0
- data/lib/aws-sdk-redshift/errors.rb +44 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-redshift/types.rb +375 -2
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 6589fe8515178f76b2e1c9a9d31e7a1dbd6e2f464974583d7b48a48daa7b9471
         | 
| 4 | 
            +
              data.tar.gz: 402c234fb85297b8567cc2e7957a89aa1d45096b6dfdca00b53c515ae20e96b5
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: dadae20bc0defd2e07c8cf74c72d2c3340019db5b9a3efb20a17a29b815ff96a034a7943c1c97838b5ccebef7dc3923057b8796762e6e87288bb3b76f5da73b7
         | 
| 7 | 
            +
              data.tar.gz: cfd285c458b59fb62670d67af6f7d51ffdc92f9efe6c95a971d1a2322d4edfb49e563aeb2d23854d136beec11443f125b0fe51e635bdad4807c09176c6a1b04b
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,16 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.104.0 (2023-11-17)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - Updated SDK for Amazon Redshift, which you can use to configure a connection with IAM Identity Center to manage access to databases. With these, you can create a connection through a managed application. You can also change a managed application, delete it, or get information about an existing one.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            1.103.0 (2023-11-15)
         | 
| 10 | 
            +
            ------------------
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Feature - The custom domain name SDK for Amazon Redshift provisioned clusters is updated with additional required parameters for modify and delete operations. Additionally, users can provide domain names with longer top-level domains.
         | 
| 13 | 
            +
             | 
| 4 14 | 
             
            1.102.0 (2023-11-01)
         | 
| 5 15 | 
             
            ------------------
         | 
| 6 16 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.104.0
         | 
| @@ -1537,6 +1537,10 @@ module Aws::Redshift | |
| 1537 1537 | 
             
                #   If true, Amazon Redshift will deploy the cluster in two Availability
         | 
| 1538 1538 | 
             
                #   Zones (AZ).
         | 
| 1539 1539 | 
             
                #
         | 
| 1540 | 
            +
                # @option params [String] :redshift_idc_application_arn
         | 
| 1541 | 
            +
                #   The Amazon resource name (ARN) of the Amazon Redshift IAM Identity
         | 
| 1542 | 
            +
                #   Center application.
         | 
| 1543 | 
            +
                #
         | 
| 1540 1544 | 
             
                # @return [Types::CreateClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 1541 1545 | 
             
                #
         | 
| 1542 1546 | 
             
                #   * {Types::CreateClusterResult#cluster #cluster} => Types::Cluster
         | 
| @@ -1587,6 +1591,7 @@ module Aws::Redshift | |
| 1587 1591 | 
             
                #     master_password_secret_kms_key_id: "String",
         | 
| 1588 1592 | 
             
                #     ip_address_type: "String",
         | 
| 1589 1593 | 
             
                #     multi_az: false,
         | 
| 1594 | 
            +
                #     redshift_idc_application_arn: "String",
         | 
| 1590 1595 | 
             
                #   })
         | 
| 1591 1596 | 
             
                #
         | 
| 1592 1597 | 
             
                # @example Response structure
         | 
| @@ -2488,6 +2493,96 @@ module Aws::Redshift | |
| 2488 2493 | 
             
                  req.send_request(options)
         | 
| 2489 2494 | 
             
                end
         | 
| 2490 2495 |  | 
| 2496 | 
            +
                # Creates an Amazon Redshift application for use with IAM Identity
         | 
| 2497 | 
            +
                # Center.
         | 
| 2498 | 
            +
                #
         | 
| 2499 | 
            +
                # @option params [required, String] :idc_instance_arn
         | 
| 2500 | 
            +
                #   The Amazon resource name (ARN) of the IAM Identity Center instance
         | 
| 2501 | 
            +
                #   where Amazon Redshift creates a new managed application.
         | 
| 2502 | 
            +
                #
         | 
| 2503 | 
            +
                # @option params [required, String] :redshift_idc_application_name
         | 
| 2504 | 
            +
                #   The name of the Redshift application in IAM Identity Center.
         | 
| 2505 | 
            +
                #
         | 
| 2506 | 
            +
                # @option params [String] :identity_namespace
         | 
| 2507 | 
            +
                #   The namespace for the Amazon Redshift IAM Identity Center application
         | 
| 2508 | 
            +
                #   instance. It determines which managed application verifies the
         | 
| 2509 | 
            +
                #   connection token.
         | 
| 2510 | 
            +
                #
         | 
| 2511 | 
            +
                # @option params [required, String] :idc_display_name
         | 
| 2512 | 
            +
                #   The display name for the Amazon Redshift IAM Identity Center
         | 
| 2513 | 
            +
                #   application instance. It appears in the console.
         | 
| 2514 | 
            +
                #
         | 
| 2515 | 
            +
                # @option params [required, String] :iam_role_arn
         | 
| 2516 | 
            +
                #   The IAM role ARN for the Amazon Redshift IAM Identity Center
         | 
| 2517 | 
            +
                #   application instance. It has the required permissions to be assumed
         | 
| 2518 | 
            +
                #   and invoke the IDC Identity Center API.
         | 
| 2519 | 
            +
                #
         | 
| 2520 | 
            +
                # @option params [Array<Types::AuthorizedTokenIssuer>] :authorized_token_issuer_list
         | 
| 2521 | 
            +
                #   The token issuer list for the Amazon Redshift IAM Identity Center
         | 
| 2522 | 
            +
                #   application instance.
         | 
| 2523 | 
            +
                #
         | 
| 2524 | 
            +
                # @option params [Array<Types::ServiceIntegrationsUnion>] :service_integrations
         | 
| 2525 | 
            +
                #   A collection of service integrations for the Redshift IAM Identity
         | 
| 2526 | 
            +
                #   Center application.
         | 
| 2527 | 
            +
                #
         | 
| 2528 | 
            +
                # @return [Types::CreateRedshiftIdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 2529 | 
            +
                #
         | 
| 2530 | 
            +
                #   * {Types::CreateRedshiftIdcApplicationResult#redshift_idc_application #redshift_idc_application} => Types::RedshiftIdcApplication
         | 
| 2531 | 
            +
                #
         | 
| 2532 | 
            +
                # @example Request syntax with placeholder values
         | 
| 2533 | 
            +
                #
         | 
| 2534 | 
            +
                #   resp = client.create_redshift_idc_application({
         | 
| 2535 | 
            +
                #     idc_instance_arn: "String", # required
         | 
| 2536 | 
            +
                #     redshift_idc_application_name: "RedshiftIdcApplicationName", # required
         | 
| 2537 | 
            +
                #     identity_namespace: "IdentityNamespaceString",
         | 
| 2538 | 
            +
                #     idc_display_name: "IdcDisplayNameString", # required
         | 
| 2539 | 
            +
                #     iam_role_arn: "String", # required
         | 
| 2540 | 
            +
                #     authorized_token_issuer_list: [
         | 
| 2541 | 
            +
                #       {
         | 
| 2542 | 
            +
                #         trusted_token_issuer_arn: "String",
         | 
| 2543 | 
            +
                #         authorized_audiences_list: ["String"],
         | 
| 2544 | 
            +
                #       },
         | 
| 2545 | 
            +
                #     ],
         | 
| 2546 | 
            +
                #     service_integrations: [
         | 
| 2547 | 
            +
                #       {
         | 
| 2548 | 
            +
                #         lake_formation: [
         | 
| 2549 | 
            +
                #           {
         | 
| 2550 | 
            +
                #             lake_formation_query: {
         | 
| 2551 | 
            +
                #               authorization: "Enabled", # required, accepts Enabled, Disabled
         | 
| 2552 | 
            +
                #             },
         | 
| 2553 | 
            +
                #           },
         | 
| 2554 | 
            +
                #         ],
         | 
| 2555 | 
            +
                #       },
         | 
| 2556 | 
            +
                #     ],
         | 
| 2557 | 
            +
                #   })
         | 
| 2558 | 
            +
                #
         | 
| 2559 | 
            +
                # @example Response structure
         | 
| 2560 | 
            +
                #
         | 
| 2561 | 
            +
                #   resp.redshift_idc_application.idc_instance_arn #=> String
         | 
| 2562 | 
            +
                #   resp.redshift_idc_application.redshift_idc_application_name #=> String
         | 
| 2563 | 
            +
                #   resp.redshift_idc_application.redshift_idc_application_arn #=> String
         | 
| 2564 | 
            +
                #   resp.redshift_idc_application.identity_namespace #=> String
         | 
| 2565 | 
            +
                #   resp.redshift_idc_application.idc_display_name #=> String
         | 
| 2566 | 
            +
                #   resp.redshift_idc_application.iam_role_arn #=> String
         | 
| 2567 | 
            +
                #   resp.redshift_idc_application.idc_managed_application_arn #=> String
         | 
| 2568 | 
            +
                #   resp.redshift_idc_application.idc_onboard_status #=> String
         | 
| 2569 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list #=> Array
         | 
| 2570 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list[0].trusted_token_issuer_arn #=> String
         | 
| 2571 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list #=> Array
         | 
| 2572 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list[0] #=> String
         | 
| 2573 | 
            +
                #   resp.redshift_idc_application.service_integrations #=> Array
         | 
| 2574 | 
            +
                #   resp.redshift_idc_application.service_integrations[0].lake_formation #=> Array
         | 
| 2575 | 
            +
                #   resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
         | 
| 2576 | 
            +
                #
         | 
| 2577 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateRedshiftIdcApplication AWS API Documentation
         | 
| 2578 | 
            +
                #
         | 
| 2579 | 
            +
                # @overload create_redshift_idc_application(params = {})
         | 
| 2580 | 
            +
                # @param [Hash] params ({})
         | 
| 2581 | 
            +
                def create_redshift_idc_application(params = {}, options = {})
         | 
| 2582 | 
            +
                  req = build_request(:create_redshift_idc_application, params)
         | 
| 2583 | 
            +
                  req.send_request(options)
         | 
| 2584 | 
            +
                end
         | 
| 2585 | 
            +
             | 
| 2491 2586 | 
             
                # Creates a scheduled action. A scheduled action contains a schedule and
         | 
| 2492 2587 | 
             
                # an Amazon Redshift API action. For example, you can create a schedule
         | 
| 2493 2588 | 
             
                # of when to run the `ResizeCluster` API operation.
         | 
| @@ -3361,12 +3456,16 @@ module Aws::Redshift | |
| 3361 3456 | 
             
                #   The identifier of the cluster to delete a custom domain association
         | 
| 3362 3457 | 
             
                #   for.
         | 
| 3363 3458 | 
             
                #
         | 
| 3459 | 
            +
                # @option params [required, String] :custom_domain_name
         | 
| 3460 | 
            +
                #   The custom domain name for the custom domain association.
         | 
| 3461 | 
            +
                #
         | 
| 3364 3462 | 
             
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         | 
| 3365 3463 | 
             
                #
         | 
| 3366 3464 | 
             
                # @example Request syntax with placeholder values
         | 
| 3367 3465 | 
             
                #
         | 
| 3368 3466 | 
             
                #   resp = client.delete_custom_domain_association({
         | 
| 3369 3467 | 
             
                #     cluster_identifier: "String", # required
         | 
| 3468 | 
            +
                #     custom_domain_name: "CustomDomainNameString", # required
         | 
| 3370 3469 | 
             
                #   })
         | 
| 3371 3470 | 
             
                #
         | 
| 3372 3471 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCustomDomainAssociation AWS API Documentation
         | 
| @@ -3545,6 +3644,28 @@ module Aws::Redshift | |
| 3545 3644 | 
             
                  req.send_request(options)
         | 
| 3546 3645 | 
             
                end
         | 
| 3547 3646 |  | 
| 3647 | 
            +
                # Deletes an Amazon Redshift IAM Identity Center application.
         | 
| 3648 | 
            +
                #
         | 
| 3649 | 
            +
                # @option params [required, String] :redshift_idc_application_arn
         | 
| 3650 | 
            +
                #   The ARN for a deleted Amazon Redshift IAM Identity Center application.
         | 
| 3651 | 
            +
                #
         | 
| 3652 | 
            +
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         | 
| 3653 | 
            +
                #
         | 
| 3654 | 
            +
                # @example Request syntax with placeholder values
         | 
| 3655 | 
            +
                #
         | 
| 3656 | 
            +
                #   resp = client.delete_redshift_idc_application({
         | 
| 3657 | 
            +
                #     redshift_idc_application_arn: "String", # required
         | 
| 3658 | 
            +
                #   })
         | 
| 3659 | 
            +
                #
         | 
| 3660 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteRedshiftIdcApplication AWS API Documentation
         | 
| 3661 | 
            +
                #
         | 
| 3662 | 
            +
                # @overload delete_redshift_idc_application(params = {})
         | 
| 3663 | 
            +
                # @param [Hash] params ({})
         | 
| 3664 | 
            +
                def delete_redshift_idc_application(params = {}, options = {})
         | 
| 3665 | 
            +
                  req = build_request(:delete_redshift_idc_application, params)
         | 
| 3666 | 
            +
                  req.send_request(options)
         | 
| 3667 | 
            +
                end
         | 
| 3668 | 
            +
             | 
| 3548 3669 | 
             
                # Deletes the resource policy for a specified resource.
         | 
| 3549 3670 | 
             
                #
         | 
| 3550 3671 | 
             
                # @option params [required, String] :resource_arn
         | 
| @@ -6099,6 +6220,71 @@ module Aws::Redshift | |
| 6099 6220 | 
             
                  req.send_request(options)
         | 
| 6100 6221 | 
             
                end
         | 
| 6101 6222 |  | 
| 6223 | 
            +
                # Lists the Amazon Redshift IAM Identity Center applications.
         | 
| 6224 | 
            +
                #
         | 
| 6225 | 
            +
                # @option params [String] :redshift_idc_application_arn
         | 
| 6226 | 
            +
                #   The ARN for the Redshift application that integrates with IAM Identity
         | 
| 6227 | 
            +
                #   Center.
         | 
| 6228 | 
            +
                #
         | 
| 6229 | 
            +
                # @option params [Integer] :max_records
         | 
| 6230 | 
            +
                #   The maximum number of response records to return in each call. If the
         | 
| 6231 | 
            +
                #   number of remaining response records exceeds the specified MaxRecords
         | 
| 6232 | 
            +
                #   value, a value is returned in a marker field of the response. You can
         | 
| 6233 | 
            +
                #   retrieve the next set of records by retrying the command with the
         | 
| 6234 | 
            +
                #   returned marker value.
         | 
| 6235 | 
            +
                #
         | 
| 6236 | 
            +
                # @option params [String] :marker
         | 
| 6237 | 
            +
                #   A value that indicates the starting point for the next set of response
         | 
| 6238 | 
            +
                #   records in a subsequent request. If a value is returned in a response,
         | 
| 6239 | 
            +
                #   you can retrieve the next set of records by providing this returned
         | 
| 6240 | 
            +
                #   marker value in the Marker parameter and retrying the command. If the
         | 
| 6241 | 
            +
                #   Marker field is empty, all response records have been retrieved for
         | 
| 6242 | 
            +
                #   the request.
         | 
| 6243 | 
            +
                #
         | 
| 6244 | 
            +
                # @return [Types::DescribeRedshiftIdcApplicationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 6245 | 
            +
                #
         | 
| 6246 | 
            +
                #   * {Types::DescribeRedshiftIdcApplicationsResult#redshift_idc_applications #redshift_idc_applications} => Array<Types::RedshiftIdcApplication>
         | 
| 6247 | 
            +
                #   * {Types::DescribeRedshiftIdcApplicationsResult#marker #marker} => String
         | 
| 6248 | 
            +
                #
         | 
| 6249 | 
            +
                # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
         | 
| 6250 | 
            +
                #
         | 
| 6251 | 
            +
                # @example Request syntax with placeholder values
         | 
| 6252 | 
            +
                #
         | 
| 6253 | 
            +
                #   resp = client.describe_redshift_idc_applications({
         | 
| 6254 | 
            +
                #     redshift_idc_application_arn: "String",
         | 
| 6255 | 
            +
                #     max_records: 1,
         | 
| 6256 | 
            +
                #     marker: "String",
         | 
| 6257 | 
            +
                #   })
         | 
| 6258 | 
            +
                #
         | 
| 6259 | 
            +
                # @example Response structure
         | 
| 6260 | 
            +
                #
         | 
| 6261 | 
            +
                #   resp.redshift_idc_applications #=> Array
         | 
| 6262 | 
            +
                #   resp.redshift_idc_applications[0].idc_instance_arn #=> String
         | 
| 6263 | 
            +
                #   resp.redshift_idc_applications[0].redshift_idc_application_name #=> String
         | 
| 6264 | 
            +
                #   resp.redshift_idc_applications[0].redshift_idc_application_arn #=> String
         | 
| 6265 | 
            +
                #   resp.redshift_idc_applications[0].identity_namespace #=> String
         | 
| 6266 | 
            +
                #   resp.redshift_idc_applications[0].idc_display_name #=> String
         | 
| 6267 | 
            +
                #   resp.redshift_idc_applications[0].iam_role_arn #=> String
         | 
| 6268 | 
            +
                #   resp.redshift_idc_applications[0].idc_managed_application_arn #=> String
         | 
| 6269 | 
            +
                #   resp.redshift_idc_applications[0].idc_onboard_status #=> String
         | 
| 6270 | 
            +
                #   resp.redshift_idc_applications[0].authorized_token_issuer_list #=> Array
         | 
| 6271 | 
            +
                #   resp.redshift_idc_applications[0].authorized_token_issuer_list[0].trusted_token_issuer_arn #=> String
         | 
| 6272 | 
            +
                #   resp.redshift_idc_applications[0].authorized_token_issuer_list[0].authorized_audiences_list #=> Array
         | 
| 6273 | 
            +
                #   resp.redshift_idc_applications[0].authorized_token_issuer_list[0].authorized_audiences_list[0] #=> String
         | 
| 6274 | 
            +
                #   resp.redshift_idc_applications[0].service_integrations #=> Array
         | 
| 6275 | 
            +
                #   resp.redshift_idc_applications[0].service_integrations[0].lake_formation #=> Array
         | 
| 6276 | 
            +
                #   resp.redshift_idc_applications[0].service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
         | 
| 6277 | 
            +
                #   resp.marker #=> String
         | 
| 6278 | 
            +
                #
         | 
| 6279 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeRedshiftIdcApplications AWS API Documentation
         | 
| 6280 | 
            +
                #
         | 
| 6281 | 
            +
                # @overload describe_redshift_idc_applications(params = {})
         | 
| 6282 | 
            +
                # @param [Hash] params ({})
         | 
| 6283 | 
            +
                def describe_redshift_idc_applications(params = {}, options = {})
         | 
| 6284 | 
            +
                  req = build_request(:describe_redshift_idc_applications, params)
         | 
| 6285 | 
            +
                  req.send_request(options)
         | 
| 6286 | 
            +
                end
         | 
| 6287 | 
            +
             | 
| 6102 6288 | 
             
                # Returns exchange status details and associated metadata for a
         | 
| 6103 6289 | 
             
                # reserved-node exchange. Statuses include such values as in progress
         | 
| 6104 6290 | 
             
                # and requested.
         | 
| @@ -9440,10 +9626,10 @@ module Aws::Redshift | |
| 9440 9626 |  | 
| 9441 9627 | 
             
                # Contains information for changing a custom domain association.
         | 
| 9442 9628 | 
             
                #
         | 
| 9443 | 
            -
                # @option params [String] :custom_domain_name
         | 
| 9629 | 
            +
                # @option params [required, String] :custom_domain_name
         | 
| 9444 9630 | 
             
                #   The custom domain name for a changed custom domain association.
         | 
| 9445 9631 | 
             
                #
         | 
| 9446 | 
            -
                # @option params [String] :custom_domain_certificate_arn
         | 
| 9632 | 
            +
                # @option params [required, String] :custom_domain_certificate_arn
         | 
| 9447 9633 | 
             
                #   The certificate Amazon Resource Name (ARN) for the changed custom
         | 
| 9448 9634 | 
             
                #   domain association.
         | 
| 9449 9635 | 
             
                #
         | 
| @@ -9461,8 +9647,8 @@ module Aws::Redshift | |
| 9461 9647 | 
             
                # @example Request syntax with placeholder values
         | 
| 9462 9648 | 
             
                #
         | 
| 9463 9649 | 
             
                #   resp = client.modify_custom_domain_association({
         | 
| 9464 | 
            -
                #     custom_domain_name: "CustomDomainNameString",
         | 
| 9465 | 
            -
                #     custom_domain_certificate_arn: "CustomDomainCertificateArnString",
         | 
| 9650 | 
            +
                #     custom_domain_name: "CustomDomainNameString", # required
         | 
| 9651 | 
            +
                #     custom_domain_certificate_arn: "CustomDomainCertificateArnString", # required
         | 
| 9466 9652 | 
             
                #     cluster_identifier: "String", # required
         | 
| 9467 9653 | 
             
                #   })
         | 
| 9468 9654 | 
             
                #
         | 
| @@ -9633,6 +9819,90 @@ module Aws::Redshift | |
| 9633 9819 | 
             
                  req.send_request(options)
         | 
| 9634 9820 | 
             
                end
         | 
| 9635 9821 |  | 
| 9822 | 
            +
                # Changes an existing Amazon Redshift IAM Identity Center application.
         | 
| 9823 | 
            +
                #
         | 
| 9824 | 
            +
                # @option params [required, String] :redshift_idc_application_arn
         | 
| 9825 | 
            +
                #   The ARN for the Redshift application that integrates with IAM Identity
         | 
| 9826 | 
            +
                #   Center.
         | 
| 9827 | 
            +
                #
         | 
| 9828 | 
            +
                # @option params [String] :identity_namespace
         | 
| 9829 | 
            +
                #   The namespace for the Amazon Redshift IAM Identity Center application
         | 
| 9830 | 
            +
                #   to change. It determines which managed application verifies the
         | 
| 9831 | 
            +
                #   connection token.
         | 
| 9832 | 
            +
                #
         | 
| 9833 | 
            +
                # @option params [String] :iam_role_arn
         | 
| 9834 | 
            +
                #   The IAM role ARN associated with the Amazon Redshift IAM Identity
         | 
| 9835 | 
            +
                #   Center application to change. It has the required permissions to be
         | 
| 9836 | 
            +
                #   assumed and invoke the IDC Identity Center API.
         | 
| 9837 | 
            +
                #
         | 
| 9838 | 
            +
                # @option params [String] :idc_display_name
         | 
| 9839 | 
            +
                #   The display name for the Amazon Redshift IAM Identity Center
         | 
| 9840 | 
            +
                #   application to change. It appears on the console.
         | 
| 9841 | 
            +
                #
         | 
| 9842 | 
            +
                # @option params [Array<Types::AuthorizedTokenIssuer>] :authorized_token_issuer_list
         | 
| 9843 | 
            +
                #   The authorized token issuer list for the Amazon Redshift IAM Identity
         | 
| 9844 | 
            +
                #   Center application to change.
         | 
| 9845 | 
            +
                #
         | 
| 9846 | 
            +
                # @option params [Array<Types::ServiceIntegrationsUnion>] :service_integrations
         | 
| 9847 | 
            +
                #   A collection of service integrations associated with the application.
         | 
| 9848 | 
            +
                #
         | 
| 9849 | 
            +
                # @return [Types::ModifyRedshiftIdcApplicationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
         | 
| 9850 | 
            +
                #
         | 
| 9851 | 
            +
                #   * {Types::ModifyRedshiftIdcApplicationResult#redshift_idc_application #redshift_idc_application} => Types::RedshiftIdcApplication
         | 
| 9852 | 
            +
                #
         | 
| 9853 | 
            +
                # @example Request syntax with placeholder values
         | 
| 9854 | 
            +
                #
         | 
| 9855 | 
            +
                #   resp = client.modify_redshift_idc_application({
         | 
| 9856 | 
            +
                #     redshift_idc_application_arn: "String", # required
         | 
| 9857 | 
            +
                #     identity_namespace: "IdentityNamespaceString",
         | 
| 9858 | 
            +
                #     iam_role_arn: "String",
         | 
| 9859 | 
            +
                #     idc_display_name: "IdcDisplayNameString",
         | 
| 9860 | 
            +
                #     authorized_token_issuer_list: [
         | 
| 9861 | 
            +
                #       {
         | 
| 9862 | 
            +
                #         trusted_token_issuer_arn: "String",
         | 
| 9863 | 
            +
                #         authorized_audiences_list: ["String"],
         | 
| 9864 | 
            +
                #       },
         | 
| 9865 | 
            +
                #     ],
         | 
| 9866 | 
            +
                #     service_integrations: [
         | 
| 9867 | 
            +
                #       {
         | 
| 9868 | 
            +
                #         lake_formation: [
         | 
| 9869 | 
            +
                #           {
         | 
| 9870 | 
            +
                #             lake_formation_query: {
         | 
| 9871 | 
            +
                #               authorization: "Enabled", # required, accepts Enabled, Disabled
         | 
| 9872 | 
            +
                #             },
         | 
| 9873 | 
            +
                #           },
         | 
| 9874 | 
            +
                #         ],
         | 
| 9875 | 
            +
                #       },
         | 
| 9876 | 
            +
                #     ],
         | 
| 9877 | 
            +
                #   })
         | 
| 9878 | 
            +
                #
         | 
| 9879 | 
            +
                # @example Response structure
         | 
| 9880 | 
            +
                #
         | 
| 9881 | 
            +
                #   resp.redshift_idc_application.idc_instance_arn #=> String
         | 
| 9882 | 
            +
                #   resp.redshift_idc_application.redshift_idc_application_name #=> String
         | 
| 9883 | 
            +
                #   resp.redshift_idc_application.redshift_idc_application_arn #=> String
         | 
| 9884 | 
            +
                #   resp.redshift_idc_application.identity_namespace #=> String
         | 
| 9885 | 
            +
                #   resp.redshift_idc_application.idc_display_name #=> String
         | 
| 9886 | 
            +
                #   resp.redshift_idc_application.iam_role_arn #=> String
         | 
| 9887 | 
            +
                #   resp.redshift_idc_application.idc_managed_application_arn #=> String
         | 
| 9888 | 
            +
                #   resp.redshift_idc_application.idc_onboard_status #=> String
         | 
| 9889 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list #=> Array
         | 
| 9890 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list[0].trusted_token_issuer_arn #=> String
         | 
| 9891 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list #=> Array
         | 
| 9892 | 
            +
                #   resp.redshift_idc_application.authorized_token_issuer_list[0].authorized_audiences_list[0] #=> String
         | 
| 9893 | 
            +
                #   resp.redshift_idc_application.service_integrations #=> Array
         | 
| 9894 | 
            +
                #   resp.redshift_idc_application.service_integrations[0].lake_formation #=> Array
         | 
| 9895 | 
            +
                #   resp.redshift_idc_application.service_integrations[0].lake_formation[0].lake_formation_query.authorization #=> String, one of "Enabled", "Disabled"
         | 
| 9896 | 
            +
                #
         | 
| 9897 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyRedshiftIdcApplication AWS API Documentation
         | 
| 9898 | 
            +
                #
         | 
| 9899 | 
            +
                # @overload modify_redshift_idc_application(params = {})
         | 
| 9900 | 
            +
                # @param [Hash] params ({})
         | 
| 9901 | 
            +
                def modify_redshift_idc_application(params = {}, options = {})
         | 
| 9902 | 
            +
                  req = build_request(:modify_redshift_idc_application, params)
         | 
| 9903 | 
            +
                  req.send_request(options)
         | 
| 9904 | 
            +
                end
         | 
| 9905 | 
            +
             | 
| 9636 9906 | 
             
                # Modifies a scheduled action.
         | 
| 9637 9907 | 
             
                #
         | 
| 9638 9908 | 
             
                # @option params [required, String] :scheduled_action_name
         | 
| @@ -11991,7 +12261,7 @@ module Aws::Redshift | |
| 11991 12261 | 
             
                    params: params,
         | 
| 11992 12262 | 
             
                    config: config)
         | 
| 11993 12263 | 
             
                  context[:gem_name] = 'aws-sdk-redshift'
         | 
| 11994 | 
            -
                  context[:gem_version] = '1. | 
| 12264 | 
            +
                  context[:gem_version] = '1.104.0'
         | 
| 11995 12265 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 11996 12266 | 
             
                end
         | 
| 11997 12267 |  |