Class: Aws::Glue::Types::AuthenticationConfigurationInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

A structure containing the authentication configuration in the CreateConnection request.

Constant Summary collapse

SENSITIVE =
[:custom_authentication_credentials]

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

A structure containing the authentication configuration in the CreateConnection request.

Returns:

  • (String)


610
611
612
613
614
615
616
617
618
619
# File 'lib/aws-sdk-glue/types.rb', line 610

class AuthenticationConfigurationInput < Struct.new(
  :authentication_type,
  :o_auth_2_properties,
  :secret_arn,
  :kms_key_arn,
  :basic_authentication_credentials,
  :custom_authentication_credentials)
  SENSITIVE = [:custom_authentication_credentials]
  include Aws::Structure
end

#basic_authentication_credentialsTypes::BasicAuthenticationCredentials

The credentials used when the authentication type is basic authentication.



610
611
612
613
614
615
616
617
618
619
# File 'lib/aws-sdk-glue/types.rb', line 610

class AuthenticationConfigurationInput < Struct.new(
  :authentication_type,
  :o_auth_2_properties,
  :secret_arn,
  :kms_key_arn,
  :basic_authentication_credentials,
  :custom_authentication_credentials)
  SENSITIVE = [:custom_authentication_credentials]
  include Aws::Structure
end

#custom_authentication_credentialsHash<String,String>

The credentials used when the authentication type is custom authentication.

Returns:

  • (Hash<String,String>)


610
611
612
613
614
615
616
617
618
619
# File 'lib/aws-sdk-glue/types.rb', line 610

class AuthenticationConfigurationInput < Struct.new(
  :authentication_type,
  :o_auth_2_properties,
  :secret_arn,
  :kms_key_arn,
  :basic_authentication_credentials,
  :custom_authentication_credentials)
  SENSITIVE = [:custom_authentication_credentials]
  include Aws::Structure
end

#kms_key_arnString

The ARN of the KMS key used to encrypt the connection. Only taken an as input in the request and stored in the Secret Manager.

Returns:

  • (String)


610
611
612
613
614
615
616
617
618
619
# File 'lib/aws-sdk-glue/types.rb', line 610

class AuthenticationConfigurationInput < Struct.new(
  :authentication_type,
  :o_auth_2_properties,
  :secret_arn,
  :kms_key_arn,
  :basic_authentication_credentials,
  :custom_authentication_credentials)
  SENSITIVE = [:custom_authentication_credentials]
  include Aws::Structure
end

#o_auth_2_propertiesTypes::OAuth2PropertiesInput

The properties for OAuth2 authentication in the CreateConnection request.



610
611
612
613
614
615
616
617
618
619
# File 'lib/aws-sdk-glue/types.rb', line 610

class AuthenticationConfigurationInput < Struct.new(
  :authentication_type,
  :o_auth_2_properties,
  :secret_arn,
  :kms_key_arn,
  :basic_authentication_credentials,
  :custom_authentication_credentials)
  SENSITIVE = [:custom_authentication_credentials]
  include Aws::Structure
end

#secret_arnString

The secret manager ARN to store credentials in the CreateConnection request.

Returns:

  • (String)


610
611
612
613
614
615
616
617
618
619
# File 'lib/aws-sdk-glue/types.rb', line 610

class AuthenticationConfigurationInput < Struct.new(
  :authentication_type,
  :o_auth_2_properties,
  :secret_arn,
  :kms_key_arn,
  :basic_authentication_credentials,
  :custom_authentication_credentials)
  SENSITIVE = [:custom_authentication_credentials]
  include Aws::Structure
end