Interface CfnGatewayTarget.ConnectorTargetConfigurationProperty

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

@Stability(Stable) public static interface CfnGatewayTarget.ConnectorTargetConfigurationProperty 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;
 ConnectorTargetConfigurationProperty connectorTargetConfigurationProperty = ConnectorTargetConfigurationProperty.builder()
         .source(ConnectorSourceProperty.builder()
                 .connectorId("connectorId")
                 .build())
         // the properties below are optional
         .configurations(List.of(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()))
         .enabled(List.of("enabled"))
         .build();
 

See Also: