interface TargetDetail
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Events.CloudFormationHookInvocationProgress.TargetDetail |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/events#CloudFormationHookInvocationProgress_TargetDetail |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.events.CloudFormationHookInvocationProgress.TargetDetail |
Python | aws_cdk.mixins_preview.aws_cloudformation.events.CloudFormationHookInvocationProgress.TargetDetail |
TypeScript | @aws-cdk/mixins-preview ยป aws_cloudformation ยป events ยป CloudFormationHookInvocationProgress ยป TargetDetail |
Type definition for Target-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 targetDetail: cloudformation_events.CloudFormationHookInvocationProgress.TargetDetail = {
targetAction: ['targetAction'],
targetId: ['targetId'],
targetInvocationPoint: ['targetInvocationPoint'],
targetName: ['targetName'],
targetType: ['targetType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| target | string[] | target-action property. |
| target | string[] | target-id property. |
| target | string[] | target-invocation-point property. |
| target | string[] | target-name property. |
| target | string[] | target-type property. |
targetAction?
Type:
string[]
(optional, default: Do not filter on this field)
target-action property.
Specify an array of string values to match this event if the actual value of target-action is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetId?
Type:
string[]
(optional, default: Do not filter on this field)
target-id property.
Specify an array of string values to match this event if the actual value of target-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetInvocationPoint?
Type:
string[]
(optional, default: Do not filter on this field)
target-invocation-point property.
Specify an array of string values to match this event if the actual value of target-invocation-point is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetName?
Type:
string[]
(optional, default: Do not filter on this field)
target-name property.
Specify an array of string values to match this event if the actual value of target-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
targetType?
Type:
string[]
(optional, default: Do not filter on this field)
target-type property.
Specify an array of string values to match this event if the actual value of target-type 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