Class: Aws::BedrockAgentCore::Types::ProxyCredentials

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

Overview

Note:

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

Note:

ProxyCredentials is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProxyCredentials corresponding to the set member.

Union type representing different proxy authentication methods. Currently supports HTTP Basic Authentication (username and password).

Defined Under Namespace

Classes: BasicAuth, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#basic_authTypes::BasicAuth

HTTP Basic Authentication credentials (username and password) stored in Amazon Web Services Secrets Manager.

Returns:



3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 3828

class ProxyCredentials < Struct.new(
  :basic_auth,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class BasicAuth < ProxyCredentials; end
  class Unknown < ProxyCredentials; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3828
3829
3830
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 3828

def unknown
  @unknown
end