Learn R Programming

paws.security.identity (version 0.1.12)

cognitosync_get_bulk_publish_details: Get the status of the last BulkPublish operation for an identity pool

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.

Usage

cognitosync_get_bulk_publish_details(IdentityPoolId)

Value

A list with the following syntax:

list(
  IdentityPoolId = "string",
  BulkPublishStartTime = as.POSIXct(
    "2015-01-01"
  ),
  BulkPublishCompleteTime = as.POSIXct(
    "2015-01-01"
  ),
  BulkPublishStatus = "NOT_STARTED"|"IN_PROGRESS"|"FAILED"|"SUCCEEDED",
  FailureMessage = "string"
)

Arguments

IdentityPoolId

[required] 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.

Request syntax

svc$get_bulk_publish_details(
  IdentityPoolId = "string"
)