Class: Aws::EventBridge::Types::UpdateConnectionApiKeyAuthRequestParameters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb

Overview

Contains the API key authorization parameters to use to update the connection.

Constant Summary collapse

SENSITIVE =
[:api_key_value]

Instance Attribute Summary collapse

Instance Attribute Details

#api_key_nameString

The name of the API key to use for authorization.

Returns:

  • (String)


4825
4826
4827
4828
4829
4830
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4825

class UpdateConnectionApiKeyAuthRequestParameters < Struct.new(
  :api_key_name,
  :api_key_value)
  SENSITIVE = [:api_key_value]
  include Aws::Structure
end

#api_key_valueString

The value associated with teh API key to use for authorization.

Returns:

  • (String)


4825
4826
4827
4828
4829
4830
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 4825

class UpdateConnectionApiKeyAuthRequestParameters < Struct.new(
  :api_key_name,
  :api_key_value)
  SENSITIVE = [:api_key_value]
  include Aws::Structure
end