Interface CfnConnection.InvocationConnectivityParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnection.InvocationConnectivityParametersProperty.Jsii$Proxy
Enclosing class:
CfnConnection

@Stability(Stable) public static interface CfnConnection.InvocationConnectivityParametersProperty extends software.amazon.jsii.JsiiSerializable
For connections to private APIs, the parameters to use for invoking the API.

For more information, see Connecting to private APIs in the Amazon EventBridge User Guide .

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.*;
 InvocationConnectivityParametersProperty invocationConnectivityParametersProperty = InvocationConnectivityParametersProperty.builder()
         .resourceParameters(ResourceParametersProperty.builder()
                 .resourceConfigurationArn("resourceConfigurationArn")
                 // the properties below are optional
                 .resourceAssociationArn("resourceAssociationArn")
                 .build())
         .build();
 

See Also: