Class CfnPublishingDestination.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.
Inherited Members
Namespace: Amazon.CDK.AWS.GuardDuty
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPublishingDestination.CFNDestinationPropertiesProperty : CfnPublishingDestination.ICFNDestinationPropertiesProperty
Syntax (vb)
Public Class CfnPublishingDestination.CFNDestinationPropertiesProperty Implements CfnPublishingDestination.ICFNDestinationPropertiesProperty
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.AWS.GuardDuty;
var cFNDestinationPropertiesProperty = new CFNDestinationPropertiesProperty {
DestinationArn = "destinationArn",
KmsKeyArn = "kmsKeyArn"
};
Synopsis
Constructors
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. |
Properties
DestinationArn | The ARN of the resource where the findings are published. |
KmsKeyArn | The ARN of the KMS key to use for encryption. |
Constructors
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.
public CFNDestinationPropertiesProperty()
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.AWS.GuardDuty;
var cFNDestinationPropertiesProperty = new CFNDestinationPropertiesProperty {
DestinationArn = "destinationArn",
KmsKeyArn = "kmsKeyArn"
};
Properties
DestinationArn
The ARN of the resource where the findings are published.
public string? DestinationArn { get; set; }
Property Value
Remarks
KmsKeyArn
The ARN of the KMS key to use for encryption.
public string? KmsKeyArn { get; set; }