Class: Aws::Appflow::Types::AmplitudeConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::AmplitudeConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The connector-specific credentials required when using Amplitude.
Constant Summary collapse
- SENSITIVE =
[:api_key, :secret_key]
Instance Attribute Summary collapse
-
#api_key ⇒ String
A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
-
#secret_key ⇒ String
The Secret Access Key portion of the credentials.
Instance Attribute Details
#api_key ⇒ String
A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
64 65 66 67 68 69 |
# File 'lib/aws-sdk-appflow/types.rb', line 64 class AmplitudeConnectorProfileCredentials < Struct.new( :api_key, :secret_key) SENSITIVE = [:api_key, :secret_key] include Aws::Structure end |
#secret_key ⇒ String
The Secret Access Key portion of the credentials.
64 65 66 67 68 69 |
# File 'lib/aws-sdk-appflow/types.rb', line 64 class AmplitudeConnectorProfileCredentials < Struct.new( :api_key, :secret_key) SENSITIVE = [:api_key, :secret_key] include Aws::Structure end |