interface PolicyGrantReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DataZone.PolicyGrantReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdatazone#PolicyGrantReference |
Java | software.amazon.awscdk.interfaces.datazone.PolicyGrantReference |
Python | aws_cdk.interfaces.aws_datazone.PolicyGrantReference |
TypeScript | aws-cdk-lib » interfaces » aws_datazone » PolicyGrantReference |
A reference to a PolicyGrant resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as interfaces_aws_datazone } from 'aws-cdk-lib/interfaces';
const policyGrantReference: interfaces_aws_datazone.PolicyGrantReference = {
domainIdentifier: 'domainIdentifier',
entityIdentifier: 'entityIdentifier',
entityType: 'entityType',
grantId: 'grantId',
policyType: 'policyType',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainIdentifier of the PolicyGrant resource. |
| entity | string | The EntityIdentifier of the PolicyGrant resource. |
| entity | string | The EntityType of the PolicyGrant resource. |
| grant | string | The GrantId of the PolicyGrant resource. |
| policy | string | The PolicyType of the PolicyGrant resource. |
domainIdentifier
Type:
string
The DomainIdentifier of the PolicyGrant resource.
entityIdentifier
Type:
string
The EntityIdentifier of the PolicyGrant resource.
entityType
Type:
string
The EntityType of the PolicyGrant resource.
grantId
Type:
string
The GrantId of the PolicyGrant resource.
policyType
Type:
string
The PolicyType of the PolicyGrant resource.

.NET
Go
Java
Python
TypeScript