Beispiel #1
0
        public void DeviceFarmDeleteProject()
        {
            #region deleteproject-example-1470867374212

            var client   = new AmazonDeviceFarmClient();
            var response = client.DeleteProject(new DeleteProjectRequest
            {
                Arn = "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" // You can get the project ARN by using the list-projects CLI command.
            });


            #endregion
        }