application_entitlement_associations
Creates, updates, deletes or gets an application_entitlement_association resource or lists application_entitlement_associations in a region
Overview
| Name | application_entitlement_associations |
| Type | Resource |
| Description | Resource Type definition for AWS::AppStream::ApplicationEntitlementAssociation |
| Id | aws.appstream.application_entitlement_associations |
Fields
| Name | Datatype | Description |
|---|---|---|
stack_name | string | |
entitlement_name | string | |
application_identifier | string | |
region | string | AWS region. |
For more information, see AWS::AppStream::ApplicationEntitlementAssociation.
Methods
| Name | Accessible by | Required Params |
|---|---|---|
create_resource | INSERT | StackName, EntitlementName, ApplicationIdentifier, region |
delete_resource | DELETE | data__Identifier, region |
get_resource | SELECT | data__Identifier, region |
SELECT examples
Gets all properties from an individual application_entitlement_association.
SELECT
region,
stack_name,
entitlement_name,
application_identifier
FROM aws.appstream.application_entitlement_associations
WHERE region = 'us-east-1' AND data__Identifier = '<StackName>|<EntitlementName>|<ApplicationIdentifier>';
INSERT example
Use the following StackQL query and manifest file to create a new application_entitlement_association resource, using stack-deploy.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO aws.appstream.application_entitlement_associations (
StackName,
EntitlementName,
ApplicationIdentifier,
region
)
SELECT
'{{ StackName }}',
'{{ EntitlementName }}',
'{{ ApplicationIdentifier }}',
'{{ region }}';
/*+ create */
INSERT INTO aws.appstream.application_entitlement_associations (
StackName,
EntitlementName,
ApplicationIdentifier,
region
)
SELECT
'{{ StackName }}',
'{{ EntitlementName }}',
'{{ ApplicationIdentifier }}',
'{{ region }}';
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: application_entitlement_association
props:
- name: StackName
value: '{{ StackName }}'
- name: EntitlementName
value: '{{ EntitlementName }}'
- name: ApplicationIdentifier
value: '{{ ApplicationIdentifier }}'
DELETE example
/*+ delete */
DELETE FROM aws.appstream.application_entitlement_associations
WHERE data__Identifier = '<StackName|EntitlementName|ApplicationIdentifier>'
AND region = 'us-east-1';
Permissions
To operate on the application_entitlement_associations resource, the following permissions are required:
Create
appstream:AssociateApplicationToEntitlement,
appstream:ListEntitledApplications
Read
appstream:ListEntitledApplications
Delete
appstream:DisassociateApplicationFromEntitlement,
appstream:ListEntitledApplications