List Received Grants For Organization
| licensemanager_list_received_grants_for_organization | R Documentation | 
Lists the grants received for all accounts in the organization¶
Description¶
Lists the grants received for all accounts in the organization.
Usage¶
licensemanager_list_received_grants_for_organization(LicenseArn,
  Filters, NextToken, MaxResults)
Arguments¶
| LicenseArn | [required] The Amazon Resource Name (ARN) of the received license. | 
| Filters | Filters to scope the results. The following filters are supported: 
 | 
| NextToken | Token for the next set of results. | 
| MaxResults | Maximum number of results to return in a single call. | 
Value¶
A list with the following syntax:
list(
  Grants = list(
    list(
      GrantArn = "string",
      GrantName = "string",
      ParentArn = "string",
      LicenseArn = "string",
      GranteePrincipalArn = "string",
      HomeRegion = "string",
      GrantStatus = "PENDING_WORKFLOW"|"PENDING_ACCEPT"|"REJECTED"|"ACTIVE"|"FAILED_WORKFLOW"|"DELETED"|"PENDING_DELETE"|"DISABLED"|"WORKFLOW_COMPLETED",
      StatusReason = "string",
      Version = "string",
      GrantedOperations = list(
        "CreateGrant"|"CheckoutLicense"|"CheckoutBorrowLicense"|"CheckInLicense"|"ExtendConsumptionLicense"|"ListPurchasedLicenses"|"CreateToken"
      ),
      Options = list(
        ActivationOverrideBehavior = "DISTRIBUTED_GRANTS_ONLY"|"ALL_GRANTS_PERMITTED_BY_ISSUER"
      )
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_received_grants_for_organization(
  LicenseArn = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  NextToken = "string",
  MaxResults = 123
)