Values.GetRelayResponseSourceFetch the relay resource and it's attributes.
type nonrec t = {relayId : RelayId.t option;The unique relay identifier.
*)relayArn : RelayArn.t option;The Amazon Resource Name (ARN) of the relay.
*)relayName : RelayName.t option;The unique name of the relay.
*)serverName : RelayServerName.t option;The destination relay server address.
*)serverPort : RelayServerPort.t option;The destination relay server port.
*)authentication : RelayAuthentication.t option;The authentication attribute—contains the secret ARN where the customer relay server credentials are stored.
*)createdTimestamp : Timestamp.t option;The timestamp of when the relay was created.
*)lastModifiedTimestamp : Timestamp.t option;The timestamp of when relay was last updated.
*)}type nonrec error = [ | `ResourceNotFoundException of ResourceNotFoundException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `ResourceNotFoundException of ResourceNotFoundException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `ResourceNotFoundException of ResourceNotFoundException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Integer of RelayServerPort.t
| `String of RelayId.t
| `Structure of
(string * [> `String of SecretArn.t | `Structure of 'a list ]) list
| `Timestamp of Timestamp.t ])
list ]