Interface ILogDestinationParameters
(experimental) Log destination configuration parameters.
Namespace: Amazon.CDK.AWS.Pipes.Alpha
Assembly: Amazon.CDK.AWS.Pipes.Alpha.dll
Syntax (csharp)
public interface ILogDestinationParameters
Syntax (vb)
Public Interface ILogDestinationParameters
Remarks
Stability: Experimental
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.Pipes.Alpha;
var logDestinationParameters = new LogDestinationParameters {
CloudwatchLogsLogDestination = new CloudwatchLogsLogDestinationProperty {
LogGroupArn = "logGroupArn"
},
FirehoseLogDestination = new FirehoseLogDestinationProperty {
DeliveryStreamArn = "deliveryStreamArn"
},
S3LogDestination = new S3LogDestinationProperty {
BucketName = "bucketName",
BucketOwner = "bucketOwner",
OutputFormat = "outputFormat",
Prefix = "prefix"
}
};
Synopsis
Properties
Cloudwatch |
(experimental) The logging configuration settings for the pipe. |
Firehose |
(experimental) The Amazon Kinesis Data Firehose logging configuration settings for the pipe. |
S3Log |
(experimental) The Amazon S3 logging configuration settings for the pipe. |
Properties
CloudwatchLogsLogDestination
(experimental) The logging configuration settings for the pipe.
virtual CfnPipe.ICloudwatchLogsLogDestinationProperty CloudwatchLogsLogDestination { get; }
Property Value
Cfn
Remarks
Default: - none
Stability: Experimental
FirehoseLogDestination
(experimental) The Amazon Kinesis Data Firehose logging configuration settings for the pipe.
virtual CfnPipe.IFirehoseLogDestinationProperty FirehoseLogDestination { get; }
Property Value
Cfn
Remarks
Default: - none
Stability: Experimental
S3LogDestination
(experimental) The Amazon S3 logging configuration settings for the pipe.
virtual CfnPipe.IS3LogDestinationProperty S3LogDestination { get; }
Property Value
Cfn
Remarks
Default: - none
Stability: Experimental