Interface PolicyGrantReference
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PolicyGrantReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-15T14:51:55.227Z")
@Stability(Stable)
public interface PolicyGrantReference
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.datazone.*; PolicyGrantReference policyGrantReference = PolicyGrantReference.builder() .domainIdentifier("domainIdentifier") .entityIdentifier("entityIdentifier") .entityType("entityType") .grantId("grantId") .policyType("policyType") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forPolicyGrantReference
static final class
An implementation forPolicyGrantReference
-
Method Summary
Modifier and TypeMethodDescriptionstatic PolicyGrantReference.Builder
builder()
The DomainIdentifier of the PolicyGrant resource.The EntityIdentifier of the PolicyGrant resource.The EntityType of the PolicyGrant resource.The GrantId of the PolicyGrant resource.The PolicyType of the PolicyGrant resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainIdentifier
The DomainIdentifier of the PolicyGrant resource. -
getEntityIdentifier
The EntityIdentifier of the PolicyGrant resource. -
getEntityType
The EntityType of the PolicyGrant resource. -
getGrantId
The GrantId of the PolicyGrant resource. -
getPolicyType
The PolicyType of the PolicyGrant resource. -
builder
- Returns:
- a
PolicyGrantReference.Builder
ofPolicyGrantReference
-