Redshift / Paginator / DescribeRedshiftIdcApplications

DescribeRedshiftIdcApplications#

class Redshift.Paginator.DescribeRedshiftIdcApplications#
paginator = client.get_paginator('describe_redshift_idc_applications')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from Redshift.Client.describe_redshift_idc_applications().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    RedshiftIdcApplicationArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • RedshiftIdcApplicationArn (string) – The ARN for the Redshift application that integrates with IAM Identity Center.

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'RedshiftIdcApplications': [
        {
            'IdcInstanceArn': 'string',
            'RedshiftIdcApplicationName': 'string',
            'RedshiftIdcApplicationArn': 'string',
            'IdentityNamespace': 'string',
            'IdcDisplayName': 'string',
            'IamRoleArn': 'string',
            'IdcManagedApplicationArn': 'string',
            'IdcOnboardStatus': 'string',
            'AuthorizedTokenIssuerList': [
                {
                    'TrustedTokenIssuerArn': 'string',
                    'AuthorizedAudiencesList': [
                        'string',
                    ]
                },
            ],
            'ServiceIntegrations': [
                {
                    'LakeFormation': [
                        {
                            'LakeFormationQuery': {
                                'Authorization': 'Enabled'|'Disabled'
                            }
                        },
                    ]
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • RedshiftIdcApplications (list) –

      The list of Amazon Redshift IAM Identity Center applications.

      • (dict) –

        Contains properties for the Redshift IDC application.

        • IdcInstanceArn (string) –

          The ARN for the IAM Identity Center instance that Redshift integrates with.

        • RedshiftIdcApplicationName (string) –

          The name of the Redshift application in IAM Identity Center.

        • RedshiftIdcApplicationArn (string) –

          The ARN for the Redshift application that integrates with IAM Identity Center.

        • IdentityNamespace (string) –

          The identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.

        • IdcDisplayName (string) –

          The display name for the Amazon Redshift IAM Identity Center application. It appears on the console.

        • IamRoleArn (string) –

          The ARN for the Amazon Redshift IAM Identity Center application. It has the required permissions to be assumed and invoke the IDC Identity Center API.

        • IdcManagedApplicationArn (string) –

          The ARN for the Amazon Redshift IAM Identity Center application.

        • IdcOnboardStatus (string) –

          The onboarding status for the Amazon Redshift IAM Identity Center application.

        • AuthorizedTokenIssuerList (list) –

          The authorized token issuer list for the Amazon Redshift IAM Identity Center application.

          • (dict) –

            The authorized token issuer for the Amazon Redshift IAM Identity Center application.

            • TrustedTokenIssuerArn (string) –

              The ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.

            • AuthorizedAudiencesList (list) –

              The list of audiences for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.

              • (string) –

        • ServiceIntegrations (list) –

          A list of service integrations for the Redshift IAM Identity Center application.

          • (dict) –

            A list of service integrations.

            Note

            This is a Tagged Union structure. Only one of the following top level keys will be set: LakeFormation. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

            'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
            
            • LakeFormation (list) –

              A list of scopes set up for Lake Formation integration.

              • (dict) –

                A list of scopes set up for Lake Formation integration.

                Note

                This is a Tagged Union structure. Only one of the following top level keys will be set: LakeFormationQuery. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER is as follows:

                'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
                
                • LakeFormationQuery (dict) –

                  The Lake Formation scope.

                  • Authorization (string) –

                    Determines whether the query scope is enabled or disabled.

    • NextToken (string) –

      A token to resume pagination.