Class: Aws::Pipes::Types::MSKAccessCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::MSKAccessCredentials
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
Note:
MSKAccessCredentials is a union - when making an API calls you must set exactly one of the members.
Note:
MSKAccessCredentials is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MSKAccessCredentials corresponding to the set member.
The Secrets Manager secret that stores your stream credentials.
Direct Known Subclasses
Defined Under Namespace
Classes: ClientCertificateTlsAuth, SaslScram512Auth, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_certificate_tls_auth ⇒ String
The ARN of the Secrets Manager secret.
-
#sasl_scram_512_auth ⇒ String
The ARN of the Secrets Manager secret.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#client_certificate_tls_auth ⇒ String
The ARN of the Secrets Manager secret.
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 |
# File 'lib/aws-sdk-pipes/types.rb', line 1346 class MSKAccessCredentials < Struct.new( :sasl_scram_512_auth, :client_certificate_tls_auth, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SaslScram512Auth < MSKAccessCredentials; end class ClientCertificateTlsAuth < MSKAccessCredentials; end class Unknown < MSKAccessCredentials; end end |
#sasl_scram_512_auth ⇒ String
The ARN of the Secrets Manager secret.
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 |
# File 'lib/aws-sdk-pipes/types.rb', line 1346 class MSKAccessCredentials < Struct.new( :sasl_scram_512_auth, :client_certificate_tls_auth, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SaslScram512Auth < MSKAccessCredentials; end class ClientCertificateTlsAuth < MSKAccessCredentials; end class Unknown < MSKAccessCredentials; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1346 1347 1348 |
# File 'lib/aws-sdk-pipes/types.rb', line 1346 def unknown @unknown end |