Returns summaries of invoked Hooks
Source:R/cloudformation_operations.R
cloudformation_list_hook_results.RdReturns summaries of invoked Hooks. For more information, see View invocation summaries for CloudFormation Hooks in the CloudFormation Hooks User Guide.
See https://www.paws-r-sdk.com/docs/cloudformation_list_hook_results/ for full documentation.
Usage
cloudformation_list_hook_results(
TargetType = NULL,
TargetId = NULL,
TypeArn = NULL,
Status = NULL,
NextToken = NULL
)Arguments
- TargetType
Filters results by target type. Currently, only
CHANGE_SETandCLOUD_CONTROLare supported filter options.Required when
TargetIdis specified and cannot be used otherwise.- TargetId
Filters results by the unique identifier of the target the Hook was invoked against.
For change sets, this is the change set ARN. When the target is a Cloud Control API operation, this value must be the
HookRequestTokenreturned by the Cloud Control API request. For more information on theHookRequestToken, see ProgressEvent.Required when
TargetTypeis specified and cannot be used otherwise.- TypeArn
Filters results by the ARN of the Hook. Can be used alone or in combination with
Status.- Status
Filters results by the status of Hook invocations. Can only be used in combination with
TypeArn. Valid values are:HOOK_IN_PROGRESS: The Hook is currently running.HOOK_COMPLETE_SUCCEEDED: The Hook completed successfully.HOOK_COMPLETE_FAILED: The Hook completed but failed validation.HOOK_FAILED: The Hook encountered an error during execution.
- NextToken
The token for the next set of items to return. (You received this token from a previous call.)