Class: Aws::CloudWatchOmni::Types::ApiKeyCredential
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::ApiKeyCredential
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
An API key used to authenticate an integration with its external system.
Constant Summary collapse
- SENSITIVE =
[:api_key_value]
Instance Attribute Summary collapse
-
#api_key_value ⇒ String
The API key value used to authenticate with the external system.
Instance Attribute Details
#api_key_value ⇒ String
The API key value used to authenticate with the external system.
635 636 637 638 639 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 635 class ApiKeyCredential < Struct.new( :api_key_value) SENSITIVE = [:api_key_value] include Aws::Structure end |