interface S3ConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.InternetMonitor.CfnMonitor.S3ConfigProperty |
Java | software.amazon.awscdk.services.internetmonitor.CfnMonitor.S3ConfigProperty |
Python | aws_cdk.aws_internetmonitor.CfnMonitor.S3ConfigProperty |
TypeScript | @aws-cdk/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 * as internetmonitor from '@aws-cdk/aws-internetmonitor';
const s3ConfigProperty: internetmonitor.CfnMonitor.S3ConfigProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
logDeliveryStatus: 'logDeliveryStatus',
};
Properties
Name | Type | Description |
---|---|---|
bucket | string | The Amazon S3 bucket name for internet measurements publishing. |
bucket | string | An optional Amazon S3 bucket prefix for internet measurements publishing. |
log | string | The 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.