interface ApplicableToProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnApprovalPolicy.ApplicableToProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnApprovalPolicy_ApplicableToProperty |
Java | software.amazon.awscdk.services.quicksight.CfnApprovalPolicy.ApplicableToProperty |
Python | aws_cdk.aws_quicksight.CfnApprovalPolicy.ApplicableToProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnApprovalPolicy » ApplicableToProperty |
Scoping: who the policy applies to.
GROUP: groupArns required (one or more group ARNs).
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';
declare const type: any;
const applicableToProperty: quicksight.CfnApprovalPolicy.ApplicableToProperty = {
type: type,
// the properties below are optional
groupArns: ['groupArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| type | any | |
| group | string[] | Required when type = GROUP. |
type
Type:
any
groupArns?
Type:
string[]
(optional)
Required when type = GROUP.
One or more group ARNs.

.NET
Go
Java
Python
TypeScript