Interface GetConnectionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<GetConnectionsRequest.Builder,GetConnectionsRequest>,GlueRequest.Builder,SdkBuilder<GetConnectionsRequest.Builder,GetConnectionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- GetConnectionsRequest
public static interface GetConnectionsRequest.Builder extends GlueRequest.Builder, SdkPojo, CopyableBuilder<GetConnectionsRequest.Builder,GetConnectionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description GetConnectionsRequest.BuildercatalogId(String catalogId)The ID of the Data Catalog in which the connections reside.default GetConnectionsRequest.Builderfilter(Consumer<GetConnectionsFilter.Builder> filter)A filter that controls which connections are returned.GetConnectionsRequest.Builderfilter(GetConnectionsFilter filter)A filter that controls which connections are returned.GetConnectionsRequest.BuilderhidePassword(Boolean hidePassword)Allows you to retrieve the connection metadata without returning the password.GetConnectionsRequest.BuildermaxResults(Integer maxResults)The maximum number of connections to return in one response.GetConnectionsRequest.BuildernextToken(String nextToken)A continuation token, if this is a continuation call.GetConnectionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)GetConnectionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
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
-
catalogId
GetConnectionsRequest.Builder catalogId(String catalogId)
The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.
- Parameters:
catalogId- The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
GetConnectionsRequest.Builder filter(GetConnectionsFilter filter)
A filter that controls which connections are returned.
- Parameters:
filter- A filter that controls which connections are returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default GetConnectionsRequest.Builder filter(Consumer<GetConnectionsFilter.Builder> filter)
A filter that controls which connections are returned.
This is a convenience method that creates an instance of theGetConnectionsFilter.Builderavoiding the need to create one manually viaGetConnectionsFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilter(GetConnectionsFilter).- Parameters:
filter- a consumer that will call methods onGetConnectionsFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(GetConnectionsFilter)
-
hidePassword
GetConnectionsRequest.Builder hidePassword(Boolean hidePassword)
Allows you to retrieve the connection metadata without returning the password. For instance, the Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.
- Parameters:
hidePassword- Allows you to retrieve the connection metadata without returning the password. For instance, the Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
GetConnectionsRequest.Builder nextToken(String nextToken)
A continuation token, if this is a continuation call.
- Parameters:
nextToken- A continuation token, if this is a continuation call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
GetConnectionsRequest.Builder maxResults(Integer maxResults)
The maximum number of connections to return in one response.
- Parameters:
maxResults- The maximum number of connections to return in one response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
GetConnectionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
GetConnectionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-