interface ConnectionHttpParametersProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Events.CfnConnection.ConnectionHttpParametersProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnConnection_ConnectionHttpParametersProperty | 
|  Java | software.amazon.awscdk.services.events.CfnConnection.ConnectionHttpParametersProperty | 
|  Python | aws_cdk.aws_events.CfnConnection.ConnectionHttpParametersProperty | 
|  TypeScript | aws-cdk-lib»aws_events»CfnConnection»ConnectionHttpParametersProperty | 
Any additional parameters for the connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const connectionHttpParametersProperty: events.CfnConnection.ConnectionHttpParametersProperty = {
  bodyParameters: [{
    key: 'key',
    value: 'value',
    // the properties below are optional
    isValueSecret: false,
  }],
  headerParameters: [{
    key: 'key',
    value: 'value',
    // the properties below are optional
    isValueSecret: false,
  }],
  queryStringParameters: [{
    key: 'key',
    value: 'value',
    // the properties below are optional
    isValueSecret: false,
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| body | IResolvable | (IResolvable | Parameter)[] | Any additional body string parameters for the connection. | 
| header | IResolvable | (IResolvable | Parameter)[] | Any additional header parameters for the connection. | 
| query | IResolvable | (IResolvable | Parameter)[] | Any additional query string parameters for the connection. | 
bodyParameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
Any additional body string parameters for the connection.
headerParameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
Any additional header parameters for the connection.
queryStringParameters?
Type:
IResolvable | (IResolvable | Parameter)[]
(optional)
Any additional query string parameters for the connection.
