DescribeImageBuilders 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.updateInt("MaxResults", value: 123)
json.update("Names[0]", value: "string")
json.update("NextToken", value: "string")
// The JSON request body created by the above code:
// {
// "MaxResults": number,
// "Names": [
// "string"
// ],
// "NextToken": "string"
// }
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "PhotonAdminProxyService.DescribeImageBuilders")
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 AppstreamAgentVersion: String?
var Arn: String?
var CreatedTime: Int
var Description: String?
var DisplayName: String?
var DirectoryName: String?
var OrganizationalUnitDistinguishedName: String?
var EnableDefaultInternetAccess: Int
var IamRoleArn: String?
var ImageArn: String?
var InstanceType: String?
var Name: String?
var EniId: String?
var EniPrivateIpAddress: String?
var Platform: String?
var State: String?
var Code: String?
var Message: String?
var j: Int
var count_j: Int
var EndpointType: String?
var VpceId: String?
var ErrorCode: String?
var ErrorMessage: String?
var ErrorTimestamp: Int
var strVal: String?
var NextToken: String? = jResp.string(of: "NextToken")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "ImageBuilders").intValue
while i < count_i {
jResp.i = i
AppstreamAgentVersion = jResp.string(of: "ImageBuilders[i].AppstreamAgentVersion")
Arn = jResp.string(of: "ImageBuilders[i].Arn")
CreatedTime = jResp.int(of: "ImageBuilders[i].CreatedTime").intValue
Description = jResp.string(of: "ImageBuilders[i].Description")
DisplayName = jResp.string(of: "ImageBuilders[i].DisplayName")
DirectoryName = jResp.string(of: "ImageBuilders[i].DomainJoinInfo.DirectoryName")
OrganizationalUnitDistinguishedName = jResp.string(of: "ImageBuilders[i].DomainJoinInfo.OrganizationalUnitDistinguishedName")
EnableDefaultInternetAccess = jResp.int(of: "ImageBuilders[i].EnableDefaultInternetAccess").intValue
IamRoleArn = jResp.string(of: "ImageBuilders[i].IamRoleArn")
ImageArn = jResp.string(of: "ImageBuilders[i].ImageArn")
InstanceType = jResp.string(of: "ImageBuilders[i].InstanceType")
Name = jResp.string(of: "ImageBuilders[i].Name")
EniId = jResp.string(of: "ImageBuilders[i].NetworkAccessConfiguration.EniId")
EniPrivateIpAddress = jResp.string(of: "ImageBuilders[i].NetworkAccessConfiguration.EniPrivateIpAddress")
Platform = jResp.string(of: "ImageBuilders[i].Platform")
State = jResp.string(of: "ImageBuilders[i].State")
Code = jResp.string(of: "ImageBuilders[i].StateChangeReason.Code")
Message = jResp.string(of: "ImageBuilders[i].StateChangeReason.Message")
j = 0
count_j = jResp.size(ofArray: "ImageBuilders[i].AccessEndpoints").intValue
while j < count_j {
jResp.j = j
EndpointType = jResp.string(of: "ImageBuilders[i].AccessEndpoints[j].EndpointType")
VpceId = jResp.string(of: "ImageBuilders[i].AccessEndpoints[j].VpceId")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "ImageBuilders[i].ImageBuilderErrors").intValue
while j < count_j {
jResp.j = j
ErrorCode = jResp.string(of: "ImageBuilders[i].ImageBuilderErrors[j].ErrorCode")
ErrorMessage = jResp.string(of: "ImageBuilders[i].ImageBuilderErrors[j].ErrorMessage")
ErrorTimestamp = jResp.int(of: "ImageBuilders[i].ImageBuilderErrors[j].ErrorTimestamp").intValue
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "ImageBuilders[i].VpcConfig.SecurityGroupIds").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "ImageBuilders[i].VpcConfig.SecurityGroupIds[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "ImageBuilders[i].VpcConfig.SubnetIds").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "ImageBuilders[i].VpcConfig.SubnetIds[j]")
j = j + 1
}
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "ImageBuilders": [
// {
// "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"
// ]
// }
// }
// ],
// "NextToken": "string"
// }
}