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.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.servicecatalogappregistry.IApplication
IApplication.Jsii$Default, IApplication.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$Default -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedApplication(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedApplication(software.amazon.jsii.JsiiObjectRef objRef) Application(software.constructs.Construct scope, String id, ApplicationProps props) -
Method Summary
Modifier and TypeMethodDescriptionvoidassociateAttributeGroup(IAttributeGroup attributeGroup) (experimental) Associate an attribute group with application If the attribute group is already associated, it will ignore duplicate request.voidassociateStack(Stack stack) (experimental) Associate a stack with the application If the resource is already associated, it will ignore duplicate request.static IApplicationfromApplicationArn(software.constructs.Construct scope, String id, String applicationArn) (experimental) Imports an Application construct that represents an external application.protected StringgenerateUniqueHash(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, isResourceMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.Construct
toStringMethods 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.amazon.awscdk.core.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStackMethods 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:
associateAttributeGroupin 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:
associateStackin 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:
getApplicationArnin interfaceIApplication
-
getApplicationId
(experimental) The ID of the application.- Specified by:
getApplicationIdin interfaceIApplication
-