interface CfnLimitsProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnLimitsProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnLimitsProfileProps |
Java | software.amazon.awscdk.services.quicksight.CfnLimitsProfileProps |
Python | aws_cdk.aws_quicksight.CfnLimitsProfileProps |
TypeScript | aws-cdk-lib » aws_quicksight » CfnLimitsProfileProps |
Properties for defining a CfnLimitsProfile.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const cfnLimitsProfileProps: quicksight.CfnLimitsProfileProps = {
accountId: 'accountId',
profileName: 'profileName',
resourceLimits: {
resourceLimitsKey: {
maxValue: 123,
unit: 'unit',
},
},
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | |
| profile | string | |
| resource | IResolvable | { [string]: IResolvable | Profile } | |
| description? | string |
accountId
Type:
string
profileName
Type:
string
resourceLimits
Type:
IResolvable | { [string]: IResolvable | Profile }
description?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript