DeleteAttachment 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 = "networkmanager"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.setAuthAws(authAws)
// URL: https://networkmanager.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.connect("networkmanager.us-west-2.amazonaws.com", port: 443, tls: true, autoReconnect: true)
if success != true {
print("ConnectFailReason: \(rest.connectFailReason.intValue)")
print("\(rest.lastErrorText!)")
return
}
rest.addHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.addHeader("X-Amz-Target", value: "DeleteAttachment")
let sbResponseBody = CkoStringBuilder()!
success = rest.fullRequestNoBodySb("DELETE", uriPath: "/attachments/{attachmentId}", sb: 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 Key: String?
var Value: String?
var AttachmentId: String? = jResp.string(of: "Attachment.AttachmentId")
var AttachmentPolicyRuleNumber: Int = jResp.int(of: "Attachment.AttachmentPolicyRuleNumber").intValue
var AttachmentType: String? = jResp.string(of: "Attachment.AttachmentType")
var CoreNetworkArn: String? = jResp.string(of: "Attachment.CoreNetworkArn")
var CoreNetworkId: String? = jResp.string(of: "Attachment.CoreNetworkId")
var CreatedAt: Int = jResp.int(of: "Attachment.CreatedAt").intValue
var EdgeLocation: String? = jResp.string(of: "Attachment.EdgeLocation")
var OwnerAccountId: String? = jResp.string(of: "Attachment.OwnerAccountId")
var ProposedSegmentChangeAttachmentPolicyRuleNumber: Int = jResp.int(of: "Attachment.ProposedSegmentChange.AttachmentPolicyRuleNumber").intValue
var SegmentName: String? = jResp.string(of: "Attachment.ProposedSegmentChange.SegmentName")
var ResourceArn: String? = jResp.string(of: "Attachment.ResourceArn")
var AttachmentSegmentName: String? = jResp.string(of: "Attachment.SegmentName")
var State: String? = jResp.string(of: "Attachment.State")
var UpdatedAt: Int = jResp.int(of: "Attachment.UpdatedAt").intValue
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "Attachment.ProposedSegmentChange.Tags").intValue
while i < count_i {
jResp.i = i
Key = jResp.string(of: "Attachment.ProposedSegmentChange.Tags[i].Key")
Value = jResp.string(of: "Attachment.ProposedSegmentChange.Tags[i].Value")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "Attachment.Tags").intValue
while i < count_i {
jResp.i = i
Key = jResp.string(of: "Attachment.Tags[i].Key")
Value = jResp.string(of: "Attachment.Tags[i].Value")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "Attachment": {
// "AttachmentId": "string",
// "AttachmentPolicyRuleNumber": number,
// "AttachmentType": "string",
// "CoreNetworkArn": "string",
// "CoreNetworkId": "string",
// "CreatedAt": number,
// "EdgeLocation": "string",
// "OwnerAccountId": "string",
// "ProposedSegmentChange": {
// "AttachmentPolicyRuleNumber": number,
// "SegmentName": "string",
// "Tags": [
// {
// "Key": "string",
// "Value": "string"
// }
// ]
// },
// "ResourceArn": "string",
// "SegmentName": "string",
// "State": "string",
// "Tags": [
// {
// "Key": "string",
// "Value": "string"
// }
// ],
// "UpdatedAt": number
// }
// }
}