DescribeTaskResponse

public struct DescribeTaskResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The Amazon Resource Name (ARN) of the Amazon CloudWatch log group that was used to monitor and log events in the task. For more information on these groups, see Working with Log Groups and Log Streams in the Amazon CloudWatch User Guide.

    Declaration

    Swift

    public let cloudWatchLogGroupArn: String?
  • The time that the task was created.

    Declaration

    Swift

    public let creationTime: TimeStamp?
  • The Amazon Resource Name (ARN) of the task execution that is syncing files.

    Declaration

    Swift

    public let currentTaskExecutionArn: String?
  • The Amazon Resource Name (ARN) of the AWS storage resource’s location.

    Declaration

    Swift

    public let destinationLocationArn: String?
  • The Amazon Resource Name (ARN) of the destination ENIs (Elastic Network Interface) that was created for your subnet.

    Declaration

    Swift

    public let destinationNetworkInterfaceArns: [String]?
  • Errors that AWS DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.

    Declaration

    Swift

    public let errorCode: String?
  • Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.

    Declaration

    Swift

    public let errorDetail: String?
  • A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by “|” (that is, a pipe), for example: “/folder1|/folder2”

    Declaration

    Swift

    public let excludes: [FilterRule]?
  • The name of the task that was described.

    Declaration

    Swift

    public let name: String?
  • The set of configuration options that control the behavior of a single execution of the task that occurs when you call StartTaskExecution. You can configure these options to preserve metadata such as user ID (UID) and group (GID), file permissions, data integrity verification, and so on. For each individual task execution, you can override these options by specifying the overriding OverrideOptions value to operation.

    Declaration

    Swift

    public let options: Options?
  • The schedule used to periodically transfer files from a source to a destination location.

    Declaration

    Swift

    public let schedule: TaskSchedule?
  • The Amazon Resource Name (ARN) of the source file system’s location.

    Declaration

    Swift

    public let sourceLocationArn: String?
  • The Amazon Resource Name (ARN) of the source ENIs (Elastic Network Interface) that was created for your subnet.

    Declaration

    Swift

    public let sourceNetworkInterfaceArns: [String]?
  • The status of the task that was described. For detailed information about task execution statuses, see Understanding Task Statuses in the AWS DataSync User Guide.

    Declaration

    Swift

    public let status: TaskStatus?
  • The Amazon Resource Name (ARN) of the task that was described.

    Declaration

    Swift

    public let taskArn: String?
  • Undocumented

    Declaration

    Swift

    public init(cloudWatchLogGroupArn: String? = nil, creationTime: TimeStamp? = nil, currentTaskExecutionArn: String? = nil, destinationLocationArn: String? = nil, destinationNetworkInterfaceArns: [String]? = nil, errorCode: String? = nil, errorDetail: String? = nil, excludes: [FilterRule]? = nil, name: String? = nil, options: Options? = nil, schedule: TaskSchedule? = nil, sourceLocationArn: String? = nil, sourceNetworkInterfaceArns: [String]? = nil, status: TaskStatus? = nil, taskArn: String? = nil)