interface CredentialProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.SystemsManagerSAP.CfnApplication.CredentialProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssystemsmanagersap#CfnApplication_CredentialProperty | 
|  Java | software.amazon.awscdk.services.systemsmanagersap.CfnApplication.CredentialProperty | 
|  Python | aws_cdk.aws_systemsmanagersap.CfnApplication.CredentialProperty | 
|  TypeScript | aws-cdk-lib»aws_systemsmanagersap»CfnApplication»CredentialProperty | 
The credentials of your SAP application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_systemsmanagersap as systemsmanagersap } from 'aws-cdk-lib';
const credentialProperty: systemsmanagersap.CfnApplication.CredentialProperty = {
  credentialType: 'credentialType',
  databaseName: 'databaseName',
  secretId: 'secretId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| credential | string | The type of the application credentials. | 
| database | string | The name of the SAP HANA database. | 
| secret | string | The secret ID created in AWS Secrets Manager to store the credentials of the SAP application. | 
credentialType?
Type:
string
(optional)
The type of the application credentials.
databaseName?
Type:
string
(optional)
The name of the SAP HANA database.
secretId?
Type:
string
(optional)
The secret ID created in AWS Secrets Manager to store the credentials of the SAP application.
