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 = '{{ region }}' 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 }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;

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 }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;

DELETE example

/*+ delete */
DELETE FROM awscc.sso.applications
WHERE
Identifier = '{{ application_arn }}' AND
region = '{{ region }}'
RETURNING
ErrorCode,
EventTime,
Identifier,
Operation,
OperationStatus,
RequestToken,
ResourceModel,
RetryAfter,
StatusMessage,
TypeName
;

Additional Parameters

Mutable resources in the Cloud Control provider support additional optional parameters which can be supplied with INSERT, UPDATE, or DELETE operations. These include:

ParameterDescription
ClientToken
A unique identifier to ensure the idempotency of the resource request.This allows the provider to accurately distinguish between retries and new requests.
A client token is valid for 36 hours once used.
After that, a resource request with the same client token is treated as a new request.
If you do not specify a client token, one is generated for inclusion in the request.
RoleArn
The ARN of the IAM role used to perform this resource operation.The role specified must have the permissions required for this operation.
If you do not specify a role, a temporary session is created using your AWS user credentials.
TypeVersionId
For private resource types, the type version to use in this resource operation.If you do not specify a resource version, the default version is used.

Permissions

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

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