Class: Aws::QuickSight::Types::ReadAPIKeyConnectionMetadata

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

Overview

Read-only authentication metadata for API key-based connections, containing non-sensitive configuration details.

Constant Summary collapse

SENSITIVE =
[:email]

Instance Attribute Summary collapse

Instance Attribute Details

#base_endpointString

The base endpoint URL for API key authentication.

Returns:

  • (String)


30475
30476
30477
30478
30479
30480
# File 'lib/aws-sdk-quicksight/types.rb', line 30475

class ReadAPIKeyConnectionMetadata < Struct.new(
  :base_endpoint,
  :email)
  SENSITIVE = [:email]
  include Aws::Structure
end

#emailString

The email address associated with the API key authentication.

Returns:

  • (String)


30475
30476
30477
30478
30479
30480
# File 'lib/aws-sdk-quicksight/types.rb', line 30475

class ReadAPIKeyConnectionMetadata < Struct.new(
  :base_endpoint,
  :email)
  SENSITIVE = [:email]
  include Aws::Structure
end