@Stability(value=Stable)
public static interface CfnConnection.ConnectionInputProperty
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.glue.*;
Object connectionProperties;
ConnectionInputProperty connectionInputProperty = ConnectionInputProperty.builder()
.connectionType("connectionType")
// the properties below are optional
.connectionProperties(connectionProperties)
.description("description")
.matchCriteria(List.of("matchCriteria"))
.name("name")
.physicalConnectionRequirements(PhysicalConnectionRequirementsProperty.builder()
.availabilityZone("availabilityZone")
.securityGroupIdList(List.of("securityGroupIdList"))
.subnetId("subnetId")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConnection.ConnectionInputProperty.Builder
A builder for
CfnConnection.ConnectionInputProperty |
static class |
CfnConnection.ConnectionInputProperty.Jsii$Proxy
An implementation for
CfnConnection.ConnectionInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnConnection.ConnectionInputProperty.Builder |
builder() |
default Object |
getConnectionProperties()
These key-value pairs define parameters for the connection.
|
String |
getConnectionType()
The type of the connection.
|
default String |
getDescription()
The description of the connection.
|
default List<String> |
getMatchCriteria()
A list of criteria that can be used in selecting this connection.
|
default String |
getName()
The name of the connection.
|
default Object |
getPhysicalConnectionRequirements()
A map of physical connection requirements, such as virtual private cloud (VPC) and `SecurityGroup` , that are needed to successfully make this connection.
|
@Stability(value=Stable) @NotNull String getConnectionType()
JDBC - Designates a connection to a database through Java Database Connectivity (JDBC).KAFKA - Designates a connection to an Apache Kafka streaming platform.MONGODB - Designates a connection to a MongoDB document database.NETWORK - Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC).SFTP is not supported.
@Stability(value=Stable) @Nullable default Object getConnectionProperties()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<String> getMatchCriteria()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default Object getPhysicalConnectionRequirements()
@Stability(value=Stable) static CfnConnection.ConnectionInputProperty.Builder builder()
Copyright © 2022. All rights reserved.