Class: Aws::Appflow::Types::ApiKeyCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

The API key credentials required for API key authentication.

Constant Summary collapse

SENSITIVE =
[:api_key, :api_secret_key]

Instance Attribute Summary collapse

Instance Attribute Details

#api_keyString

The API key required for API key authentication.

Returns:

  • (String)


113
114
115
116
117
118
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 113

class ApiKeyCredentials < Struct.new(
  :api_key,
  :api_secret_key)
  SENSITIVE = [:api_key, :api_secret_key]
  include Aws::Structure
end

#api_secret_keyString

The API secret key required for API key authentication.

Returns:

  • (String)


113
114
115
116
117
118
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 113

class ApiKeyCredentials < Struct.new(
  :api_key,
  :api_secret_key)
  SENSITIVE = [:api_key, :api_secret_key]
  include Aws::Structure
end