Class: Aws::Pipes::Types::MQBrokerAccessCredentials

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

Overview

Note:

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

Note:

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

The Secrets Manager secret that stores your broker credentials.

Direct Known Subclasses

BasicAuth, Unknown

Defined Under Namespace

Classes: BasicAuth, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#basic_authString

The ARN of the Secrets Manager secret.

Returns:

  • (String)


1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1257

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

  class BasicAuth < MQBrokerAccessCredentials; end
  class Unknown < MQBrokerAccessCredentials; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1257
1258
1259
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1257

def unknown
  @unknown
end