@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.735Z") @Stability(value=Stable) public interface BucketMetrics extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3.*;
Object tagFilters;
BucketMetrics bucketMetrics = BucketMetrics.builder()
.id("id")
// the properties below are optional
.prefix("prefix")
.tagFilters(Map.of(
"tagFiltersKey", tagFilters))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BucketMetrics.Builder
A builder for
BucketMetrics |
static class |
BucketMetrics.Jsii$Proxy
An implementation for
BucketMetrics |
| Modifier and Type | Method and Description |
|---|---|
static BucketMetrics.Builder |
builder() |
String |
getId()
The ID used to identify the metrics configuration.
|
default String |
getPrefix()
The prefix that an object must have to be included in the metrics results.
|
default Map<String,Object> |
getTagFilters()
Specifies a list of tag filters to use as a metrics configuration filter.
|
@Stability(value=Stable) @NotNull String getId()
@Stability(value=Stable) @Nullable default String getPrefix()
@Stability(value=Stable) @Nullable default Map<String,Object> getTagFilters()
The metrics configuration includes only objects that meet the filter's criteria.
@Stability(value=Stable) static BucketMetrics.Builder builder()
BucketMetrics.Builder of BucketMetricsCopyright © 2022. All rights reserved.