Skip to main content

persistent_app_uis

Creates, updates, deletes, gets or lists a persistent_app_uis resource.

Overview

Namepersistent_app_uis
TypeResource
Idaws.emr.persistent_app_uis

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
author_idstringThe author ID for the persistent application user interface object. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</code>)
creation_timestring (date-time)The creation date and time for the persistent application user interface object.
last_modified_timestring (date-time)The date and time the persistent application user interface object was last changed.
last_state_change_reasonstringThe reason the persistent application user interface object was last changed. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</code>)
persistent_app_ui_idstringThe identifier for the persistent application user interface object. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</code>)
persistent_app_ui_statusstringThe status for the persistent application user interface object. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</code>)
persistent_app_ui_type_listarrayThe type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.
tagsarrayA collection of tags for the persistent application user interface object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_persistent_app_uiselectregionDescribes a persistent application user interface.
create_persistent_app_uiinsertregion, TargetResourceArnCreates a persistent application user interface.

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)

SELECT examples

Describes a persistent application user interface.

SELECT
author_id,
creation_time,
last_modified_time,
last_state_change_reason,
persistent_app_ui_id,
persistent_app_ui_status,
persistent_app_ui_type_list,
tags
FROM aws.emr.persistent_app_uis
WHERE region = '{{ region }}' -- required
;

INSERT examples

Creates a persistent application user interface.

INSERT INTO aws.emr.persistent_app_uis (
TargetResourceArn,
EMRContainersConfig,
Tags,
XReferer,
ProfilerType,
region
)
SELECT
'{{ TargetResourceArn }}' /* required */,
'{{ EMRContainersConfig }}',
'{{ Tags }}',
'{{ XReferer }}',
'{{ ProfilerType }}',
'{{ region }}'
RETURNING
persistent_app_ui_id,
runtime_role_enabled_cluster
;