Interface CfnEntitlementMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEntitlementMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:22.558Z")
@Stability(Stable)
public interface CfnEntitlementMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEntitlementPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.accountaccess.*;
CfnEntitlementMixinProps cfnEntitlementMixinProps = CfnEntitlementMixinProps.builder()
.applicationArn("applicationArn")
.entitlement(EntitlementProperty.builder()
.principalRole(PrincipalRoleEntitlementProperty.builder()
.account("account")
.principal(PrincipalProperty.builder()
.identityCenter(IdentityCenterPrincipalProperty.builder()
.groupId("groupId")
.userId("userId")
.build())
.build())
.roleArn("roleArn")
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEntitlementMixinPropsstatic final classAn implementation forCfnEntitlementMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the application.default ObjectReturns union: eitherIResolvableorCfnEntitlementPropsMixin.EntitlementPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationArn
The ARN of the application.- See Also:
-
getEntitlement
Returns union: eitherIResolvableorCfnEntitlementPropsMixin.EntitlementProperty- See Also:
-
builder
- Returns:
- a
CfnEntitlementMixinProps.BuilderofCfnEntitlementMixinProps
-