Class RequestUploadCredentialsResult
- java.lang.Object
-
- com.amazonaws.services.gamelift.model.RequestUploadCredentialsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class RequestUploadCredentialsResult extends Object implements Serializable, Cloneable
Represents the returned data in response to a request action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestUploadCredentialsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RequestUploadCredentialsResult
clone()
boolean
equals(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.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.
-
-
-
Method Detail
-
setUploadCredentials
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.
- Parameters:
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.
-
getUploadCredentials
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.
- Returns:
- 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.
-
withUploadCredentials
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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStorageLocation
public void setStorageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
- Parameters:
storageLocation
- Amazon S3 path and key, identifying where the game build files are stored.
-
getStorageLocation
public S3Location getStorageLocation()
Amazon S3 path and key, identifying where the game build files are stored.
- Returns:
- Amazon S3 path and key, identifying where the game build files are stored.
-
withStorageLocation
public RequestUploadCredentialsResult withStorageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
- Parameters:
storageLocation
- Amazon S3 path and key, identifying where the game build files are stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public RequestUploadCredentialsResult clone()
-
-