@aws-cdk_aws-servicecatalogappregistry-alpha.SharePermission

enum SharePermission ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalogappregistry.Alpha.SharePermission
Gogithub.com/aws/aws-cdk-go/awscdkservicecatalogappregistryalpha/v2#SharePermission
Javasoftware.amazon.awscdk.services.servicecatalogappregistry.alpha.SharePermission
Pythonaws_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

NameDescription
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.