interface PublishingDestinationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.GuardDuty.PublishingDestinationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsguardduty#PublishingDestinationReference |
Java | software.amazon.awscdk.interfaces.guardduty.PublishingDestinationReference |
Python | aws_cdk.interfaces.aws_guardduty.PublishingDestinationReference |
TypeScript | aws-cdk-lib » interfaces » aws_guardduty » PublishingDestinationReference |
A reference to a PublishingDestination 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_aws_guardduty } from 'aws-cdk-lib/interfaces';
const publishingDestinationReference: interfaces_aws_guardduty.PublishingDestinationReference = {
detectorId: 'detectorId',
publishingDestinationId: 'publishingDestinationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| detector | string | The DetectorId of the PublishingDestination resource. |
| publishing | string | The Id of the PublishingDestination resource. |
detectorId
Type:
string
The DetectorId of the PublishingDestination resource.
publishingDestinationId
Type:
string
The Id of the PublishingDestination resource.

.NET
Go
Java
Python
TypeScript