Class: Aws::SsmSap::Types::ApplicationCredential

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssmsap/types.rb

Overview

The credentials of your SAP application.

Constant Summary collapse

SENSITIVE =
[:secret_id]

Instance Attribute Summary collapse

Instance Attribute Details

#credential_typeString

The type of the application credentials.

Returns:

  • (String)


90
91
92
93
94
95
96
# File 'lib/aws-sdk-ssmsap/types.rb', line 90

class ApplicationCredential < Struct.new(
  :database_name,
  :credential_type,
  :secret_id)
  SENSITIVE = [:secret_id]
  include Aws::Structure
end

#database_nameString

The name of the SAP HANA database.

Returns:

  • (String)


90
91
92
93
94
95
96
# File 'lib/aws-sdk-ssmsap/types.rb', line 90

class ApplicationCredential < Struct.new(
  :database_name,
  :credential_type,
  :secret_id)
  SENSITIVE = [:secret_id]
  include Aws::Structure
end

#secret_idString

The secret ID created in AWS Secrets Manager to store the credentials of the SAP application.

Returns:

  • (String)


90
91
92
93
94
95
96
# File 'lib/aws-sdk-ssmsap/types.rb', line 90

class ApplicationCredential < Struct.new(
  :database_name,
  :credential_type,
  :secret_id)
  SENSITIVE = [:secret_id]
  include Aws::Structure
end