Describe Activity
| sfn_describe_activity | R Documentation | 
Describes an activity¶
Description¶
Describes an activity.
This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.
Usage¶
sfn_describe_activity(activityArn)
Arguments¶
| activityArn | [required] The Amazon Resource Name (ARN) of the activity to describe. | 
Value¶
A list with the following syntax:
list(
  activityArn = "string",
  name = "string",
  creationDate = as.POSIXct(
    "2015-01-01"
  ),
  encryptionConfiguration = list(
    kmsKeyId = "string",
    kmsDataKeyReusePeriodSeconds = 123,
    type = "AWS_OWNED_KEY"|"CUSTOMER_MANAGED_KMS_KEY"
  )
)
Request syntax¶
svc$describe_activity(
  activityArn = "string"
)