업데이트 될 Metric Export 객체입니다.
구문
구문은 다음과 같습니다.
class PutMetricExport {
private String name;
private String description;
private String interval;
private String aggregation;
private Set<MonitorGroupItem> targets;
private Set<String> metrics;
private MetricExportDestination destination;
}
필드
필드에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
name |
String | Required | Metric Export 이름
|
description |
String | Optional | Metric Export 설명
|
interval |
String | Required | Export 대상 메트릭의 수집 주기
|
aggregation |
String | Required | Export 대상 메트릭의 집계 함수
|
targets |
Set<MonitorGroupItem)> | Optional | Export 대상 리소스
|
metrics |
Set<String> | Optional | Export 대상 메트릭
|
destination |
MetricExportDestination | Required | Export 한 결과물의 저장 위치
|