Class: Aws::SsmSap::Types::ApplicationCredential
- Inherits:
-
Struct
- Object
- Struct
- Aws::SsmSap::Types::ApplicationCredential
- 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
-
#credential_type ⇒ String
The type of the application credentials.
-
#database_name ⇒ String
The name of the SAP HANA database.
-
#secret_id ⇒ String
The secret ID created in AWS Secrets Manager to store the credentials of the SAP application.
Instance Attribute Details
#credential_type ⇒ String
The type of the application credentials.
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_name ⇒ String
The name of the SAP HANA database.
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_id ⇒ String
The secret ID created in AWS Secrets Manager to store the credentials of the SAP application.
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 |