Skip to content

awsArtifactsToDelete

Retrieves the AWS artifacts that need to be deleted when an account is being deleted.

Arguments

Argument Type Description
input (required) AwsArtifactsToDeleteInput! Input to retrieve the AWS artifacts to be deleted.

Returns

AwsArtifactsToDelete!

Sample

query AwsArtifactsToDelete($input: AwsArtifactsToDeleteInput!) {
  awsArtifactsToDelete(input: $input)
}
{
  "input": {
    "awsNativeId": "example-string",
    "features": [
      "ALL"
    ]
  }
}
{
  "data": {
    "awsArtifactsToDelete": {
      "artifactsToDelete": [
        {
          "feature": "ALL"
        }
      ]
    }
  }
}