interface ApiDestinationEnrichmentProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Pipes.Enrichments.Alpha.ApiDestinationEnrichmentProps |
![]() | github.com/aws/aws-cdk-go/awscdkpipesenrichmentsalpha/v2#ApiDestinationEnrichmentProps |
![]() | software.amazon.awscdk.services.pipes.enrichments.alpha.ApiDestinationEnrichmentProps |
![]() | aws_cdk.aws_pipes_enrichments_alpha.ApiDestinationEnrichmentProps |
![]() | @aws-cdk/aws-pipes-enrichments-alpha ยป ApiDestinationEnrichmentProps |
Properties for a ApiDestinationEnrichment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pipes_alpha from '@aws-cdk/aws-pipes-alpha';
import * as pipes_enrichments_alpha from '@aws-cdk/aws-pipes-enrichments-alpha';
declare const inputTransformation: pipes_alpha.InputTransformation;
const apiDestinationEnrichmentProps: pipes_enrichments_alpha.ApiDestinationEnrichmentProps = {
headerParameters: {
headerParametersKey: 'headerParameters',
},
inputTransformation: inputTransformation,
pathParameterValues: ['pathParameterValues'],
queryStringParameters: {
queryStringParametersKey: 'queryStringParameters',
},
};
Properties
Name | Type | Description |
---|---|---|
header | { [string]: string } | The headers that need to be sent as part of request invoking the EventBridge ApiDestination. |
input | Input | The input transformation for the enrichment. |
path | string[] | The path parameter values used to populate the EventBridge API destination path wildcards ("*"). |
query | { [string]: string } | The query string keys/values that need to be sent as part of request invoking the EventBridge API destination. |
headerParameters?
Type:
{ [string]: string }
(optional, default: none)
The headers that need to be sent as part of request invoking the EventBridge ApiDestination.
inputTransformation?
Type:
Input
(optional, default: None)
The input transformation for the enrichment.
pathParameterValues?
Type:
string[]
(optional, default: none)
The path parameter values used to populate the EventBridge API destination path wildcards ("*").
queryStringParameters?
Type:
{ [string]: string }
(optional, default: none)
The query string keys/values that need to be sent as part of request invoking the EventBridge API destination.