@@ -118,9 +118,9 @@ def create(self, credentials, friendly_name=values.unset,
118118 """
119119 Create a new AwsInstance
120120
121- :param unicode credentials: The credentials
122- :param unicode friendly_name: The friendly_name
123- :param unicode account_sid: The account_sid
121+ :param unicode credentials: String containing AWS access credentials with format <AWS_ACCESS_KEY_ID>:<AWS_SECRET_ACCESS_KEY>
122+ :param unicode friendly_name: A human readable description of this resource
123+ :param unicode account_sid: The Subaccount this Credential should be associated with.
124124
125125 :returns: Newly created AwsInstance
126126 :rtype: twilio.rest.accounts.v1.credential.aws.AwsInstance
@@ -143,7 +143,7 @@ def get(self, sid):
143143 """
144144 Constructs a AwsContext
145145
146- :param sid: The sid
146+ :param sid: Fetch by unique Credential Sid
147147
148148 :returns: twilio.rest.accounts.v1.credential.aws.AwsContext
149149 :rtype: twilio.rest.accounts.v1.credential.aws.AwsContext
@@ -154,7 +154,7 @@ def __call__(self, sid):
154154 """
155155 Constructs a AwsContext
156156
157- :param sid: The sid
157+ :param sid: Fetch by unique Credential Sid
158158
159159 :returns: twilio.rest.accounts.v1.credential.aws.AwsContext
160160 :rtype: twilio.rest.accounts.v1.credential.aws.AwsContext
@@ -218,7 +218,7 @@ def __init__(self, version, sid):
218218 Initialize the AwsContext
219219
220220 :param Version version: Version that contains the resource
221- :param sid: The sid
221+ :param sid: Fetch by unique Credential Sid
222222
223223 :returns: twilio.rest.accounts.v1.credential.aws.AwsContext
224224 :rtype: twilio.rest.accounts.v1.credential.aws.AwsContext
@@ -250,7 +250,7 @@ def update(self, friendly_name=values.unset):
250250 """
251251 Update the AwsInstance
252252
253- :param unicode friendly_name: The friendly_name
253+ :param unicode friendly_name: A human readable description of this resource
254254
255255 :returns: Updated AwsInstance
256256 :rtype: twilio.rest.accounts.v1.credential.aws.AwsInstance
@@ -327,47 +327,47 @@ def _proxy(self):
327327 @property
328328 def sid (self ):
329329 """
330- :returns: The sid
330+ :returns: A 34 character string that uniquely identifies this resource.
331331 :rtype: unicode
332332 """
333333 return self ._properties ['sid' ]
334334
335335 @property
336336 def account_sid (self ):
337337 """
338- :returns: The account_sid
338+ :returns: AccountSid the Credential resource belongs to
339339 :rtype: unicode
340340 """
341341 return self ._properties ['account_sid' ]
342342
343343 @property
344344 def friendly_name (self ):
345345 """
346- :returns: The friendly_name
346+ :returns: A human readable description of this resource
347347 :rtype: unicode
348348 """
349349 return self ._properties ['friendly_name' ]
350350
351351 @property
352352 def date_created (self ):
353353 """
354- :returns: The date_created
354+ :returns: The date this resource was created
355355 :rtype: datetime
356356 """
357357 return self ._properties ['date_created' ]
358358
359359 @property
360360 def date_updated (self ):
361361 """
362- :returns: The date_updated
362+ :returns: The date this resource was last updated
363363 :rtype: datetime
364364 """
365365 return self ._properties ['date_updated' ]
366366
367367 @property
368368 def url (self ):
369369 """
370- :returns: The url
370+ :returns: The URI for this resource, relative to `https://accounts.twilio.com`
371371 :rtype: unicode
372372 """
373373 return self ._properties ['url' ]
@@ -385,7 +385,7 @@ def update(self, friendly_name=values.unset):
385385 """
386386 Update the AwsInstance
387387
388- :param unicode friendly_name: The friendly_name
388+ :param unicode friendly_name: A human readable description of this resource
389389
390390 :returns: Updated AwsInstance
391391 :rtype: twilio.rest.accounts.v1.credential.aws.AwsInstance
0 commit comments