invitations_counts
Creates, updates, deletes, gets or lists an invitations_counts resource.
Overview
| Name | invitations_counts |
| Type | Resource |
| Id | aws.guardduty.invitations_counts |
Fields
The following fields are returned by SELECT queries:
- get_invitations_count
| Name | Datatype | Description |
|---|---|---|
invitations_count | integer | The number of received invitations. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_invitations_count | select | region | Returns the count of all GuardDuty membership invitations that were sent to the current member account except the currently accepted invitation. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_invitations_count
Returns the count of all GuardDuty membership invitations that were sent to the current member account except the currently accepted invitation.
SELECT
invitations_count
FROM aws.guardduty.invitations_counts
WHERE region = '{{ region }}' -- required
;