Interface S3Location.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Location.Builder,S3Location>,SdkBuilder<S3Location.Builder,S3Location>,SdkPojo
- Enclosing class:
- S3Location
public static interface S3Location.Builder extends SdkPojo, CopyableBuilder<S3Location.Builder,S3Location>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Location.Builderbucket(String bucket)An Amazon S3 bucket identifier.S3Location.Builderkey(String key)The name of the zip file that contains the build files or script files.S3Location.BuilderobjectVersion(String objectVersion)The version of the file, if object versioning is turned on for the bucket.S3Location.BuilderroleArn(String roleArn)The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bucket
S3Location.Builder bucket(String bucket)
An Amazon S3 bucket identifier. Thename of the S3 bucket.
Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).
- Parameters:
bucket- An Amazon S3 bucket identifier. Thename of the S3 bucket.Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
S3Location.Builder key(String key)
The name of the zip file that contains the build files or script files.
- Parameters:
key- The name of the zip file that contains the build files or script files.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roleArn
S3Location.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.
- Parameters:
roleArn- The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectVersion
S3Location.Builder objectVersion(String objectVersion)
The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from an S3 bucket that you own. Use this parameter to specify a specific version of the file. If not set, the latest version of the file is retrieved.
- Parameters:
objectVersion- The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from an S3 bucket that you own. Use this parameter to specify a specific version of the file. If not set, the latest version of the file is retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-