Interface CfnConnection.ParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnection.ParameterProperty.Jsii$Proxy
Enclosing class:
CfnConnection

@Stability(Stable) public static interface CfnConnection.ParameterProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.events.*;
 ParameterProperty parameterProperty = ParameterProperty.builder()
         .key("key")
         .value("value")
         // the properties below are optional
         .isValueSecret(false)
         .build();