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 DeletePolicy operation. Deletes the specified policy from your organization. Before you perform this operation, you must first detach the policy from all organizational units (OUs), roots, and accounts.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an Amazon Web Services service.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Organizations.AmazonOrganizationsRequest
      Amazon.Organizations.Model.DeletePolicyRequest

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

Syntax

C#
public class DeletePolicyRequest : AmazonOrganizationsRequest
         IAmazonWebServiceRequest

The DeletePolicyRequest type exposes the following members

Constructors

NameDescription
Public Method DeletePolicyRequest()

Properties

NameTypeDescription
Public Property PolicyId System.String

Gets and sets the property PolicyId.

The unique identifier (ID) of the policy that you want to delete. You can get the ID from the ListPolicies or ListPoliciesForTarget operations.

The regex pattern for a policy ID string requires "p-" followed by from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_).

Examples

The following example shows how to delete a policy from an organization. The example assumes that you previously detached the policy from all entities:

To delete a policy


var client = new AmazonOrganizationsClient();
var response = client.DeletePolicy(new DeletePolicyRequest 
{
    PolicyId = "p-examplepolicyid111"
});


            

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