application_providers
Creates, updates, deletes, gets or lists an application_providers resource.
Overview
| Name | application_providers |
| Type | Resource |
| Id | aws.sso_admin.application_providers |
Fields
The following fields are returned by SELECT queries:
- describe_application_provider
- list_application_providers
| Name | Datatype | Description |
|---|---|---|
application_provider_arn | string | The ARN of the application provider. (pattern: <code>arn:aws(-[a-z]{1,5}){0,3}:sso::aws:applicationProvider/[a-zA-Z0-9-/]+</code>) |
display_data | object | A structure with details about the display data for the application provider. |
federation_protocol | string | The protocol used to federate to the application provider. (SAML, OAUTH) |
resource_server_config | object | A structure with details about the receiving application. |
| Name | Datatype | Description |
|---|---|---|
application_provider_arn | string | The ARN of the application provider. (pattern: <code>arn:aws(-[a-z]{1,5}){0,3}:sso::aws:applicationProvider/[a-zA-Z0-9-/]+</code>) |
display_data | object | A structure that describes how IAM Identity Center represents the application provider in the portal. |
federation_protocol | string | The protocol that the application provider uses to perform federation. (SAML, OAUTH) |
resource_server_config | object | A structure that describes the application provider's resource server. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_application_provider | select | region | 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. | |
list_application_providers | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_application_provider
- list_application_providers
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
;
Lists the application providers configured in the IAM Identity Center identity store.
SELECT
application_provider_arn,
display_data,
federation_protocol,
resource_server_config
FROM aws.sso_admin.application_providers
WHERE region = '{{ region }}' -- required
;