Interface CfnGatewayTarget.ConnectorConfigurationProperty

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

@Stability(Stable) public static interface CfnGatewayTarget.ConnectorConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.bedrockagentcore.*;
 Object parameterValues;
 ConnectorConfigurationProperty connectorConfigurationProperty = ConnectorConfigurationProperty.builder()
         .name("name")
         // the properties below are optional
         .description("description")
         .parameterOverrides(List.of(ConnectorParameterOverrideProperty.builder()
                 .path("path")
                 // the properties below are optional
                 .description("description")
                 .visible(false)
                 .build()))
         .parameterValues(parameterValues)
         .build();
 

See Also: