Class MultiplayBuildsS3CreateUpdate
Amazon S3 bucket upload based build create or update request.
Inherited Members
Namespace: Unity.Services.Apis.Admin.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "multiplay.builds.s3CreateUpdate")]
[Preserve]
public class MultiplayBuildsS3CreateUpdate
Constructors
MultiplayBuildsS3CreateUpdate(string, string, string)
Initializes a new instance of the Multiplay
Declaration
[Preserve]
public MultiplayBuildsS3CreateUpdate(string accessKey = null, string s3URI = null, string secretKey = null)
Parameters
Type | Name | Description |
---|---|---|
string | accessKey | The Amazon Web Services (AWS) access key, first of a pair of credentials needed to authenticate with AWS services. (required). |
string | s3URI | The S3 URI used to identify a directory or file(s) within a given Amazon S3 bucket. Starts with "s3://". (required). |
string | secretKey | The Amazon Web Services (AWS) secret key, second of a pair of credentials needed to authenticate with AWS services. (required). |
Properties
AccessKey
The Amazon Web Services (AWS) access key, first of a pair of credentials needed to authenticate with AWS services.
Declaration
[DataMember(Name = "accessKey", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string AccessKey { get; set; }
Property Value
Type | Description |
---|---|
string | The Amazon Web Services (AWS) access key, first of a pair of credentials needed to authenticate with AWS services. |
S3URI
The S3 URI used to identify a directory or file(s) within a given Amazon S3 bucket. Starts with "s3://".
Declaration
[DataMember(Name = "s3URI", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string S3URI { get; set; }
Property Value
Type | Description |
---|---|
string | The S3 URI used to identify a directory or file(s) within a given Amazon S3 bucket. Starts with "s3://". |
SecretKey
The Amazon Web Services (AWS) secret key, second of a pair of credentials needed to authenticate with AWS services.
Declaration
[DataMember(Name = "secretKey", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string SecretKey { get; set; }
Property Value
Type | Description |
---|---|
string | The Amazon Web Services (AWS) secret key, second of a pair of credentials needed to authenticate with AWS services. |