3 declare(strict_types=1);
69 if (is_null($this->type)) {
71 $data = $this->
raw(self::FIELD_TYPE);
75 $this->type = (string) $data;
89 if (is_null($this->arn)) {
91 $data = $this->
raw(self::FIELD_ARN);
95 $this->arn = (string) $data;
109 if (is_null($this->accessKey)) {
111 $data = $this->
raw(self::FIELD_ACCESS_KEY);
112 if (is_null($data)) {
115 $this->accessKey = (string) $data;
129 if (is_null($this->accessSecret)) {
131 $data = $this->
raw(self::FIELD_ACCESS_SECRET);
132 if (is_null($data)) {
135 $this->accessSecret = (string) $data;