interface CredentialProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SystemsManagerSAP.Mixins.CfnApplicationPropsMixin.CredentialProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssystemsmanagersap/mixins#CfnApplicationPropsMixin_CredentialProperty |
Java | software.amazon.awscdk.mixins.preview.services.systemsmanagersap.mixins.CfnApplicationPropsMixin.CredentialProperty |
Python | aws_cdk.mixins_preview.aws_systemsmanagersap.mixins.CfnApplicationPropsMixin.CredentialProperty |
TypeScript | @aws-cdk/mixins-preview » aws_systemsmanagersap » mixins » CfnApplicationPropsMixin » 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 { mixins as systemsmanagersap_mixins } from '@aws-cdk/mixins-preview/aws-systemsmanagersap';
const credentialProperty: systemsmanagersap_mixins.CfnApplicationPropsMixin.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.

.NET
Go
Java
Python
TypeScript