deleteProject

Deletes an AWS Device Farm project, given the project ARN. You cannot delete a project if it has an active run or session.

You cannot undo this operation.

Samples


fun main() { 
   //sampleStart 
   // The following example deletes a specific project.
val resp = deviceFarmClient.deleteProject {
    arn = "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456"
} 
   //sampleEnd
}