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

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


84
85
86
87
88
89
90
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 84

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)


84
85
86
87
88
89
90
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 84

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)


84
85
86
87
88
89
90
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 84

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