Class: Aws::DevOpsAgent::Types::RemoteAgentAPIKeyConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-devopsagent/types.rb

Overview

API key configuration for remote A2A agent.

Constant Summary collapse

SENSITIVE =
[:api_key_value]

Instance Attribute Summary collapse

Instance Attribute Details

#api_key_headerString

HTTP header name to send the API key in requests to the service.

Returns:

  • (String)


4916
4917
4918
4919
4920
4921
4922
# File 'lib/aws-sdk-devopsagent/types.rb', line 4916

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

#api_key_nameString

User friendly API key name specified by end user.

Returns:

  • (String)


4916
4917
4918
4919
4920
4921
4922
# File 'lib/aws-sdk-devopsagent/types.rb', line 4916

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

#api_key_valueString

API key value for authenticating with the service.

Returns:

  • (String)


4916
4917
4918
4919
4920
4921
4922
# File 'lib/aws-sdk-devopsagent/types.rb', line 4916

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