Class: Aws::EventBridge::Types::CreateConnectionApiKeyAuthRequestParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::CreateConnectionApiKeyAuthRequestParameters
- Defined in:
- gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb
Overview
Note:
When making an API call, you may pass CreateConnectionApiKeyAuthRequestParameters data as a hash:
{
api_key_name: "AuthHeaderParameters", # required
api_key_value: "AuthHeaderParameters", # required
}
Contains the API key authorization parameters for the connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_key_name ⇒ String
The name of the API key to use for authorization.
-
#api_key_value ⇒ String
The value for the API key to use for authorization.
Instance Attribute Details
#api_key_name ⇒ String
The name of the API key to use for authorization.
906 907 908 909 910 911 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 906 class CreateConnectionApiKeyAuthRequestParameters < Struct.new( :api_key_name, :api_key_value) SENSITIVE = [] include Aws::Structure end |
#api_key_value ⇒ String
The value for the API key to use for authorization.
906 907 908 909 910 911 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 906 class CreateConnectionApiKeyAuthRequestParameters < Struct.new( :api_key_name, :api_key_value) SENSITIVE = [] include Aws::Structure end |