AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DeregisterJobDefinition operation. Deregisters an Batch job definition. Job definitions are permanently deleted after 180 days.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Batch.AmazonBatchRequest
      Amazon.Batch.Model.DeregisterJobDefinitionRequest

Namespace: Amazon.Batch.Model
Assembly: AWSSDK.Batch.dll
Version: 3.x.y.z

Syntax

C#
public class DeregisterJobDefinitionRequest : AmazonBatchRequest
         IAmazonWebServiceRequest

The DeregisterJobDefinitionRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property JobDefinition System.String

Gets and sets the property JobDefinition.

The name and revision (name:revision) or full Amazon Resource Name (ARN) of the job definition to deregister.

Examples

This example deregisters a job definition called sleep10.

To deregister a job definition


var client = new AmazonBatchClient();
var response = client.DeregisterJobDefinition(new DeregisterJobDefinitionRequest 
{
    JobDefinition = "sleep10"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5