Interface VpcOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcOptions.Builder,VpcOptions>,SdkBuilder<VpcOptions.Builder,VpcOptions>,SdkPojo
- Enclosing class:
- VpcOptions
public static interface VpcOptions.Builder extends SdkPojo, CopyableBuilder<VpcOptions.Builder,VpcOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VpcOptions.BuildersecurityGroupIds(String... securityGroupIds)A list of security groups associated with the VPC endpoint.VpcOptions.BuildersecurityGroupIds(Collection<String> securityGroupIds)A list of security groups associated with the VPC endpoint.VpcOptions.BuildersubnetIds(String... subnetIds)A list of subnet IDs associated with the VPC endpoint.VpcOptions.BuildersubnetIds(Collection<String> subnetIds)A list of subnet IDs associated with the VPC endpoint.default VpcOptions.BuildervpcAttachmentOptions(Consumer<VpcAttachmentOptions.Builder> vpcAttachmentOptions)Options for attaching a VPC to a pipeline.VpcOptions.BuildervpcAttachmentOptions(VpcAttachmentOptions vpcAttachmentOptions)Options for attaching a VPC to a pipeline.VpcOptions.BuildervpcEndpointManagement(String vpcEndpointManagement)Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.VpcOptions.BuildervpcEndpointManagement(VpcEndpointManagement vpcEndpointManagement)Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
subnetIds
VpcOptions.Builder subnetIds(Collection<String> subnetIds)
A list of subnet IDs associated with the VPC endpoint.
- Parameters:
subnetIds- A list of subnet IDs associated with the VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
VpcOptions.Builder subnetIds(String... subnetIds)
A list of subnet IDs associated with the VPC endpoint.
- Parameters:
subnetIds- A list of subnet IDs associated with the VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcOptions.Builder securityGroupIds(Collection<String> securityGroupIds)
A list of security groups associated with the VPC endpoint.
- Parameters:
securityGroupIds- A list of security groups associated with the VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcOptions.Builder securityGroupIds(String... securityGroupIds)
A list of security groups associated with the VPC endpoint.
- Parameters:
securityGroupIds- A list of security groups associated with the VPC endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcAttachmentOptions
VpcOptions.Builder vpcAttachmentOptions(VpcAttachmentOptions vpcAttachmentOptions)
Options for attaching a VPC to a pipeline.
- Parameters:
vpcAttachmentOptions- Options for attaching a VPC to a pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcAttachmentOptions
default VpcOptions.Builder vpcAttachmentOptions(Consumer<VpcAttachmentOptions.Builder> vpcAttachmentOptions)
Options for attaching a VPC to a pipeline.
This is a convenience method that creates an instance of theVpcAttachmentOptions.Builderavoiding the need to create one manually viaVpcAttachmentOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovpcAttachmentOptions(VpcAttachmentOptions).- Parameters:
vpcAttachmentOptions- a consumer that will call methods onVpcAttachmentOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vpcAttachmentOptions(VpcAttachmentOptions)
-
vpcEndpointManagement
VpcOptions.Builder vpcEndpointManagement(String vpcEndpointManagement)
Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.
- Parameters:
vpcEndpointManagement- Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcEndpointManagement,VpcEndpointManagement
-
vpcEndpointManagement
VpcOptions.Builder vpcEndpointManagement(VpcEndpointManagement vpcEndpointManagement)
Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.
- Parameters:
vpcEndpointManagement- Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcEndpointManagement,VpcEndpointManagement
-
-