Class: Aws::DevOpsAgent::Types::RemoteAgentAuthorizationConfig

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

Overview

Note:

RemoteAgentAuthorizationConfig is a union - when making an API calls you must set exactly one of the members.

Authorization configuration for remote A2A agents with token-based auth (API key, OAuth, bearer token).

Direct Known Subclasses

ApiKey, BearerToken, OAuthClientCredentials, Unknown

Defined Under Namespace

Classes: ApiKey, BearerToken, OAuthClientCredentials, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#api_keyTypes::RemoteAgentAPIKeyConfig

Remote agent configuration with API key authentication.



4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
# File 'lib/aws-sdk-devopsagent/types.rb', line 4943

class RemoteAgentAuthorizationConfig < Struct.new(
  :api_key,
  :o_auth_client_credentials,
  :bearer_token,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ApiKey < RemoteAgentAuthorizationConfig; end
  class OAuthClientCredentials < RemoteAgentAuthorizationConfig; end
  class BearerToken < RemoteAgentAuthorizationConfig; end
  class Unknown < RemoteAgentAuthorizationConfig; end
end

#bearer_tokenTypes::RemoteAgentBearerTokenConfig

Remote agent configuration with Bearer token (RFC 6750).



4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
# File 'lib/aws-sdk-devopsagent/types.rb', line 4943

class RemoteAgentAuthorizationConfig < Struct.new(
  :api_key,
  :o_auth_client_credentials,
  :bearer_token,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ApiKey < RemoteAgentAuthorizationConfig; end
  class OAuthClientCredentials < RemoteAgentAuthorizationConfig; end
  class BearerToken < RemoteAgentAuthorizationConfig; end
  class Unknown < RemoteAgentAuthorizationConfig; end
end

#o_auth_client_credentialsTypes::RemoteAgentOAuthClientCredentialsConfig

Remote agent configuration with OAuth client credentials.



4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
# File 'lib/aws-sdk-devopsagent/types.rb', line 4943

class RemoteAgentAuthorizationConfig < Struct.new(
  :api_key,
  :o_auth_client_credentials,
  :bearer_token,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ApiKey < RemoteAgentAuthorizationConfig; end
  class OAuthClientCredentials < RemoteAgentAuthorizationConfig; end
  class BearerToken < RemoteAgentAuthorizationConfig; end
  class Unknown < RemoteAgentAuthorizationConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4943
4944
4945
# File 'lib/aws-sdk-devopsagent/types.rb', line 4943

def unknown
  @unknown
end