Interface TestConnectionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<TestConnectionRequest.Builder,TestConnectionRequest>,GlueRequest.Builder,SdkBuilder<TestConnectionRequest.Builder,TestConnectionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- TestConnectionRequest
public static interface TestConnectionRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<TestConnectionRequest.Builder,TestConnectionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TestConnectionRequest.BuilderconnectionName(String connectionName)Optional.TestConnectionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)TestConnectionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default TestConnectionRequest.BuildertestConnectionInput(Consumer<TestConnectionInput.Builder> testConnectionInput)A structure that is used to specify testing a connection to a service.TestConnectionRequest.BuildertestConnectionInput(TestConnectionInput testConnectionInput)A structure that is used to specify testing a connection to a service.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.glue.model.GlueRequest.Builder
build
-
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
-
connectionName
TestConnectionRequest.Builder connectionName(String connectionName)
Optional. The name of the connection to test. If only name is provided, the operation will get the connection and use that for testing.
- Parameters:
connectionName- Optional. The name of the connection to test. If only name is provided, the operation will get the connection and use that for testing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testConnectionInput
TestConnectionRequest.Builder testConnectionInput(TestConnectionInput testConnectionInput)
A structure that is used to specify testing a connection to a service.
- Parameters:
testConnectionInput- A structure that is used to specify testing a connection to a service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
testConnectionInput
default TestConnectionRequest.Builder testConnectionInput(Consumer<TestConnectionInput.Builder> testConnectionInput)
A structure that is used to specify testing a connection to a service.
This is a convenience method that creates an instance of theTestConnectionInput.Builderavoiding the need to create one manually viaTestConnectionInput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totestConnectionInput(TestConnectionInput).- Parameters:
testConnectionInput- a consumer that will call methods onTestConnectionInput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
testConnectionInput(TestConnectionInput)
-
overrideConfiguration
TestConnectionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
TestConnectionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-