interface CfnLimitsProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnLimitsProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnLimitsProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnLimitsProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnLimitsProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnLimitsProfileMixinProps |
Properties for CfnLimitsProfilePropsMixin.
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/cfn-property-mixins';
const cfnLimitsProfileMixinProps: quicksight.CfnLimitsProfileMixinProps = {
accountId: 'accountId',
description: 'description',
profileName: 'profileName',
resourceLimits: {
resourceLimitsKey: {
maxValue: 123,
unit: 'unit',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | |
| description? | string | |
| profile | string | |
| resource | IResolvable | { [string]: IResolvable | Profile } |
accountId?
Type:
string
(optional)
description?
Type:
string
(optional)
profileName?
Type:
string
(optional)
resourceLimits?
Type:
IResolvable | { [string]: IResolvable | Profile }
(optional)

.NET
Go
Java
Python
TypeScript