Interface ICfnPublishingDestinationMixinProps
Properties for CfnPublishingDestinationPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnPublishingDestinationMixinProps
Syntax (vb)
Public Interface ICfnPublishingDestinationMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.GuardDuty;
var cfnPublishingDestinationMixinProps = new CfnPublishingDestinationMixinProps {
DestinationProperties = new CFNDestinationPropertiesProperty {
DestinationArn = "destinationArn",
KmsKeyArn = "kmsKeyArn"
},
DestinationType = "destinationType",
DetectorId = "detectorId",
Tags = new [] { new TagItemProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| DestinationProperties | 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 | The type of publishing destination. |
| DetectorId | The ID of the GuardDuty detector where the publishing destination exists. |
| Tags | Describes a tag. |
Properties
DestinationProperties
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.
object? DestinationProperties { get; }
Property Value
Remarks
DestinationType
The type of publishing destination.
string? DestinationType { get; }
Property Value
Remarks
GuardDuty supports Amazon S3 buckets as a publishing destination.
DetectorId
The ID of the GuardDuty detector where the publishing destination exists.
string? DetectorId { get; }
Property Value
Remarks
Tags
Describes a tag.
CfnPublishingDestinationPropsMixin.ITagItemProperty[]? Tags { get; }