Guzzle\Service\Resource\Model Objectの値の取り方

殴り書きですまねえ。個人的な備忘録です。
Guzzle\Service\Resource\Model Objectで返ってくるときにどうやってとるのかを悩んだ。
結論
$response->get(key)です。

$response = $this->getInstance()->createPlatformEndpoint($options);
$data = $response->get(‘EndpointArn’);