- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
408 B
Java
20 lines
408 B
Java
package com.amazonaws.util;
|
|
|
|
import com.amazonaws.metrics.MetricType;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes.dex */
|
|
public enum AWSServiceMetrics implements MetricType {
|
|
HttpClientGetConnectionTime("HttpClient");
|
|
|
|
private final String serviceName;
|
|
|
|
public String getServiceName() {
|
|
return this.serviceName;
|
|
}
|
|
|
|
AWSServiceMetrics(String str) {
|
|
this.serviceName = str;
|
|
}
|
|
}
|