interface ParameterProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Events.CfnConnection.ParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnConnection_ParameterProperty |
Java | software.amazon.awscdk.services.events.CfnConnection.ParameterProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
key | string | The key for a query string parameter. |
value | string | The value associated with the key for the query string parameter. |
is | boolean | IResolvable | Specifies 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, default: true)
Specifies whether the value is secret.