Class: Aws::Appflow::Types::DatadogConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::DatadogConnectorProfileCredentials
- Defined in:
- gems/aws-sdk-appflow/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.
1521 1522 1523 1524 1525 1526 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 1521 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.
1521 1522 1523 1524 1525 1526 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 1521 class DatadogConnectorProfileCredentials < Struct.new( :api_key, :application_key) SENSITIVE = [] include Aws::Structure end |