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)


1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1284

class MSKAccessCredentials < Struct.new(
  :client_certificate_tls_auth,
  :sasl_scram_512_auth,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ClientCertificateTlsAuth < MSKAccessCredentials; end
  class SaslScram512Auth < MSKAccessCredentials; end
  class Unknown < MSKAccessCredentials; end
end

#sasl_scram_512_authString

The ARN of the Secrets Manager secret.

Returns:

  • (String)


1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1284

class MSKAccessCredentials < Struct.new(
  :client_certificate_tls_auth,
  :sasl_scram_512_auth,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ClientCertificateTlsAuth < MSKAccessCredentials; end
  class SaslScram512Auth < MSKAccessCredentials; end
  class Unknown < MSKAccessCredentials; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1284
1285
1286
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 1284

def unknown
  @unknown
end