Class: Aws::Glue::Types::ConnectionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ConnectionInput
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
A structure that is used to specify a connection to create or update.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_properties ⇒ Hash<String,String>
These key-value pairs define parameters for the connection.
-
#connection_type ⇒ String
The type of the connection.
-
#description ⇒ String
The description of the connection.
-
#match_criteria ⇒ Array<String>
A list of criteria that can be used in selecting this connection.
-
#name ⇒ String
The name of the connection.
-
#physical_connection_requirements ⇒ Types::PhysicalConnectionRequirements
A map of physical connection requirements, such as virtual private cloud (VPC) and
SecurityGroup
, that are needed to successfully make this connection.
Instance Attribute Details
#connection_properties ⇒ Hash<String,String>
These key-value pairs define parameters for the connection.
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2656 class ConnectionInput < Struct.new( :name, :description, :connection_type, :match_criteria, :connection_properties, :physical_connection_requirements) SENSITIVE = [] include Aws::Structure end |
#connection_type ⇒ String
The type of the connection. Currently, these types are supported:
JDBC
- Designates a connection to a database through Java Database Connectivity (JDBC).KAFKA
- Designates a connection to an Apache Kafka streaming platform.MONGODB
- Designates a connection to a MongoDB document database.NETWORK
- Designates a network connection to a data source within an Amazon Virtual Private Cloud environment (Amazon VPC).MARKETPLACE
- Uses configuration settings contained in a connector purchased from Amazon Web Services Marketplace to read from and write to data stores that are not natively supported by Glue.CUSTOM
- Uses configuration settings contained in a custom connector to read from and write to data stores that are not natively supported by Glue.
SFTP is not supported.
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2656 class ConnectionInput < Struct.new( :name, :description, :connection_type, :match_criteria, :connection_properties, :physical_connection_requirements) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The description of the connection.
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2656 class ConnectionInput < Struct.new( :name, :description, :connection_type, :match_criteria, :connection_properties, :physical_connection_requirements) SENSITIVE = [] include Aws::Structure end |
#match_criteria ⇒ Array<String>
A list of criteria that can be used in selecting this connection.
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2656 class ConnectionInput < Struct.new( :name, :description, :connection_type, :match_criteria, :connection_properties, :physical_connection_requirements) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the connection.
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2656 class ConnectionInput < Struct.new( :name, :description, :connection_type, :match_criteria, :connection_properties, :physical_connection_requirements) SENSITIVE = [] include Aws::Structure end |
#physical_connection_requirements ⇒ Types::PhysicalConnectionRequirements
A map of physical connection requirements, such as virtual private
cloud (VPC) and SecurityGroup
, that are needed to successfully
make this connection.
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2656 class ConnectionInput < Struct.new( :name, :description, :connection_type, :match_criteria, :connection_properties, :physical_connection_requirements) SENSITIVE = [] include Aws::Structure end |