Class: Aws::Appflow::Types::DatadogConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::DatadogConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The connector-specific credentials required by Datadog.
Constant Summary collapse
- SENSITIVE =
[:api_key]
Instance Attribute Summary collapse
-
#api_key ⇒ String
A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
-
#application_key ⇒ String
Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API.
Instance Attribute Details
#api_key ⇒ String
A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
1677 1678 1679 1680 1681 1682 |
# File 'lib/aws-sdk-appflow/types.rb', line 1677 class DatadogConnectorProfileCredentials < Struct.new( :api_key, :application_key) SENSITIVE = [:api_key] include Aws::Structure end |
#application_key ⇒ String
Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.
1677 1678 1679 1680 1681 1682 |
# File 'lib/aws-sdk-appflow/types.rb', line 1677 class DatadogConnectorProfileCredentials < Struct.new( :api_key, :application_key) SENSITIVE = [:api_key] include Aws::Structure end |