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 ListTargetsForPolicy operation.
Lists all the roots, organizational units (OUs), and accounts that the specified policy
is attached to.
Always check the NextToken
response parameter for a null
value when
calling a List*
operation. These operations can occasionally return an empty
set of results even when there are more results available. The NextToken
response
parameter value is null
only when there are no more results to display.
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.
Namespace: Amazon.Organizations.Model
Assembly: AWSSDK.Organizations.dll
Version: 3.x.y.z
public class ListTargetsForPolicyRequest : AmazonOrganizationsRequest IAmazonWebServiceRequest
The ListTargetsForPolicyRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
ListTargetsForPolicyRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
MaxResults | System.Int32 |
Gets and sets the property MaxResults.
The total number of results that you want included on each page of the response. If
you do not include this parameter, it defaults to a value that is specific to the
operation. If additional items exist beyond the maximum you specify, the |
![]() |
NextToken | System.String |
Gets and sets the property NextToken.
The parameter for receiving additional results if you receive a |
![]() |
PolicyId | System.String |
Gets and sets the property PolicyId. The unique identifier (ID) of the policy whose attachments you want to know. 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 (_). |
The following example shows how to get the list of roots, OUs, and accounts to which the specified policy is attached:/n/n
var client = new AmazonOrganizationsClient(); var response = client.ListTargetsForPolicy(new ListTargetsForPolicyRequest { PolicyId = "p-FullAWSAccess" }); List<PolicyTargetSummary> targets = response.Targets;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5