interface HookDetail
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Events.CloudFormationHookInvocationProgress.HookDetail |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/events#CloudFormationHookInvocationProgress_HookDetail |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.events.CloudFormationHookInvocationProgress.HookDetail |
Python | aws_cdk.mixins_preview.aws_cloudformation.events.CloudFormationHookInvocationProgress.HookDetail |
TypeScript | @aws-cdk/mixins-preview ยป aws_cloudformation ยป events ยป CloudFormationHookInvocationProgress ยป HookDetail |
Type definition for Hook-detail.
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 hookDetail: cloudformation_events.CloudFormationHookInvocationProgress.HookDetail = {
description: ['description'],
documentationUrl: ['documentationUrl'],
failureMode: ['failureMode'],
hookTypeArn: ['hookTypeArn'],
hookTypeName: ['hookTypeName'],
hookVersion: ['hookVersion'],
sourceUrl: ['sourceUrl'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string[] | description property. |
| documentation | string[] | documentation-url property. |
| failure | string[] | failure-mode property. |
| hook | string[] | hook-type-arn property. |
| hook | string[] | hook-type-name property. |
| hook | string[] | hook-version property. |
| source | string[] | source-url property. |
description?
Type:
string[]
(optional, default: Do not filter on this field)
description property.
Specify an array of string values to match this event if the actual value of description is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
documentationUrl?
Type:
string[]
(optional, default: Do not filter on this field)
documentation-url property.
Specify an array of string values to match this event if the actual value of documentation-url is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
failureMode?
Type:
string[]
(optional, default: Do not filter on this field)
failure-mode property.
Specify an array of string values to match this event if the actual value of failure-mode is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
hookTypeArn?
Type:
string[]
(optional, default: Do not filter on this field)
hook-type-arn property.
Specify an array of string values to match this event if the actual value of hook-type-arn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
hookTypeName?
Type:
string[]
(optional, default: Do not filter on this field)
hook-type-name property.
Specify an array of string values to match this event if the actual value of hook-type-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
hookVersion?
Type:
string[]
(optional, default: Do not filter on this field)
hook-version property.
Specify an array of string values to match this event if the actual value of hook-version is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceUrl?
Type:
string[]
(optional, default: Do not filter on this field)
source-url property.
Specify an array of string values to match this event if the actual value of source-url 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