Class Application
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.servicecatalogappregistry.Application
- All Implemented Interfaces:
IConstruct
,IDependable
,IResource
,IApplication
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.760Z")
@Stability(Experimental)
public class Application
extends Resource
implements IApplication
(experimental) A Service Catalog AppRegistry Application.
Example:
Application application = Application.Builder.create(this, "MyFirstApplication") .applicationName("MyFirstApplicationName") .description("description for my application") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forApplication
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.servicecatalogappregistry.IApplication
IApplication.Jsii$Default, IApplication.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$Default
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Application
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
Application
(software.amazon.jsii.JsiiObjectRef objRef) Application
(software.constructs.Construct scope, String id, ApplicationProps props) -
Method Summary
Modifier and TypeMethodDescriptionvoid
associateAttributeGroup
(IAttributeGroup attributeGroup) (experimental) Associate an attribute group with application If the attribute group is already associated, it will ignore duplicate request.void
associateStack
(Stack stack) (experimental) Associate a stack with the application If the resource is already associated, it will ignore duplicate request.static IApplication
fromApplicationArn
(software.constructs.Construct scope, String id, String applicationArn) (experimental) Imports an Application construct that represents an external application.protected String
generateUniqueHash
(String resourceAddress) (experimental) Create a unique id.(experimental) The ARN of the application.(experimental) The ID of the application.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.constructs.Construct
toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.core.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
Application
protected Application(software.amazon.jsii.JsiiObjectRef objRef) -
Application
protected Application(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
Application
@Stability(Experimental) public Application(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ApplicationProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromApplicationArn
@Stability(Experimental) @NotNull public static IApplication fromApplicationArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String applicationArn) (experimental) Imports an Application construct that represents an external application.- Parameters:
scope
- The parent creating construct (usuallythis
). This parameter is required.id
- The construct's name. This parameter is required.applicationArn
- the Amazon Resource Name of the existing AppRegistry Application. This parameter is required.
-
associateAttributeGroup
@Stability(Experimental) public void associateAttributeGroup(@NotNull IAttributeGroup attributeGroup) (experimental) Associate an attribute group with application If the attribute group is already associated, it will ignore duplicate request.- Specified by:
associateAttributeGroup
in interfaceIApplication
- Parameters:
attributeGroup
- This parameter is required.
-
associateStack
(experimental) Associate a stack with the application If the resource is already associated, it will ignore duplicate request.A stack can only be associated with one application.
- Specified by:
associateStack
in interfaceIApplication
- Parameters:
stack
- This parameter is required.
-
generateUniqueHash
@Stability(Experimental) @NotNull protected String generateUniqueHash(@NotNull String resourceAddress) (experimental) Create a unique id.- Parameters:
resourceAddress
- This parameter is required.
-
getApplicationArn
(experimental) The ARN of the application.- Specified by:
getApplicationArn
in interfaceIApplication
-
getApplicationId
(experimental) The ID of the application.- Specified by:
getApplicationId
in interfaceIApplication
-