Class: Aws::Pipes::Types::MSKAccessCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/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.

Defined Under Namespace

Classes: ClientCertificateTlsAuth, SaslScram512Auth, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_certificate_tls_authString

The ARN of the Secrets Manager secret.

Returns:

  • (String)


1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1315

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_authString

The ARN of the Secrets Manager secret.

Returns:

  • (String)


1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1315

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1315
1316
1317
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1315

def unknown
  @unknown
end