interface MetricsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Express.CfnDirectoryBucketPropsMixin.MetricsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3express#CfnDirectoryBucketPropsMixin_MetricsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3express.CfnDirectoryBucketPropsMixin.MetricsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3express.CfnDirectoryBucketPropsMixin.MetricsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3express » CfnDirectoryBucketPropsMixin » 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/cfn-property-mixins';
const metricsConfigurationProperty: s3express.CfnDirectoryBucketPropsMixin.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