Interface GetConnectionsFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GetConnectionsFilter.Builder,GetConnectionsFilter>,SdkBuilder<GetConnectionsFilter.Builder,GetConnectionsFilter>,SdkPojo
- Enclosing class:
- GetConnectionsFilter
public static interface GetConnectionsFilter.Builder extends SdkPojo, CopyableBuilder<GetConnectionsFilter.Builder,GetConnectionsFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetConnectionsFilter.BuilderconnectionSchemaVersion(Integer connectionSchemaVersion)Denotes if the connection was created with schema version 1 or 2.GetConnectionsFilter.BuilderconnectionType(String connectionType)The type of connections to return.GetConnectionsFilter.BuilderconnectionType(ConnectionType connectionType)The type of connections to return.GetConnectionsFilter.BuildermatchCriteria(String... matchCriteria)A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.GetConnectionsFilter.BuildermatchCriteria(Collection<String> matchCriteria)A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.-
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
-
matchCriteria
GetConnectionsFilter.Builder matchCriteria(Collection<String> matchCriteria)
A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.
- Parameters:
matchCriteria- A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchCriteria
GetConnectionsFilter.Builder matchCriteria(String... matchCriteria)
A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.
- Parameters:
matchCriteria- A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionType
GetConnectionsFilter.Builder connectionType(String connectionType)
The type of connections to return. Currently, SFTP is not supported.
- Parameters:
connectionType- The type of connections to return. Currently, SFTP is not supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
connectionType
GetConnectionsFilter.Builder connectionType(ConnectionType connectionType)
The type of connections to return. Currently, SFTP is not supported.
- Parameters:
connectionType- The type of connections to return. Currently, SFTP is not supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConnectionType,ConnectionType
-
connectionSchemaVersion
GetConnectionsFilter.Builder connectionSchemaVersion(Integer connectionSchemaVersion)
Denotes if the connection was created with schema version 1 or 2.
- Parameters:
connectionSchemaVersion- Denotes if the connection was created with schema version 1 or 2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-