Show / Hide Table of Contents

Class CfnApplicationProps

Properties for defining a CfnApplication.

Inheritance
object
CfnApplicationProps
Implements
ICfnApplicationProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SystemsManagerSAP
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps Implements ICfnApplicationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html

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 CfnApplication.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-applicationid

ApplicationType

The type of the application.

public string ApplicationType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-applicationtype

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-componentsinfo

Credentials

The credentials of the SAP application.

public object? Credentials { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-credentials

DatabaseArn

The Amazon Resource Name (ARN) of the database.

public string? DatabaseArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-databasearn

Instances

The Amazon EC2 instances on which your SAP application is running.

public string[]? Instances { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-instances

SapInstanceNumber

The SAP instance number of the application.

public string? SapInstanceNumber { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-sapinstancenumber

Sid

The System ID of the application.

public string? Sid { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-sid

Tags

The tags on the application.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-systemsmanagersap-application.html#cfn-systemsmanagersap-application-tags

Implements

ICfnApplicationProps
Back to top Generated by DocFX