@Stability(value=Stable)
public static interface CfnConnection.ParameterProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnection.ParameterProperty.Builder
A builder for
CfnConnection.ParameterProperty |
static class |
CfnConnection.ParameterProperty.Jsii$Proxy
An implementation for
CfnConnection.ParameterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnection.ParameterProperty.Builder |
builder() |
default Object |
getIsValueSecret()
Specifies whether the value is secret.
|
String |
getKey()
The key for a query string parameter.
|
String |
getValue()
The value associated with the key for the query string parameter.
|
@Stability(value=Stable) @NotNull String getKey()
@Stability(value=Stable) @NotNull String getValue()
@Stability(value=Stable) @Nullable default Object getIsValueSecret()
@Stability(value=Stable) static CfnConnection.ParameterProperty.Builder builder()
Copyright © 2022. All rights reserved.