Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.873Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplication.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.systemsmanagersap.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.applicationId("applicationId")
.applicationType("applicationType")
// the properties below are optional
.credentials(List.of(CredentialProperty.builder()
.credentialType("credentialType")
.databaseName("databaseName")
.secretId("secretId")
.build()))
.instances(List.of("instances"))
.sapInstanceNumber("sapInstanceNumber")
.sid("sid")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builderbuilder()The ID of the application.The type of the application.default ObjectThe credentials of the SAP application.The Amazon EC2 instances on which your SAP application is running.default StringThe SAP instance number of the application.default StringgetSid()The System ID of the application.getTags()The tags on the application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The ID of the application. -
getApplicationType
The type of the application. -
getCredentials
The credentials of the SAP application. -
getInstances
The Amazon EC2 instances on which your SAP application is running. -
getSapInstanceNumber
The SAP instance number of the application. -
getSid
The System ID of the application. -
getTags
The tags on the application. -
builder
- Returns:
- a
CfnApplicationProps.BuilderofCfnApplicationProps
-