You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::GetConnectionsFilter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GetConnectionsFilter as input to an Aws::Client method, you can use a vanilla Hash:

{
  match_criteria: ["NameString"],
  connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
}

Filters the connection definitions that are returned by the GetConnections API operation.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#connection_typeString

The type of connections to return. Currently, SFTP is not supported.

Possible values:

  • JDBC
  • SFTP
  • MONGODB
  • KAFKA
  • NETWORK

Returns:

  • (String)

    The type of connections to return.

#match_criteriaArray<String>

A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.

Returns:

  • (Array<String>)

    A criteria string that must match the criteria recorded in the connection definition for that connection definition to be returned.