aws-cdk-lib.aws_events.CfnConnection.ParameterProperty

interface ParameterProperty

LanguageType name
.NETAmazon.CDK.AWS.Events.CfnConnection.ParameterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnConnection_ParameterProperty
Javasoftware.amazon.awscdk.services.events.CfnConnection.ParameterProperty
Pythonaws_cdk.aws_events.CfnConnection.ParameterProperty
TypeScript aws-cdk-lib » aws_events » CfnConnection » ParameterProperty

Additional query string parameter for the connection.

You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB.

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 parameterProperty: events.CfnConnection.ParameterProperty = {
  key: 'key',
  value: 'value',

  // the properties below are optional
  isValueSecret: false,
};

Properties

NameTypeDescription
keystringThe key for a query string parameter.
valuestringThe value associated with the key for the query string parameter.
isValueSecret?boolean | IResolvableSpecifies whether the value is secret.

key

Type: string

The key for a query string parameter.


value

Type: string

The value associated with the key for the query string parameter.


isValueSecret?

Type: boolean | IResolvable (optional)

Specifies whether the value is secret.