interface ConnectionHttpParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.CfnConnection.ConnectionHttpParametersProperty |
Java | software.amazon.awscdk.services.events.CfnConnection.ConnectionHttpParametersProperty |
Python | aws_cdk.aws_events.CfnConnection.ConnectionHttpParametersProperty |
TypeScript | @aws-cdk/aws-events » CfnConnection » ConnectionHttpParametersProperty |
Contains 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 * as events from '@aws-cdk/aws-events';
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[] | Contains additional body string parameters for the connection. |
| header | IResolvable | IResolvable | Parameter[] | Contains additional header parameters for the connection. |
| query | IResolvable | IResolvable | Parameter[] | Contains additional query string parameters for the connection. |
bodyParameters?
Type:
IResolvable | IResolvable | Parameter[]
(optional)
Contains additional body string parameters for the connection.
headerParameters?
Type:
IResolvable | IResolvable | Parameter[]
(optional)
Contains additional header parameters for the connection.
queryStringParameters?
Type:
IResolvable | IResolvable | Parameter[]
(optional)
Contains additional query string parameters for the connection.

.NET
Java
Python
TypeScript