interface CustomDataIdentifierReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Macie.CustomDataIdentifierReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmacie#CustomDataIdentifierReference |
Java | software.amazon.awscdk.interfaces.macie.CustomDataIdentifierReference |
Python | aws_cdk.interfaces.aws_macie.CustomDataIdentifierReference |
TypeScript | aws-cdk-lib » interfaces » aws_macie » CustomDataIdentifierReference |
A reference to a CustomDataIdentifier 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_aws_macie } from 'aws-cdk-lib/interfaces';
const customDataIdentifierReference: interfaces_aws_macie.CustomDataIdentifierReference = {
customDataIdentifierArn: 'customDataIdentifierArn',
customDataIdentifierId: 'customDataIdentifierId',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | The ARN of the CustomDataIdentifier resource. |
| custom | string | The Id of the CustomDataIdentifier resource. |
customDataIdentifierArn
Type:
string
The ARN of the CustomDataIdentifier resource.
customDataIdentifierId
Type:
string
The Id of the CustomDataIdentifier resource.

.NET
Go
Java
Python
TypeScript