interface ScraperLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnScraperPropsMixin.ScraperLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnScraperPropsMixin_ScraperLoggingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnScraperPropsMixin.ScraperLoggingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnScraperPropsMixin.ScraperLoggingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnScraperPropsMixin » 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 { mixins as aps_mixins } from '@aws-cdk/mixins-preview/aws-aps';
const scraperLoggingConfigurationProperty: aps_mixins.CfnScraperPropsMixin.ScraperLoggingConfigurationProperty = {
loggingDestination: {
cloudWatchLogs: {
logGroupArn: 'logGroupArn',
},
},
scraperComponents: [{
config: {
options: {
optionsKey: 'options',
},
},
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| logging | IResolvable | Scraper | Destination for scraper logging. |
| scraper | IResolvable | (IResolvable | Scraper)[] |
loggingDestination?
Type:
IResolvable | Scraper
(optional)
Destination for scraper logging.
scraperComponents?
Type:
IResolvable | (IResolvable | Scraper)[]
(optional)

.NET
Go
Java
Python
TypeScript