Note:

You are viewing the documentation for an older major version of the AWS CLI (version 1).

AWS CLI version 2, the latest major version of AWS CLI, is now stable and recommended for general use. To view this page for the AWS CLI version 2, click here. For more information see the AWS CLI version 2 installation instructions and migration guide.

[ aws . transfer ]

describe-execution

Description

You can use DescribeExecution to check the details of the execution of the specified workflow.

Note

This API call only returns details for in-progress workflows.

If you provide an ID for an execution that is not in progress, or if the execution doesn't match the specified workflow ID, you receive a ResourceNotFound exception.

See also: AWS API Documentation

Synopsis

  describe-execution
--execution-id <value>
--workflow-id <value>
[--cli-input-json <value>]
[--generate-cli-skeleton <value>]
[--debug]
[--endpoint-url <value>]
[--no-verify-ssl]
[--no-paginate]
[--output <value>]
[--query <value>]
[--profile <value>]
[--region <value>]
[--version <value>]
[--color <value>]
[--no-sign-request]
[--ca-bundle <value>]
[--cli-read-timeout <value>]
[--cli-connect-timeout <value>]

Options

--execution-id (string)

A unique identifier for the execution of a workflow.

--workflow-id (string)

A unique identifier for the workflow.

--cli-input-json (string) Performs service operation based on the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, the CLI values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally.

--generate-cli-skeleton (string) Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command.

Global Options

--debug (boolean)

Turn on debug logging.

--endpoint-url (string)

Override command's default URL with the given URL.

--no-verify-ssl (boolean)

By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates. This option overrides the default behavior of verifying SSL certificates.

--no-paginate (boolean)

Disable automatic pagination.

--output (string)

The formatting style for command output.

  • json
  • text
  • table

--query (string)

A JMESPath query to use in filtering the response data.

--profile (string)

Use a specific profile from your credential file.

--region (string)

The region to use. Overrides config/env settings.

--version (string)

Display the version of this tool.

--color (string)

Turn on/off color output.

  • on
  • off
  • auto

--no-sign-request (boolean)

Do not sign requests. Credentials will not be loaded if this argument is provided.

--ca-bundle (string)

The CA certificate bundle to use when verifying SSL certificates. Overrides config/env settings.

--cli-read-timeout (int)

The maximum socket read time in seconds. If the value is set to 0, the socket read will be blocking and not timeout. The default value is 60 seconds.

--cli-connect-timeout (int)

The maximum socket connect time in seconds. If the value is set to 0, the socket connect will be blocking and not timeout. The default value is 60 seconds.

Output

WorkflowId -> (string)

A unique identifier for the workflow.

Execution -> (structure)

The structure that contains the details of the workflow' execution.

ExecutionId -> (string)

A unique identifier for the execution of a workflow.

InitialFileLocation -> (structure)

A structure that describes the Amazon S3 or EFS file location. This is the file location when the execution begins: if the file is being copied, this is the initial (as opposed to destination) file location.

S3FileLocation -> (structure)

Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.

Bucket -> (string)

Specifies the S3 bucket that contains the file being used.

Key -> (string)

The name assigned to the file when it was created in Amazon S3. You use the object key to retrieve the object.

VersionId -> (string)

Specifies the file version.

Etag -> (string)

The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata.

EfsFileLocation -> (structure)

Specifies the Amazon EFS identifier and the path for the file being used.

FileSystemId -> (string)

The identifier of the file system, assigned by Amazon EFS.

Path -> (string)

The pathname for the folder being used by a workflow.

ServiceMetadata -> (structure)

A container object for the session details that are associated with a workflow.

UserDetails -> (structure)

The Server ID (ServerId ), Session ID (SessionId ) and user (UserName ) make up the UserDetails .

UserName -> (string)

A unique string that identifies a Transfer Family user associated with a server.

ServerId -> (string)

The system-assigned unique identifier for a Transfer server instance.

SessionId -> (string)

The system-assigned unique identifier for a session that corresponds to the workflow.

ExecutionRole -> (string)

The IAM role associated with the execution.

LoggingConfiguration -> (structure)

The IAM logging role associated with the execution.

LoggingRole -> (string)

The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or Amazon EFSevents. When set, you can view user activity in your CloudWatch logs.

LogGroupName -> (string)

The name of the CloudWatch logging group for the Transfer Family server to which this workflow belongs.

PosixProfile -> (structure)

The full POSIX identity, including user ID (Uid ), group ID (Gid ), and any secondary groups IDs (SecondaryGids ), that controls your users' access to your Amazon EFS file systems. The POSIX permissions that are set on files and directories in your file system determine the level of access your users get when transferring files into and out of your Amazon EFS file systems.

Uid -> (long)

The POSIX user ID used for all EFS operations by this user.

Gid -> (long)

The POSIX group ID used for all EFS operations by this user.

SecondaryGids -> (list)

The secondary POSIX group IDs used for all EFS operations by this user.

(long)

Status -> (string)

The status is one of the execution. Can be in progress, completed, exception encountered, or handling the exception.

Results -> (structure)

A structure that describes the execution results. This includes a list of the steps along with the details of each step, error type and message (if any), and the OnExceptionSteps structure.

Steps -> (list)

Specifies the details for the steps that are in the specified workflow.

(structure)

Specifies the following details for the step: error (if any), outputs (if any), and the step type.

StepType -> (string)

One of the available step types.

  • **COPY ** - Copy the file to another location.
  • **CUSTOM ** - Perform a custom step with an Lambda function target.
  • **DECRYPT ** - Decrypt a file that was encrypted before it was uploaded.
  • **DELETE ** - Delete the file.
  • **TAG ** - Add a tag to the file.

Outputs -> (string)

The values for the key/value pair applied as a tag to the file. Only applicable if the step type is TAG .

Error -> (structure)

Specifies the details for an error, if it occurred during execution of the specified workflow step.

Type -> (string)

Specifies the error type.

  • ALREADY_EXISTS : occurs for a copy step, if the overwrite option is not selected and a file with the same name already exists in the target location.
  • BAD_REQUEST : a general bad request: for example, a step that attempts to tag an EFS file returns BAD_REQUEST , as only S3 files can be tagged.
  • CUSTOM_STEP_FAILED : occurs when the custom step provided a callback that indicates failure.
  • INTERNAL_SERVER_ERROR : a catch-all error that can occur for a variety of reasons.
  • NOT_FOUND : occurs when a requested entity, for example a source file for a copy step, does not exist.
  • PERMISSION_DENIED : occurs if your policy does not contain the correct permissions to complete one or more of the steps in the workflow.
  • TIMEOUT : occurs when the execution times out.

Note

You can set the TimeoutSeconds for a custom step, anywhere from 1 second to 1800 seconds (30 minutes).
  • THROTTLED : occurs if you exceed the new execution refill rate of one workflow per second.

Message -> (string)

Specifies the descriptive message that corresponds to the ErrorType .

OnExceptionSteps -> (list)

Specifies the steps (actions) to take if errors are encountered during execution of the workflow.

(structure)

Specifies the following details for the step: error (if any), outputs (if any), and the step type.

StepType -> (string)

One of the available step types.

  • **COPY ** - Copy the file to another location.
  • **CUSTOM ** - Perform a custom step with an Lambda function target.
  • **DECRYPT ** - Decrypt a file that was encrypted before it was uploaded.
  • **DELETE ** - Delete the file.
  • **TAG ** - Add a tag to the file.

Outputs -> (string)

The values for the key/value pair applied as a tag to the file. Only applicable if the step type is TAG .

Error -> (structure)

Specifies the details for an error, if it occurred during execution of the specified workflow step.

Type -> (string)

Specifies the error type.

  • ALREADY_EXISTS : occurs for a copy step, if the overwrite option is not selected and a file with the same name already exists in the target location.
  • BAD_REQUEST : a general bad request: for example, a step that attempts to tag an EFS file returns BAD_REQUEST , as only S3 files can be tagged.
  • CUSTOM_STEP_FAILED : occurs when the custom step provided a callback that indicates failure.
  • INTERNAL_SERVER_ERROR : a catch-all error that can occur for a variety of reasons.
  • NOT_FOUND : occurs when a requested entity, for example a source file for a copy step, does not exist.
  • PERMISSION_DENIED : occurs if your policy does not contain the correct permissions to complete one or more of the steps in the workflow.
  • TIMEOUT : occurs when the execution times out.

Note

You can set the TimeoutSeconds for a custom step, anywhere from 1 second to 1800 seconds (30 minutes).
  • THROTTLED : occurs if you exceed the new execution refill rate of one workflow per second.

Message -> (string)

Specifies the descriptive message that corresponds to the ErrorType .