inactive_approval_team_versions
Creates, updates, deletes, gets or lists an inactive_approval_team_versions resource.
Overview
| Name | inactive_approval_team_versions |
| Type | Resource |
| Id | aws.mpa.inactive_approval_team_versions |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
delete_inactive_approval_team_version | delete | arn, version_id, region | Deletes an inactive approval team. For more information, see Team health in the Multi-party approval User Guide. You can also use this operation to delete a team draft. For more information, see Interacting with drafts in the Multi-party approval User Guide. |
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 |
|---|---|---|
arn | string | Amaazon Resource Name (ARN) for the team. |
region | string | AWS region (default: us-east-1) |
version_id | string | Version ID for the team. |
DELETE examples
- delete_inactive_approval_team_version
Deletes an inactive approval team. For more information, see Team health in the Multi-party approval User Guide. You can also use this operation to delete a team draft. For more information, see Interacting with drafts in the Multi-party approval User Guide.
DELETE FROM aws.mpa.inactive_approval_team_versions
WHERE arn = '{{ arn }}' --required
AND version_id = '{{ version_id }}' --required
AND region = '{{ region }}' --required
;