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();
 

See Also: