interface CfnPublishingDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnPublishingDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnPublishingDestinationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnPublishingDestinationMixinProps |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnPublishingDestinationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnPublishingDestinationMixinProps |
Properties for CfnPublishingDestinationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as guardduty_mixins } from '@aws-cdk/mixins-preview/aws-guardduty';
const cfnPublishingDestinationMixinProps: guardduty_mixins.CfnPublishingDestinationMixinProps = {
destinationProperties: {
destinationArn: 'destinationArn',
kmsKeyArn: 'kmsKeyArn',
},
destinationType: 'destinationType',
detectorId: 'detectorId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | CFNDestination | Contains the Amazon Resource Name (ARN) of the resource to publish to, such as an S3 bucket, and the ARN of the KMS key to use to encrypt published findings. |
| destination | string | The type of publishing destination. |
| detector | string | The ID of the GuardDuty detector where the publishing destination exists. |
| tags? | Tag[] | Describes a tag. |
destinationProperties?
Type:
IResolvable | CFNDestination
(optional)
Contains the Amazon Resource Name (ARN) of the resource to publish to, such as an S3 bucket, and the ARN of the KMS key to use to encrypt published findings.
destinationType?
Type:
string
(optional)
The type of publishing destination.
GuardDuty supports Amazon S3 buckets as a publishing destination.
detectorId?
Type:
string
(optional)
The ID of the GuardDuty detector where the publishing destination exists.
tags?
Type:
Tag[]
(optional)
Describes a tag.

.NET
Go
Java
Python
TypeScript