interface TrustedEntitySetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GuardDuty.TrustedEntitySetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsguardduty#TrustedEntitySetReference |
Java | software.amazon.awscdk.interfaces.guardduty.TrustedEntitySetReference |
Python | aws_cdk.interfaces.aws_guardduty.TrustedEntitySetReference |
TypeScript | aws-cdk-lib » interfaces » aws_guardduty » TrustedEntitySetReference |
A reference to a TrustedEntitySet resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_guardduty as interfaces_guardduty } from 'aws-cdk-lib/interfaces';
const trustedEntitySetReference: interfaces_guardduty.TrustedEntitySetReference = {
detectorId: 'detectorId',
trustedEntitySetId: 'trustedEntitySetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The DetectorId of the TrustedEntitySet resource. |
| trusted | string | The Id of the TrustedEntitySet resource. |
detectorId
Type:
string
The DetectorId of the TrustedEntitySet resource.
trustedEntitySetId
Type:
string
The Id of the TrustedEntitySet resource.

.NET
Go
Java
Python
TypeScript