action amazonaws_list_created_artifacts {
label: "ListCreatedArtifacts"
description: "
Lists the created artifacts attached to a given migration task in an update stream. This API has the following traits:
-
Gets the list of the created artifacts while migration is taking place.
-
Shows the artifacts created by the migration tool that was associated by the AssociateCreatedArtifact API.
-
Lists created artifacts in a paginated interface.
"
provider: amazonaws
method: POST
path: "/#X-Amz-Target=AWSMigrationHub.ListCreatedArtifacts"
encoding: json
input: {
type: "object"
properties: {
MaxResults: {
type: "string"
}
MigrationTaskName: {
type: "object"
}
NextToken: {
type: "string"
}
ProgressUpdateStream: {
type: "object"
}
"X-Amz-Target": {
type: "string"
enum: ["AWSMigrationHub.ListCreatedArtifacts"]
}
}
required: ["MigrationTaskName", "ProgressUpdateStream", "X-Amz-Target"]
additionalProperties: false
}
output: {
type: "object"
properties: {
CreatedArtifactList: {
type: "object"
}
NextToken: {
type: "object"
}
}
}
}