Interface CfnConnection.ConnectionHttpParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnection.ConnectionHttpParametersProperty.Jsii$Proxy
- Enclosing class:
CfnConnection
@Stability(Stable)
public static interface CfnConnection.ConnectionHttpParametersProperty
extends software.amazon.jsii.JsiiSerializable
Contains additional parameters for the connection.
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.*; ConnectionHttpParametersProperty connectionHttpParametersProperty = ConnectionHttpParametersProperty.builder() .bodyParameters(List.of(ParameterProperty.builder() .key("key") .value("value") // the properties below are optional .isValueSecret(false) .build())) .headerParameters(List.of(ParameterProperty.builder() .key("key") .value("value") // the properties below are optional .isValueSecret(false) .build())) .queryStringParameters(List.of(ParameterProperty.builder() .key("key") .value("value") // the properties below are optional .isValueSecret(false) .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnection.ConnectionHttpParametersProperty
static final class
An implementation forCfnConnection.ConnectionHttpParametersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBodyParameters
Contains additional body string parameters for the connection. -
getHeaderParameters
Contains additional header parameters for the connection. -
getQueryStringParameters
Contains additional query string parameters for the connection. -
builder
-