aws.cognito_sync.get_bulk_publish_details
Example SQL Queries
SELECT * FROMaws.cognito_sync.get_bulk_publish_detailsWHERE"identity_pool_id" = 'VALUE';Description
Get the status of the last BulkPublish operation for an identity pool.
This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity.
Table Definition
| Column Name | Column Data Type |
|---|---|
| identity_pool_id Required Input Column A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| bulk_publish_complete_time If BulkPublishStatus is SUCCEEDED, the time the last bulk publish operation completed. | TIMESTAMP_S |
| bulk_publish_start_time The date/time at which the last bulk publish was initiated. | TIMESTAMP_S |
| bulk_publish_status Status of the last bulk publish operation, valid values are: NOT_STARTED - No bulk publish has been requested for this identity pool IN_PROGRESS - Data is being published to the configured stream SUCCEEDED - All data for the identity pool has been published to the configured stream FAILED - Some portion of the data has failed to publish, check FailureMessage for the cause. | VARCHAR |
| failure_message If BulkPublishStatus is FAILED this field will contain the error message that caused the bulk publish to fail. | VARCHAR |