You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::Glue::Types::GetConnectionsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::GetConnectionsFilter
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass GetConnectionsFilter data as a hash:
{
match_criteria: ["NameString"],
connection_type: "JDBC", # accepts JDBC, SFTP
}
Filters the connection definitions returned by the GetConnections
API.
Instance Attribute Summary collapse
-
#connection_type ⇒ String
The type of connections to return.
-
#match_criteria ⇒ Array<String>
A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.
Instance Attribute Details
#connection_type ⇒ String
The type of connections to return. Currently, only JDBC is supported; SFTP is not supported.
3347 3348 3349 3350 3351 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3347 class GetConnectionsFilter < Struct.new( :match_criteria, :connection_type) include Aws::Structure end |
#match_criteria ⇒ Array<String>
A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.
3347 3348 3349 3350 3351 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3347 class GetConnectionsFilter < Struct.new( :match_criteria, :connection_type) include Aws::Structure end |