Skip to main content

applications

Creates, updates, deletes or gets an application resource or lists applications in a region

Overview

Nameapplications
TypeResource
DescriptionResource Type definition for Identity Center (SSO) Application
Idawscc.sso.applications

Fields

NameDatatypeDescription
namestringThe name you want to assign to this Identity Center (SSO) Application
descriptionstringThe description information for the Identity Center (SSO) Application
instance_arnstringThe ARN of the instance of IAM Identity Center under which the operation will run
application_arnstringThe Application ARN that is returned upon creation of the Identity Center (SSO) Application
application_provider_arnstringThe ARN of the application provider under which the operation will run
statusstringSpecifies whether the application is enabled or disabled
portal_optionsobjectA structure that describes the options for the portal associated with an application
tagsarray
regionstringAWS region.

For more information, see AWS::SSO::Application.

Methods

NameResourceAccessible byRequired Params
create_resourceapplicationsINSERTName, InstanceArn, ApplicationProviderArn, region
delete_resourceapplicationsDELETEIdentifier, region
update_resourceapplicationsUPDATEIdentifier, PatchDocument, region
list_resourcesapplications_list_onlySELECTregion
get_resourceapplicationsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual application.

SELECT
region,
name,
description,
instance_arn,
application_arn,
application_provider_arn,
status,
portal_options,
tags
FROM awscc.sso.applications
WHERE
region = 'us-east-1' AND
Identifier = '{{ application_arn }}';

INSERT example

Use the following StackQL query and manifest file to create a new application resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.sso.applications (
Name,
InstanceArn,
ApplicationProviderArn,
region
)
SELECT
'{{ name }}',
'{{ instance_arn }}',
'{{ application_provider_arn }}',
'{{ region }}';

UPDATE example

Use the following StackQL query and manifest file to update a application resource, using stack-deploy.

/*+ update */
UPDATE awscc.sso.applications
SET PatchDocument = string('{{ {
"Name": name,
"Description": description,
"Status": status,
"PortalOptions": portal_options,
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ application_arn }}';

DELETE example

/*+ delete */
DELETE FROM awscc.sso.applications
WHERE
Identifier = '{{ application_arn }}' AND
region = 'us-east-1';

Permissions

To operate on the applications resource, the following permissions are required:

sso:CreateApplication,
sso:DescribeApplication,
sso:TagResource,
sso:ListTagsForResource