Skip to main content

application_providers

Creates, updates, deletes, gets or lists an application_providers resource.

Overview

Nameapplication_providers
TypeResource
Idaws.sso_admin.application_providers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_provider_arnstringThe ARN of the application provider. (pattern: <code>arn:aws(-[a-z]{1,5}){0,3}:sso::aws:applicationProvider/[a-zA-Z0-9-/]+</code>)
display_dataobjectA structure with details about the display data for the application provider.
federation_protocolstringThe protocol used to federate to the application provider. (SAML, OAUTH)
resource_server_configobjectA structure with details about the receiving application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_application_providerselectregionRetrieves details about a provider that can be used to connect an Amazon Web Services managed application or customer managed application to IAM Identity Center.
list_application_providersselectregionLists the application providers configured in the IAM Identity Center identity store.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves details about a provider that can be used to connect an Amazon Web Services managed application or customer managed application to IAM Identity Center.

SELECT
application_provider_arn,
display_data,
federation_protocol,
resource_server_config
FROM aws.sso_admin.application_providers
WHERE region = '{{ region }}' -- required
;