Skip to main content

inactive_approval_team_versions

Creates, updates, deletes, gets or lists an inactive_approval_team_versions resource.

Overview

Nameinactive_approval_team_versions
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
delete_inactive_approval_team_versiondeletearn, version_id, regionDeletes 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.

NameDatatypeDescription
arnstringAmaazon Resource Name (ARN) for the team.
regionstringAWS region (default: us-east-1)
version_idstringVersion ID for the team.

DELETE examples

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
;