public static interface RequestUploadCredentialsResponse.Builder extends GameLiftResponse.Builder, CopyableBuilder<RequestUploadCredentialsResponse.Builder,RequestUploadCredentialsResponse>
Modifier and Type | Method and Description |
---|---|
default RequestUploadCredentialsResponse.Builder |
storageLocation(Consumer<S3Location.Builder> storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
|
RequestUploadCredentialsResponse.Builder |
storageLocation(S3Location storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
|
default RequestUploadCredentialsResponse.Builder |
uploadCredentials(Consumer<Credentials.Builder> uploadCredentials)
AWS credentials required when uploading a game build to the storage location.
|
RequestUploadCredentialsResponse.Builder |
uploadCredentials(Credentials uploadCredentials)
AWS credentials required when uploading a game build to the storage location.
|
build
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
RequestUploadCredentialsResponse.Builder uploadCredentials(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.default RequestUploadCredentialsResponse.Builder uploadCredentials(Consumer<Credentials.Builder> 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.
This is a convenience that creates an instance of theCredentials.Builder
avoiding the need to create
one manually via Credentials.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to uploadCredentials(Credentials)
.uploadCredentials
- a consumer that will call methods on Credentials.Builder
uploadCredentials(Credentials)
RequestUploadCredentialsResponse.Builder storageLocation(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.default RequestUploadCredentialsResponse.Builder storageLocation(Consumer<S3Location.Builder> storageLocation)
Amazon S3 path and key, identifying where the game build files are stored.
This is a convenience that creates an instance of theS3Location.Builder
avoiding the need to create
one manually via S3Location.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to storageLocation(S3Location)
.storageLocation
- a consumer that will call methods on S3Location.Builder
storageLocation(S3Location)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.