Class: Aws::Appflow::Types::DatadogConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::DatadogConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass DatadogConnectorProfileCredentials data as a hash:
{
api_key: "ApiKey", # required
application_key: "ApplicationKey", # required
}
The connector-specific credentials required by Datadog.
Constant Summary collapse
- SENSITIVE =
[]
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.
1623 1624 1625 1626 1627 1628 |
# File 'lib/aws-sdk-appflow/types.rb', line 1623 class DatadogConnectorProfileCredentials < Struct.new( :api_key, :application_key) SENSITIVE = [] 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.
1623 1624 1625 1626 1627 1628 |
# File 'lib/aws-sdk-appflow/types.rb', line 1623 class DatadogConnectorProfileCredentials < Struct.new( :api_key, :application_key) SENSITIVE = [] include Aws::Structure end |