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[- CredentialProperty,- Dict[- str,- Any],- IResolvable]],- 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.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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. 
 - application_type
- The type of the application. 
 - credentials
- The credentials of the SAP application. 
 - 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.