interface CfnGrantMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LicenseManager.Mixins.CfnGrantMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslicensemanager/mixins#CfnGrantMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.licensemanager.mixins.CfnGrantMixinProps |
Python | aws_cdk.mixins_preview.aws_licensemanager.mixins.CfnGrantMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_licensemanager » mixins » CfnGrantMixinProps |
Properties for CfnGrantPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-licensemanager-grant.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as licensemanager_mixins } from '@aws-cdk/mixins-preview/aws-licensemanager';
const cfnGrantMixinProps: licensemanager_mixins.CfnGrantMixinProps = {
allowedOperations: ['allowedOperations'],
grantName: 'grantName',
homeRegion: 'homeRegion',
licenseArn: 'licenseArn',
principals: ['principals'],
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | Allowed operations for the grant. |
| grant | string | Grant name. |
| home | string | Home Region of the grant. |
| license | string | License ARN. |
| principals? | string[] | The grant principals. You can specify one of the following as an Amazon Resource Name (ARN):. |
| status? | string | Granted license status. |
allowedOperations?
Type:
string[]
(optional)
Allowed operations for the grant.
grantName?
Type:
string
(optional)
Grant name.
homeRegion?
Type:
string
(optional)
Home Region of the grant.
licenseArn?
Type:
string
(optional)
License ARN.
principals?
Type:
string[]
(optional)
The grant principals. You can specify one of the following as an Amazon Resource Name (ARN):.
An AWS account, which includes only the account specified.
An organizational unit (OU), which includes all accounts in the OU.
An organization, which will include all accounts across your organization.
status?
Type:
string
(optional)
Granted license status.

.NET
Go
Java
Python
TypeScript