interface AllowListReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Macie.AllowListReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmacie#AllowListReference |
Java | software.amazon.awscdk.interfaces.macie.AllowListReference |
Python | aws_cdk.interfaces.aws_macie.AllowListReference |
TypeScript | aws-cdk-lib » interfaces » aws_macie » AllowListReference |
A reference to a AllowList resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_macie as interfaces_macie } from 'aws-cdk-lib/interfaces';
const allowListReference: interfaces_macie.AllowListReference = {
allowListArn: 'allowListArn',
allowListId: 'allowListId',
};
Properties
| Name | Type | Description |
|---|---|---|
| allow | string | The ARN of the AllowList resource. |
| allow | string | The Id of the AllowList resource. |
allowListArn
Type:
string
The ARN of the AllowList resource.
allowListId
Type:
string
The Id of the AllowList resource.

.NET
Go
Java
Python
TypeScript