interface DLPSettingReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.DLPSettingReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#DLPSettingReference |
Java | software.amazon.awscdk.interfaces.quicksight.DLPSettingReference |
Python | aws_cdk.interfaces.aws_quicksight.DLPSettingReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » DLPSettingReference |
A reference to a DLPSetting 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 dLPSettingReference: interfaces_quicksight.DLPSettingReference = {
awsAccountId: 'awsAccountId',
dlpSettingArn: 'dlpSettingArn',
dlpSettingId: 'dlpSettingId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the DLPSetting resource. |
| dlp | string | The ARN of the DLPSetting resource. |
| dlp | string | The DlpSettingId of the DLPSetting resource. |
awsAccountId
Type:
string
The AwsAccountId of the DLPSetting resource.
dlpSettingArn
Type:
string
The ARN of the DLPSetting resource.
dlpSettingId
Type:
string
The DlpSettingId of the DLPSetting resource.

.NET
Go
Java
Python
TypeScript