CfnApplicationProps
- class aws_cdk.aws_systemsmanagersap.CfnApplicationProps(*, application_id, application_type, credentials=None, database_arn=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.database_arn (
Optional
[str
]) – The Amazon Resource Name (ARN) of the database.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:
- 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" )], database_arn="databaseArn", instances=["instances"], sap_instance_number="sapInstanceNumber", sid="sid", tags=[CfnTag( key="key", value="value" )] )
Attributes
- application_id
The ID of the application.
- application_type
The type of the application.
- credentials
The credentials of the SAP application.
- database_arn
The Amazon Resource Name (ARN) of the database.
- instances
The Amazon EC2 instances on which your SAP application is running.
- sap_instance_number
The SAP instance number of the application.
- sid
The System ID of the application.
- tags
The tags on the application.