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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayTarget.ConnectorTargetConfigurationPropertystatic final classAn implementation forCfnGatewayTarget.ConnectorTargetConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnGatewayTarget.ConnectorConfigurationProperty>Returns union: eitherIResolvableorCfnGatewayTarget.ConnectorSourcePropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSource
Returns union: eitherIResolvableorCfnGatewayTarget.ConnectorSourceProperty- See Also:
-
getConfigurations
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnGatewayTarget.ConnectorConfigurationProperty>- See Also:
-
getEnabled
- See Also:
-
builder
-