toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AwsIamAccessKeyStatus.active:
      return 'Active';
    case AwsIamAccessKeyStatus.inactive:
      return 'Inactive';
  }
}