CfnApplicationProps

class aws_cdk.aws_systemsmanagersap.CfnApplicationProps(*, application_id, application_type, credentials=None, instances=None, sap_instance_number=None, sid=None, tags=None)

Bases: object

Properties for defining a CfnApplication.

Parameters:
  • application_id (str) – The ID of the application.

  • application_type (str) – The type of the application.

  • credentials (Union[IResolvable, Sequence[Union[IResolvable, CredentialProperty, Dict[str, Any]]], None]) – The credentials of the SAP application.

  • instances (Optional[Sequence[str]]) – The Amazon EC2 instances on which your SAP application is running.

  • sap_instance_number (Optional[str]) – The SAP instance number of the application.

  • sid (Optional[str]) – The System ID of the application.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags on the application.

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_systemsmanagersap as systemsmanagersap

cfn_application_props = systemsmanagersap.CfnApplicationProps(
    application_id="applicationId",
    application_type="applicationType",

    # the properties below are optional
    credentials=[systemsmanagersap.CfnApplication.CredentialProperty(
        credential_type="credentialType",
        database_name="databaseName",
        secret_id="secretId"
    )],
    instances=["instances"],
    sap_instance_number="sapInstanceNumber",
    sid="sid",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

application_id

The ID of the application.

See:

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

application_type

The type of the application.

See:

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

credentials

The credentials of the SAP application.

See:

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

instances

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

See:

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

sap_instance_number

The SAP instance number of the application.

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.

See:

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

tags

The tags on the application.

See:

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