Skip to main content

flow_metadatas

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

Overview

Nameflow_metadatas
TypeResource
Idaws.quicksight.flow_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the flow.
created_timestring (date-time)The time this flow was created.
descriptionstringThe description for the flow.
flow_idstringThe unique identifier of the flow. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
last_updated_timestring (date-time)The last time this flow was modified.
namestringA display name for the flow.
publish_statestringThe publish state for the flow. Valid values are DRAFT, PUBLISHED, or PENDING_APPROVAL. (PUBLISHED, DRAFT, PENDING_APPROVAL)
request_idstringThe Amazon Web Services request ID for this operation.
run_countintegerThe number of runs done for the flow.
statusintegerThe HTTP status of the request.
user_countintegerThe number of users who have used the flow.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_flow_metadataselectaws_account_id, flow_id, regionRetrieves the metadata of a flow, not including its definition specifying the steps.

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
aws_account_idstringThe ID of the Amazon Web Services account that contains the flow that you are getting metadata for.
flow_idstringThe unique identifier of the flow.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the metadata of a flow, not including its definition specifying the steps.

SELECT
arn,
created_time,
description,
flow_id,
last_updated_time,
name,
publish_state,
request_id,
run_count,
status,
user_count
FROM aws.quicksight.flow_metadatas
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND flow_id = '{{ flow_id }}' -- required
AND region = '{{ region }}' -- required
;