interface MetricsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Express.CfnDirectoryBucket.MetricsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3express#CfnDirectoryBucket_MetricsConfigurationProperty |
Java | software.amazon.awscdk.services.s3express.CfnDirectoryBucket.MetricsConfigurationProperty |
Python | aws_cdk.aws_s3express.CfnDirectoryBucket.MetricsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_s3express » CfnDirectoryBucket » MetricsConfigurationProperty |
Specifies a metrics configuration for the CloudWatch request metrics from an Amazon S3 Express bucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3express as s3express } from 'aws-cdk-lib';
const metricsConfigurationProperty: s3express.CfnDirectoryBucket.MetricsConfigurationProperty = {
accessPointArn: 'accessPointArn',
id: 'id',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The access point ARN used when evaluating a metrics filter. |
| id? | string | The ID used to identify the metrics configuration. |
| prefix? | string | The prefix used when evaluating a metrics filter. |
accessPointArn?
Type:
string
(optional)
The access point ARN used when evaluating a metrics filter.
id?
Type:
string
(optional)
The ID used to identify the metrics configuration.
prefix?
Type:
string
(optional)
The prefix used when evaluating a metrics filter.

.NET
Go
Java
Python
TypeScript