Skip to main content

identity_center_applications

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

Overview

Nameidentity_center_applications
TypeResource
Idaws.workmail.identity_center_applications

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_identity_center_applicationinsertregion, Name, InstanceArnCreates the WorkMail application in IAM Identity Center that can be used later in the WorkMail - IdC integration. For more information, see PutIdentityProviderConfiguration. This action does not affect the authentication settings for any WorkMail organizations.
delete_identity_center_applicationdeleteregionDeletes the IAM Identity Center application from WorkMail. This action does not affect the authentication settings for any WorkMail organizations.

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)

INSERT examples

Creates the WorkMail application in IAM Identity Center that can be used later in the WorkMail - IdC integration. For more information, see PutIdentityProviderConfiguration. This action does not affect the authentication settings for any WorkMail organizations.

INSERT INTO aws.workmail.identity_center_applications (
Name,
InstanceArn,
ClientToken,
region
)
SELECT
'{{ Name }}' /* required */,
'{{ InstanceArn }}' /* required */,
'{{ ClientToken }}',
'{{ region }}'
RETURNING
application_arn
;

DELETE examples

Deletes the IAM Identity Center application from WorkMail. This action does not affect the authentication settings for any WorkMail organizations.

DELETE FROM aws.workmail.identity_center_applications
WHERE region = '{{ region }}' --required
;