WorkLink / Client / list_website_authorization_providers

list_website_authorization_providers#

WorkLink.Client.list_website_authorization_providers(**kwargs)#

Retrieves a list of website authorization providers associated with a specified fleet.

Danger

This operation is deprecated and may not function as expected. This operation should not be used going forward and is only kept for the purpose of backwards compatiblity.

See also: AWS API Documentation

Request Syntax

response = client.list_website_authorization_providers(
    FleetArn='string',
    NextToken='string',
    MaxResults=123
)
Parameters:
  • FleetArn (string) –

    [REQUIRED]

    The ARN of the fleet.

  • NextToken (string) – The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

  • MaxResults (integer) – The maximum number of results to be included in the next page.

Return type:

dict

Returns:

Response Syntax

{
    'WebsiteAuthorizationProviders': [
        {
            'AuthorizationProviderId': 'string',
            'AuthorizationProviderType': 'SAML',
            'DomainName': 'string',
            'CreatedTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • WebsiteAuthorizationProviders (list) –

      The website authorization providers.

      • (dict) –

        The summary of the website authorization provider.

        • AuthorizationProviderId (string) –

          A unique identifier for the authorization provider.

        • AuthorizationProviderType (string) –

          The authorization provider type.

        • DomainName (string) –

          The domain name of the authorization provider. This applies only to SAML-based authorization providers.

        • CreatedTime (datetime) –

          The time of creation.

    • NextToken (string) –

      The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

Exceptions