Class CfnScraper.ScraperLoggingDestinationProperty
The destination where scraper logs are sent.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.APS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnScraper.ScraperLoggingDestinationProperty : CfnScraper.IScraperLoggingDestinationProperty
Syntax (vb)
Public Class CfnScraper.ScraperLoggingDestinationProperty Implements CfnScraper.IScraperLoggingDestinationProperty
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.APS;
var scraperLoggingDestinationProperty = new ScraperLoggingDestinationProperty {
CloudWatchLogs = new CloudWatchLogDestinationProperty {
LogGroupArn = "logGroupArn"
}
};
Synopsis
Constructors
ScraperLoggingDestinationProperty() | The destination where scraper logs are sent. |
Properties
CloudWatchLogs | The CloudWatch Logs configuration for the scraper logging destination. |
Constructors
ScraperLoggingDestinationProperty()
The destination where scraper logs are sent.
public ScraperLoggingDestinationProperty()
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.APS;
var scraperLoggingDestinationProperty = new ScraperLoggingDestinationProperty {
CloudWatchLogs = new CloudWatchLogDestinationProperty {
LogGroupArn = "logGroupArn"
}
};
Properties
CloudWatchLogs
The CloudWatch Logs configuration for the scraper logging destination.
public object? CloudWatchLogs { get; set; }