StartImageBuilder Swift3 Example
func chilkatTest() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let rest = CkoRest()!
var success: Bool
let authAws = CkoAuthAws()!
authAws.accessKey = "AWS_ACCESS_KEY"
authAws.secretKey = "AWS_SECRET_KEY"
// Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
authAws.region = "us-west-2"
authAws.serviceName = "appstream"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://appstream2.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("appstream2.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
if success != true {
print("ConnectFailReason: \(rest.connectFailReason.intValue)")
print("\(rest.lastErrorText!)")
return
}
// The following code creates the JSON request body.
// The JSON created by this code is shown below.
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
let json = CkoJsonObject()!
json.update("AppstreamAgentVersion", value: "string")
json.update("Name", value: "string")
// The JSON request body created by the above code:
// {
// "AppstreamAgentVersion": "string",
// "Name": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "PhotonAdminProxyService.StartImageBuilder")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestSb("POST", uriPath: "/", requestBody: sbRequestBody, responseBody: sbResponseBody)
if success != true {
print("\(rest.lastErrorText!)")
return
}
var respStatusCode: Int = rest.responseStatusCode.intValue
print("response status code = \(respStatusCode)")
if respStatusCode != 200 {
print("Response Header:")
print("\(rest.responseHeader!)")
print("Response Body:")
print("\(sbResponseBody.getAsString()!)")
return
}
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
// Use this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
var EndpointType: String?
var VpceId: String?
var ErrorCode: String?
var ErrorMessage: String?
var ErrorTimestamp: Int
var strVal: String?
var AppstreamAgentVersion: String? = jResp.string(of: "ImageBuilder.AppstreamAgentVersion")
var Arn: String? = jResp.string(of: "ImageBuilder.Arn")
var CreatedTime: Int = jResp.int(of: "ImageBuilder.CreatedTime").intValue
var Description: String? = jResp.string(of: "ImageBuilder.Description")
var DisplayName: String? = jResp.string(of: "ImageBuilder.DisplayName")
var DirectoryName: String? = jResp.string(of: "ImageBuilder.DomainJoinInfo.DirectoryName")
var OrganizationalUnitDistinguishedName: String? = jResp.string(of: "ImageBuilder.DomainJoinInfo.OrganizationalUnitDistinguishedName")
var EnableDefaultInternetAccess: Int = jResp.int(of: "ImageBuilder.EnableDefaultInternetAccess").intValue
var IamRoleArn: String? = jResp.string(of: "ImageBuilder.IamRoleArn")
var ImageArn: String? = jResp.string(of: "ImageBuilder.ImageArn")
var InstanceType: String? = jResp.string(of: "ImageBuilder.InstanceType")
var Name: String? = jResp.string(of: "ImageBuilder.Name")
var EniId: String? = jResp.string(of: "ImageBuilder.NetworkAccessConfiguration.EniId")
var EniPrivateIpAddress: String? = jResp.string(of: "ImageBuilder.NetworkAccessConfiguration.EniPrivateIpAddress")
var Platform: String? = jResp.string(of: "ImageBuilder.Platform")
var State: String? = jResp.string(of: "ImageBuilder.State")
var Code: String? = jResp.string(of: "ImageBuilder.StateChangeReason.Code")
var Message: String? = jResp.string(of: "ImageBuilder.StateChangeReason.Message")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "ImageBuilder.AccessEndpoints").intValue
while i < count_i {
jResp.i = i
EndpointType = jResp.string(of: "ImageBuilder.AccessEndpoints[i].EndpointType")
VpceId = jResp.string(of: "ImageBuilder.AccessEndpoints[i].VpceId")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ImageBuilder.ImageBuilderErrors").intValue
while i < count_i {
jResp.i = i
ErrorCode = jResp.string(of: "ImageBuilder.ImageBuilderErrors[i].ErrorCode")
ErrorMessage = jResp.string(of: "ImageBuilder.ImageBuilderErrors[i].ErrorMessage")
ErrorTimestamp = jResp.int(of: "ImageBuilder.ImageBuilderErrors[i].ErrorTimestamp").intValue
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ImageBuilder.VpcConfig.SecurityGroupIds").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "ImageBuilder.VpcConfig.SecurityGroupIds[i]")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "ImageBuilder.VpcConfig.SubnetIds").intValue
while i < count_i {
jResp.i = i
strVal = jResp.string(of: "ImageBuilder.VpcConfig.SubnetIds[i]")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "ImageBuilder": {
// "AccessEndpoints": [
// {
// "EndpointType": "string",
// "VpceId": "string"
// }
// ],
// "AppstreamAgentVersion": "string",
// "Arn": "string",
// "CreatedTime": number,
// "Description": "string",
// "DisplayName": "string",
// "DomainJoinInfo": {
// "DirectoryName": "string",
// "OrganizationalUnitDistinguishedName": "string"
// },
// "EnableDefaultInternetAccess": boolean,
// "IamRoleArn": "string",
// "ImageArn": "string",
// "ImageBuilderErrors": [
// {
// "ErrorCode": "string",
// "ErrorMessage": "string",
// "ErrorTimestamp": number
// }
// ],
// "InstanceType": "string",
// "Name": "string",
// "NetworkAccessConfiguration": {
// "EniId": "string",
// "EniPrivateIpAddress": "string"
// },
// "Platform": "string",
// "State": "string",
// "StateChangeReason": {
// "Code": "string",
// "Message": "string"
// },
// "VpcConfig": {
// "SecurityGroupIds": [
// "string"
// ],
// "SubnetIds": [
// "string"
// ]
// }
// }
// }
}