interface EntitlementReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AccountAccess.EntitlementReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsaccountaccess#EntitlementReference |
Java | software.amazon.awscdk.interfaces.accountaccess.EntitlementReference |
Python | aws_cdk.interfaces.aws_accountaccess.EntitlementReference |
TypeScript | aws-cdk-lib » interfaces » aws_accountaccess » EntitlementReference |
A reference to a Entitlement resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_accountaccess as interfaces_accountaccess } from 'aws-cdk-lib/interfaces';
const entitlementReference: interfaces_accountaccess.EntitlementReference = {
applicationArn: 'applicationArn',
entitlementId: 'entitlementId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationArn of the Entitlement resource. |
| entitlement | string | The EntitlementId of the Entitlement resource. |
applicationArn
Type:
string
The ApplicationArn of the Entitlement resource.
entitlementId
Type:
string
The EntitlementId of the Entitlement resource.

.NET
Go
Java
Python
TypeScript