PolicyGrantReference
- class aws_cdk.aws_datazone.PolicyGrantReference(*, domain_identifier, entity_identifier, entity_type, grant_id, policy_type)
- Bases: - object- A reference to a PolicyGrant resource. - Parameters:
- domain_identifier ( - str) – The DomainIdentifier of the PolicyGrant resource.
- entity_identifier ( - str) – The EntityIdentifier of the PolicyGrant resource.
- entity_type ( - str) – The EntityType of the PolicyGrant resource.
- grant_id ( - str) – The GrantId of the PolicyGrant resource.
- policy_type ( - str) – The PolicyType of the PolicyGrant resource.
 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_datazone as datazone policy_grant_reference = datazone.PolicyGrantReference( domain_identifier="domainIdentifier", entity_identifier="entityIdentifier", entity_type="entityType", grant_id="grantId", policy_type="policyType" ) - Attributes - domain_identifier
- The DomainIdentifier of the PolicyGrant resource. 
 - entity_identifier
- The EntityIdentifier of the PolicyGrant resource. 
 - entity_type
- The EntityType of the PolicyGrant resource. 
 - grant_id
- The GrantId of the PolicyGrant resource. 
 - policy_type
- The PolicyType of the PolicyGrant resource.