interface ExecutionResult
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelineActionExecutionStateChange.ExecutionResult |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelineActionExecutionStateChange_ExecutionResult |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelineActionExecutionStateChange.ExecutionResult |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelineActionExecutionStateChange.ExecutionResult |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelineActionExecutionStateChange ยป ExecutionResult |
Type definition for ExecutionResult.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codepipeline_events } from '@aws-cdk/mixins-preview/aws-codepipeline';
const executionResult: codepipeline_events.CodePipelineActionExecutionStateChange.ExecutionResult = {
externalExecutionId: ['externalExecutionId'],
externalExecutionSummary: ['externalExecutionSummary'],
externalExecutionUrl: ['externalExecutionUrl'],
};
Properties
| Name | Type | Description |
|---|---|---|
| external | string[] | external-execution-id property. |
| external | string[] | external-execution-summary property. |
| external | string[] | external-execution-url property. |
externalExecutionId?
Type:
string[]
(optional, default: Do not filter on this field)
external-execution-id property.
Specify an array of string values to match this event if the actual value of external-execution-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
externalExecutionSummary?
Type:
string[]
(optional, default: Do not filter on this field)
external-execution-summary property.
Specify an array of string values to match this event if the actual value of external-execution-summary is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
externalExecutionUrl?
Type:
string[]
(optional, default: Do not filter on this field)
external-execution-url property.
Specify an array of string values to match this event if the actual value of external-execution-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