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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayTarget.ConnectorConfigurationPropertystatic final classAn implementation forCfnGatewayTarget.ConnectorConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetName()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnGatewayTarget.ConnectorParameterOverrideProperty>default ObjectMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
- See Also:
-
getDescription
- See Also:
-
getParameterOverrides
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnGatewayTarget.ConnectorParameterOverrideProperty>- See Also:
-
getParameterValues
- See Also:
-
builder
-