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 ApplyPendingMaintenanceAction operation. Applies a pending maintenance action to a resource (for example, to a DB instance).

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Neptune.AmazonNeptuneRequest
      Amazon.Neptune.Model.ApplyPendingMaintenanceActionRequest

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

Syntax

C#
public class ApplyPendingMaintenanceActionRequest : AmazonNeptuneRequest
         IAmazonWebServiceRequest

The ApplyPendingMaintenanceActionRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property ApplyAction System.String

Gets and sets the property ApplyAction.

The pending maintenance action to apply to this resource.

Valid values: system-update, db-upgrade

Public Property OptInType System.String

Gets and sets the property OptInType.

A value that specifies the type of opt-in request, or undoes an opt-in request. An opt-in request of type immediate can't be undone.

Valid values:

  • immediate - Apply the maintenance action immediately.

  • next-maintenance - Apply the maintenance action during the next maintenance window for the resource.

  • undo-opt-in - Cancel any existing next-maintenance opt-in requests.

Public Property ResourceIdentifier System.String

Gets and sets the property ResourceIdentifier.

The Amazon Resource Name (ARN) of the resource that the pending maintenance action applies to. For information about creating an ARN, see Constructing an Amazon Resource Name (ARN).

Examples

This example immediately applies a pending system update to a DB instance.

To apply a pending maintenance action


var response = client.ApplyPendingMaintenanceAction(new ApplyPendingMaintenanceActionRequest 
{
    ApplyAction = "system-update",
    OptInType = "immediate",
    ResourceIdentifier = "arn:aws:rds:us-east-1:992648334831:db:mymysqlinstance"
});

ResourcePendingMaintenanceActions resourcePendingMaintenanceActions = response.ResourcePendingMaintenanceActions;

            

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