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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnection.ParameterProperty
static final class
An implementation forCfnConnection.ParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key for a query string parameter. -
getValue
The value associated with the key for the query string parameter. -
getIsValueSecret
Specifies whether the value is secret. -
builder
-