String returns the value as a string. If the value was not stored as a string, a zero-value / empty string will the returned. This method will not coerce numeric of byte values.
()
| 80 | // String returns the value as a string. If the value was not stored as a string, a zero-value / empty string |
| 81 | // will the returned. This method will not coerce numeric of byte values. |
| 82 | func (rv ReturnValue) String() string { |
| 83 | return aws.StringValue(rv.av.S) |
| 84 | } |
| 85 | |
| 86 | // Int returns the value as int64. Will be zero-valued if the value is not actually numeric. The value was originally |
| 87 | // a float, it will be truncated. |