aws-cdk-lib.aws_events.CfnConnection.ConnectionHttpParametersProperty

interface ConnectionHttpParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.Events.CfnConnection.ConnectionHttpParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnConnection_ConnectionHttpParametersProperty
Javasoftware.amazon.awscdk.services.events.CfnConnection.ConnectionHttpParametersProperty
Pythonaws_cdk.aws_events.CfnConnection.ConnectionHttpParametersProperty
TypeScript aws-cdk-lib » 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 { 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

NameTypeDescription
bodyParameters?IResolvable | IResolvable | ParameterProperty[]Contains additional body string parameters for the connection.
headerParameters?IResolvable | IResolvable | ParameterProperty[]Contains additional header parameters for the connection.
queryStringParameters?IResolvable | IResolvable | ParameterProperty[]Contains additional query string parameters for the connection.

bodyParameters?

Type: IResolvable | IResolvable | ParameterProperty[] (optional)

Contains additional body string parameters for the connection.


headerParameters?

Type: IResolvable | IResolvable | ParameterProperty[] (optional)

Contains additional header parameters for the connection.


queryStringParameters?

Type: IResolvable | IResolvable | ParameterProperty[] (optional)

Contains additional query string parameters for the connection.