You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(servicecatalogappregistry): update README.md to track latest change (#24855)
This commit updates the `README.md` to be in sync with the latest change. Deprecated methods are removed, new methods are added.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
`ApplicationAssociator` defines an AppRegistry application to contain all the stacks in deployed through your cdk package. This helps to manage all the
65
+
cdk deployed resources.
66
+
67
+
### Create a new application to associate all the stacks in the cdk.App scope
68
+
64
69
If you want to create an Application named `MyAssociatedApplication` in account `123456789012` and region `us-east-1`
65
70
and want to associate all stacks in the `App` scope to `MyAssociatedApplication`, then use as shown in the example below:
66
71
@@ -100,6 +105,8 @@ const associatedApp = new appreg.ApplicationAssociator(app, 'AssociatedApplicati
100
105
});
101
106
```
102
107
108
+
### Import existing application to associate all the stacks in the cdk.App scope
109
+
103
110
If you want to re-use an existing Application with ARN: `arn:aws:servicecatalog:us-east-1:123456789012:/applications/applicationId`
104
111
and want to associate all stacks in the `App` scope to your imported application, then use as shown in the example below:
105
112
@@ -113,6 +120,8 @@ const associatedApp = new appreg.ApplicationAssociator(app, 'AssociatedApplicati
113
120
});
114
121
```
115
122
123
+
### Associate attribute group to the application used by `ApplicationAssociator`
124
+
116
125
If you want to associate an Attribute Group with application created by `ApplicationAssociator`, then use as shown in the example below:
0 commit comments