aws-cdk-lib.aws_internetmonitor.CfnMonitor.S3ConfigProperty

interface S3ConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.InternetMonitor.CfnMonitor.S3ConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsinternetmonitor#CfnMonitor_S3ConfigProperty
Javasoftware.amazon.awscdk.services.internetmonitor.CfnMonitor.S3ConfigProperty
Pythonaws_cdk.aws_internetmonitor.CfnMonitor.S3ConfigProperty
TypeScript aws-cdk-lib » aws_internetmonitor » CfnMonitor » S3ConfigProperty

The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.

The configuration includes the bucket name and (optionally) bucket prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ENABLED if you choose to deliver internet measurements to S3 logs, and DISABLED otherwise.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_internetmonitor as internetmonitor } from 'aws-cdk-lib';
const s3ConfigProperty: internetmonitor.CfnMonitor.S3ConfigProperty = {
  bucketName: 'bucketName',
  bucketPrefix: 'bucketPrefix',
  logDeliveryStatus: 'logDeliveryStatus',
};

Properties

NameTypeDescription
bucketName?stringThe Amazon S3 bucket name for internet measurements publishing.
bucketPrefix?stringAn optional Amazon S3 bucket prefix for internet measurements publishing.
logDeliveryStatus?stringThe status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.

bucketName?

Type: string (optional)

The Amazon S3 bucket name for internet measurements publishing.


bucketPrefix?

Type: string (optional)

An optional Amazon S3 bucket prefix for internet measurements publishing.


logDeliveryStatus?

Type: string (optional)

The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.

The delivery status is ENABLED if you choose to deliver internet measurements to an S3 bucket, and DISABLED otherwise.