interface LimitsProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.LimitsProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#LimitsProfileReference |
Java | software.amazon.awscdk.interfaces.quicksight.LimitsProfileReference |
Python | aws_cdk.interfaces.aws_quicksight.LimitsProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » LimitsProfileReference |
A reference to a LimitsProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_quicksight } from 'aws-cdk-lib/interfaces';
const limitsProfileReference: interfaces_quicksight.LimitsProfileReference = {
accountId: 'accountId',
limitsProfileArn: 'limitsProfileArn',
profileId: 'profileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The AccountId of the LimitsProfile resource. |
| limits | string | The ARN of the LimitsProfile resource. |
| profile | string | The ProfileId of the LimitsProfile resource. |
accountId
Type:
string
The AccountId of the LimitsProfile resource.
limitsProfileArn
Type:
string
The ARN of the LimitsProfile resource.
profileId
Type:
string
The ProfileId of the LimitsProfile resource.

.NET
Go
Java
Python
TypeScript