Class CfnApplicationProps
Properties for defining a CfnApplication
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.SystemsManagerSAP
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : Object, ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps
Inherits Object
Implements ICfnApplicationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SystemsManagerSAP;
var cfnApplicationProps = new CfnApplicationProps {
ApplicationId = "applicationId",
ApplicationType = "applicationType",
// the properties below are optional
Credentials = new [] { new CredentialProperty {
CredentialType = "credentialType",
DatabaseName = "databaseName",
SecretId = "secretId"
} },
DatabaseArn = "databaseArn",
Instances = new [] { "instances" },
SapInstanceNumber = "sapInstanceNumber",
Sid = "sid",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Application |
The ID of the application. |
Application |
The type of the application. |
Credentials | The credentials of the SAP application. |
Database |
The Amazon Resource Name (ARN) of the database. |
Instances | The Amazon EC2 instances on which your SAP application is running. |
Sap |
The SAP instance number of the application. |
Sid | The System ID of the application. |
Tags | The tags on the application. |
Constructors
CfnApplicationProps()
public CfnApplicationProps()
Properties
ApplicationId
The ID of the application.
public string ApplicationId { get; set; }
Property Value
System.
Remarks
ApplicationType
The type of the application.
public string ApplicationType { get; set; }
Property Value
System.
Remarks
Credentials
The credentials of the SAP application.
public object Credentials { get; set; }
Property Value
System.
Remarks
DatabaseArn
The Amazon Resource Name (ARN) of the database.
public string DatabaseArn { get; set; }
Property Value
System.
Remarks
Instances
The Amazon EC2 instances on which your SAP application is running.
public string[] Instances { get; set; }
Property Value
System.
Remarks
SapInstanceNumber
The SAP instance number of the application.
public string SapInstanceNumber { get; set; }
Property Value
System.
Remarks
Sid
The System ID of the application.
public string Sid { get; set; }
Property Value
System.