interface CloudFormationHookInvocationProgressProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Events.CloudFormationHookInvocationProgress.CloudFormationHookInvocationProgressProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/events#CloudFormationHookInvocationProgress_CloudFormationHookInvocationProgressProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.events.CloudFormationHookInvocationProgress.CloudFormationHookInvocationProgressProps |
Python | aws_cdk.mixins_preview.aws_cloudformation.events.CloudFormationHookInvocationProgress.CloudFormationHookInvocationProgressProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_cloudformation ยป events ยป CloudFormationHookInvocationProgress ยป CloudFormationHookInvocationProgressProps |
Props type for aws.cloudformation@CloudFormationHookInvocationProgress event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as cloudformation_events } from '@aws-cdk/mixins-preview/aws-cloudformation';
const cloudFormationHookInvocationProgressProps: cloudformation_events.CloudFormationHookInvocationProgress.CloudFormationHookInvocationProgressProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
hookDetail: {
description: ['description'],
documentationUrl: ['documentationUrl'],
failureMode: ['failureMode'],
hookTypeArn: ['hookTypeArn'],
hookTypeName: ['hookTypeName'],
hookVersion: ['hookVersion'],
sourceUrl: ['sourceUrl'],
},
result: {
data: ['data'],
},
status: ['status'],
statusReason: ['statusReason'],
targetDetail: {
targetAction: ['targetAction'],
targetId: ['targetId'],
targetInvocationPoint: ['targetInvocationPoint'],
targetName: ['targetName'],
targetType: ['targetType'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| hook | Hook | hook-detail property. |
| result? | Result | result property. |
| status? | string[] | status property. |
| status | string[] | status-reason property. |
| target | Target | target-detail property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
hookDetail?
Type:
Hook
(optional, default: Do not filter on this field)
hook-detail property.
Specify an array of string values to match this event if the actual value of hook-detail is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
result?
Type:
Result
(optional, default: Do not filter on this field)
result property.
Specify an array of string values to match this event if the actual value of result is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
statusReason?
Type:
string[]
(optional, default: Do not filter on this field)
status-reason property.
Specify an array of string values to match this event if the actual value of status-reason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetDetail?
Type:
Target
(optional, default: Do not filter on this field)
target-detail property.
Specify an array of string values to match this event if the actual value of target-detail is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript