Class CfnApplicationProps
Properties for defining a CfnApplication
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SystemsManagerSAP
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps 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
ComponentsInfo = new [] { new ComponentInfoProperty {
ComponentType = "componentType",
Ec2InstanceId = "ec2InstanceId",
Sid = "sid"
} },
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
CfnApplicationProps() | Properties for defining a |
Properties
ApplicationId | The ID of the application. |
ApplicationType | The type of the application. |
ComponentsInfo | This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher. |
Credentials | The credentials of the SAP application. |
DatabaseArn | The Amazon Resource Name (ARN) of the database. |
Instances | The Amazon EC2 instances on which your SAP application is running. |
SapInstanceNumber | The SAP instance number of the application. |
Sid | The System ID of the application. |
Tags | The tags on the application. |
Constructors
CfnApplicationProps()
Properties for defining a CfnApplication
.
public CfnApplicationProps()
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
ComponentsInfo = new [] { new ComponentInfoProperty {
ComponentType = "componentType",
Ec2InstanceId = "ec2InstanceId",
Sid = "sid"
} },
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"
} }
};
Properties
ApplicationId
The ID of the application.
public string ApplicationId { get; set; }
Property Value
Remarks
ApplicationType
The type of the application.
public string ApplicationType { get; set; }
Property Value
Remarks
ComponentsInfo
This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.
public object? ComponentsInfo { get; set; }
Property Value
Remarks
Credentials
The credentials of the SAP application.
public object? Credentials { get; set; }
Property Value
Remarks
DatabaseArn
The Amazon Resource Name (ARN) of the database.
public string? DatabaseArn { get; set; }
Property Value
Remarks
Instances
The Amazon EC2 instances on which your SAP application is running.
public string[]? Instances { get; set; }
Property Value
string[]
Remarks
SapInstanceNumber
The SAP instance number of the application.
public string? SapInstanceNumber { get; set; }
Property Value
Remarks
Sid
The System ID of the application.
public string? Sid { get; set; }