Class CfnApplication
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.systemsmanagersap.CfnApplication
- All Implemented Interfaces:
IEnvironmentAware,IInspectable,ITaggable,IApplicationRef,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:16.501Z")
@Stability(Stable)
public class CfnApplication
extends CfnResource
implements IInspectable, IApplicationRef, ITaggable
An SAP application registered with AWS Systems Manager for SAP.
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.*;
CfnApplication cfnApplication = CfnApplication.Builder.create(this, "MyCfnApplication")
.applicationId("applicationId")
.applicationType("applicationType")
// the properties below are optional
.componentsInfo(List.of(ComponentInfoProperty.builder()
.componentType("componentType")
.ec2InstanceId("ec2InstanceId")
.sid("sid")
.build()))
.credentials(List.of(CredentialProperty.builder()
.credentialType("credentialType")
.databaseName("databaseName")
.secretId("secretId")
.build()))
.databaseArn("databaseArn")
.instances(List.of("instances"))
.sapInstanceNumber("sapInstanceNumber")
.sid("sid")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnApplication.static interfaceThis is information about the component of your SAP application, such as Web Dispatcher.static interfaceThe credentials of your SAP application.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.systemsmanagersap.IApplicationRef
IApplicationRef.Jsii$Default, IApplicationRef.Jsii$ProxyNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnApplication(software.amazon.jsii.JsiiObjectRef objRef) CfnApplication(software.constructs.Construct scope, String id, CfnApplicationProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe ID of the application.A reference to a Application resource.The type of the application.The Amazon Resource Name of the SAP application.This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.The credentials of the SAP application.The Amazon Resource Name (ARN) of the database.The Amazon EC2 instances on which your SAP application is running.The SAP instance number of the application.getSid()The System ID of the application.getTags()Tag Manager which manages the tags for this resource.The tags on the application.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetApplicationId(String value) The ID of the application.voidsetApplicationType(String value) The type of the application.voidsetComponentsInfo(List<Object> value) This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.voidsetComponentsInfo(IResolvable value) This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.voidsetCredentials(List<Object> value) The credentials of the SAP application.voidsetCredentials(IResolvable value) The credentials of the SAP application.voidsetDatabaseArn(String value) The Amazon Resource Name (ARN) of the database.voidsetInstances(List<String> value) The Amazon EC2 instances on which your SAP application is running.voidsetSapInstanceNumber(String value) The SAP instance number of the application.voidThe System ID of the application.voidsetTagsRaw(List<CfnTag> value) The tags on the application.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnApplication
protected CfnApplication(software.amazon.jsii.JsiiObjectRef objRef) -
CfnApplication
protected CfnApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnApplication
@Stability(Stable) public CfnApplication(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnApplicationProps props) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getApplicationRef
A reference to a Application resource.- Specified by:
getApplicationRefin interfaceIApplicationRef
-
getAttrArn
The Amazon Resource Name of the SAP application. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getApplicationId
The ID of the application. -
setApplicationId
The ID of the application. -
getApplicationType
The type of the application. -
setApplicationType
The type of the application. -
getComponentsInfo
This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApplication.ComponentInfoProperty> -
setComponentsInfo
This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher. -
setComponentsInfo
This is an optional parameter for component details to which the SAP ABAP application is attached, such as Web Dispatcher. -
getCredentials
The credentials of the SAP application.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApplication.CredentialProperty> -
setCredentials
The credentials of the SAP application. -
setCredentials
The credentials of the SAP application. -
getDatabaseArn
The Amazon Resource Name (ARN) of the database. -
setDatabaseArn
The Amazon Resource Name (ARN) of the database. -
getInstances
The Amazon EC2 instances on which your SAP application is running. -
setInstances
The Amazon EC2 instances on which your SAP application is running. -
getSapInstanceNumber
The SAP instance number of the application. -
setSapInstanceNumber
The SAP instance number of the application. -
getSid
The System ID of the application. -
setSid
The System ID of the application. -
getTagsRaw
The tags on the application. -
setTagsRaw
The tags on the application.
-