Interface DataSourceVpcConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataSourceVpcConfiguration.Builder,DataSourceVpcConfiguration>,SdkBuilder<DataSourceVpcConfiguration.Builder,DataSourceVpcConfiguration>,SdkPojo
- Enclosing class:
- DataSourceVpcConfiguration
public static interface DataSourceVpcConfiguration.Builder extends SdkPojo, CopyableBuilder<DataSourceVpcConfiguration.Builder,DataSourceVpcConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSourceVpcConfiguration.BuildersecurityGroupIds(String... securityGroupIds)A list of identifiers of security groups within your Amazon VPC.DataSourceVpcConfiguration.BuildersecurityGroupIds(Collection<String> securityGroupIds)A list of identifiers of security groups within your Amazon VPC.DataSourceVpcConfiguration.BuildersubnetIds(String... subnetIds)A list of identifiers for subnets within your Amazon VPC.DataSourceVpcConfiguration.BuildersubnetIds(Collection<String> subnetIds)A list of identifiers for subnets within your Amazon VPC.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
subnetIds
DataSourceVpcConfiguration.Builder subnetIds(Collection<String> subnetIds)
A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.
- Parameters:
subnetIds- A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
DataSourceVpcConfiguration.Builder subnetIds(String... subnetIds)
A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.
- Parameters:
subnetIds- A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
DataSourceVpcConfiguration.Builder securityGroupIds(Collection<String> securityGroupIds)
A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.
- Parameters:
securityGroupIds- A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
DataSourceVpcConfiguration.Builder securityGroupIds(String... securityGroupIds)
A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.
- Parameters:
securityGroupIds- A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-