PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::Glue::Connection; use Moose; has ConnectionProperties => (is => 'ro', isa => 'Paws::Glue::ConnectionProperties'); has ConnectionType => (is => 'ro', isa => 'Str'); has CreationTime => (is => 'ro', isa => 'Str'); has Description => (is => 'ro', isa => 'Str'); has LastUpdatedBy => (is => 'ro', isa => 'Str'); has LastUpdatedTime => (is => 'ro', isa => 'Str'); has MatchCriteria => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has Name => (is => 'ro', isa => 'Str'); has PhysicalConnectionRequirements => (is => 'ro', isa => 'Paws::Glue::PhysicalConnectionRequirements'); 1; ### main pod documentation begin ### =head1 NAME Paws::Glue::Connection =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Glue::Connection object: $service_obj->Method(Att1 => { ConnectionProperties => $value, ..., PhysicalConnectionRequirements => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Glue::Connection object: $result = $service_obj->Method(...); $result->Att1->ConnectionProperties =head1 DESCRIPTION Defines a connection to a data source. =head1 ATTRIBUTES =head2 ConnectionProperties => L These key-value pairs define parameters for the connection: =over =item * C - The host URI: either the fully qualified domain name (FQDN) or the IPv4 address of the database host. =item * C - The port number, between 1024 and 65535, of the port on which the database host is listening for database connections. =item * C - The name under which to log in to the database. The value string for C is "C". =item * C - A password, if one is used, for the user name. =item * C - When you enable connection password protection by setting C in the Data Catalog encryption settings, this field stores the encrypted password. =item * C - The Amazon Simple Storage Service (Amazon S3) path of the JAR file that contains the JDBC driver to use. =item * C - The class name of the JDBC driver to use. =item * C - The name of the JDBC engine to use. =item * C - The version of the JDBC engine to use. =item * C - (Reserved for future use.) =item * C - The instance ID to use. =item * C - The URL for connecting to a JDBC data source. =item * C - A Boolean string (true, false) specifying whether Secure Sockets Layer (SSL) with hostname matching is enforced for the JDBC connection on the client. The default is false. =item * C - An Amazon S3 location specifying the customer's root certificate. Glue uses this root certificate to validate the customerEs certificate when connecting to the customer database. Glue only handles X.509 certificates. The certificate provided must be DER-encoded and supplied in Base64 encoding PEM format. =item * C - By default, this is C. Glue validates the Signature algorithm and Subject Public Key Algorithm for the customer certificate. The only permitted algorithms for the Signature algorithm are SHA256withRSA, SHA384withRSA or SHA512withRSA. For the Subject Public Key Algorithm, the key length must be at least 2048. You can set the value of this property to C to skip GlueEs validation of the customer certificate. =item * C - A custom JDBC certificate string which is used for domain match or distinguished name match to prevent a man-in-the-middle attack. In Oracle database, this is used as the C; in Microsoft SQL Server, this is used as the C. =item * C - The URL for connecting to a general (non-JDBC) data source. =item * C - A comma-separated list of host and port pairs that are the addresses of the Apache Kafka brokers in a Kafka cluster to which a Kafka client will connect to and bootstrap itself. =item * C - Whether to enable or disable SSL on an Apache Kafka connection. Default value is "true". =item * C - The Amazon S3 URL for the private CA cert file (.pem format). The default is an empty string. =item * C - Whether to skip the validation of the CA cert file or not. Glue validates for three algorithms: SHA256withRSA, SHA384withRSA and SHA512withRSA. Default value is "false". =item * C - The secret ID used for the secret manager of credentials. =item * C - The connector URL for a MARKETPLACE or CUSTOM connection. =item * C - The connector type for a MARKETPLACE or CUSTOM connection. =item * C - The connector class name for a MARKETPLACE or CUSTOM connection. =item * C - The Amazon S3 location of the client keystore file for Kafka client side authentication (Optional). =item * C - The password to access the provided keystore (Optional). =item * C - A keystore can consist of multiple keys, so this is the password to access the client key to be used with the Kafka server side key (Optional). =item * C - The encrypted version of the Kafka client keystore password (if the user has the Glue encrypt passwords setting selected). =item * C - The encrypted version of the Kafka client key password (if the user has the Glue encrypt passwords setting selected). =back =head2 ConnectionType => Str The type of the connection. Currently, SFTP is not supported. =head2 CreationTime => Str The time that this connection definition was created. =head2 Description => Str The description of the connection. =head2 LastUpdatedBy => Str The user, group, or role that last updated this connection definition. =head2 LastUpdatedTime => Str The last time that this connection definition was updated. =head2 MatchCriteria => ArrayRef[Str|Undef] A list of criteria that can be used in selecting this connection. =head2 Name => Str The name of the connection definition. =head2 PhysicalConnectionRequirements => L A map of physical connection requirements, such as virtual private cloud (VPC) and C, that are needed to make this connection successfully. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut