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
Any 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnection.ParameterPropertystatic final classAn 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.- See Also:
-
getValue
The value associated with the key for the query string parameter.- See Also:
-
getIsValueSecret
Specifies whether the value is secret.Returns union: either
BooleanorIResolvableDefault: - true
- See Also:
-
builder
-