enum SharePermission
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Servicecatalogappregistry.Alpha.SharePermission |
Go | github.com/aws/aws-cdk-go/awscdkservicecatalogappregistryalpha/v2#SharePermission |
Java | software.amazon.awscdk.services.servicecatalogappregistry.alpha.SharePermission |
Python | aws_cdk.aws_servicecatalogappregistry_alpha.SharePermission |
TypeScript (source) | @aws-cdk/aws-servicecatalogappregistry-alpha ยป SharePermission |
Supported permissions for sharing applications or attribute groups with principals using AWS RAM.
Example
import * as iam from 'aws-cdk-lib/aws-iam';
declare const application: appreg.Application;
application.shareApplication('MyShareId', {
name: 'MyShare',
accounts: ['123456789012', '234567890123'],
sharePermission: appreg.SharePermission.ALLOW_ACCESS,
});
Members
| Name | Description |
|---|---|
| READ_ONLY | Allows principals in the share to only view the application or attribute group. |
| ALLOW_ACCESS | Allows principals in the share to associate resources and attribute groups with applications. |
READ_ONLY
Allows principals in the share to only view the application or attribute group.
ALLOW_ACCESS
Allows principals in the share to associate resources and attribute groups with applications.

.NET
Go
Java
Python
TypeScript (