Class: Aws::Pipes::Types::MQBrokerAccessCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::MQBrokerAccessCredentials
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#basic_auth ⇒ String
The ARN of the Secrets Manager secret.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#basic_auth ⇒ String
The ARN of the Secrets Manager secret.
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 |
# File 'lib/aws-sdk-pipes/types.rb', line 1319 class MQBrokerAccessCredentials < Struct.new( :basic_auth, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class BasicAuth < MQBrokerAccessCredentials; end class Unknown < MQBrokerAccessCredentials; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1319 1320 1321 |
# File 'lib/aws-sdk-pipes/types.rb', line 1319 def unknown @unknown end |