interface CFNDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Mixins.CfnPublishingDestinationPropsMixin.CFNDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/mixins#CfnPublishingDestinationPropsMixin_CFNDestinationPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.mixins.CfnPublishingDestinationPropsMixin.CFNDestinationPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_guardduty.mixins.CfnPublishingDestinationPropsMixin.CFNDestinationPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_guardduty » mixins » CfnPublishingDestinationPropsMixin » CFNDestinationPropertiesProperty |
Contains the Amazon Resource Name (ARN) of the resource that receives the published findings, such as an S3 bucket, and the ARN of the KMS key that is used to encrypt these published findings.
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 cFNDestinationPropertiesProperty: guardduty_mixins.CfnPublishingDestinationPropsMixin.CFNDestinationPropertiesProperty = {
destinationArn: 'destinationArn',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The ARN of the resource where the findings are published. |
| kms | string | The ARN of the KMS key to use for encryption. |
destinationArn?
Type:
string
(optional)
The ARN of the resource where the findings are published.
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key to use for encryption.

.NET
Go
Java
Python
TypeScript