interface ScraperLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APS.CfnScraper.ScraperLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnScraper_ScraperLoggingConfigurationProperty |
Java | software.amazon.awscdk.services.aps.CfnScraper.ScraperLoggingConfigurationProperty |
Python | aws_cdk.aws_aps.CfnScraper.ScraperLoggingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_aps » CfnScraper » ScraperLoggingConfigurationProperty |
Configuration for scraper logging.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_aps as aps } from 'aws-cdk-lib';
const scraperLoggingConfigurationProperty: aps.CfnScraper.ScraperLoggingConfigurationProperty = {
loggingDestination: {
cloudWatchLogs: {
logGroupArn: 'logGroupArn',
},
},
scraperComponents: [{
type: 'type',
// the properties below are optional
config: {
options: {
optionsKey: 'options',
},
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| logging | IResolvable | Scraper | Destination for scraper logging. |
| scraper | IResolvable | (IResolvable | Scraper)[] |
loggingDestination
Type:
IResolvable | Scraper
Destination for scraper logging.
scraperComponents
Type:
IResolvable | (IResolvable | Scraper)[]

.NET
Go
Java
Python
TypeScript