public class RequestUploadCredentialsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the returned data in response to a request action.
Modifier and Type | Field and Description |
---|---|
private S3Location |
storageLocation
Amazon S3 path and key, identifying where the game build files are
stored.
|
private Credentials |
uploadCredentials
AWS credentials required when uploading a game build to the storage
location.
|
Constructor and Description |
---|
RequestUploadCredentialsResult() |
Modifier and Type | Method and Description |
---|---|
RequestUploadCredentialsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
S3Location |
getStorageLocation()
Amazon S3 path and key, identifying where the game build files are
stored.
|
Credentials |
getUploadCredentials()
AWS credentials required when uploading a game build to the storage
location.
|
int |
hashCode() |
void |
setStorageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are
stored.
|
void |
setUploadCredentials(Credentials uploadCredentials)
AWS credentials required when uploading a game build to the storage
location.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
RequestUploadCredentialsResult |
withStorageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are
stored.
|
RequestUploadCredentialsResult |
withUploadCredentials(Credentials uploadCredentials)
AWS credentials required when uploading a game build to the storage
location.
|
private Credentials uploadCredentials
AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.
private S3Location storageLocation
Amazon S3 path and key, identifying where the game build files are stored.
public void setUploadCredentials(Credentials uploadCredentials)
AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.
uploadCredentials
- AWS credentials required when uploading a game build to the
storage location. These credentials have a limited lifespan and
are valid only for the build they were issued for.public Credentials getUploadCredentials()
AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.
public RequestUploadCredentialsResult withUploadCredentials(Credentials uploadCredentials)
AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.
uploadCredentials
- AWS credentials required when uploading a game build to the
storage location. These credentials have a limited lifespan and
are valid only for the build they were issued for.public void setStorageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
storageLocation
- Amazon S3 path and key, identifying where the game build files are
stored.public S3Location getStorageLocation()
Amazon S3 path and key, identifying where the game build files are stored.
public RequestUploadCredentialsResult withStorageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
storageLocation
- Amazon S3 path and key, identifying where the game build files are
stored.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public RequestUploadCredentialsResult clone()
clone
in class java.lang.Object