GetReplicationConfiguration Swift 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 = "mgn"
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
rest.SetAuthAws(authAws)
// URL: https://mgn.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = rest.Connect("mgn.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.UpdateString("sourceServerID", value: "string")
// The JSON request body created by the above code:
// {
// "sourceServerID": "string"
// }
rest.AddHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.AddHeader("X-Amz-Target", value: "GetReplicationConfiguration")
let sbRequestBody = CkoStringBuilder()
json.EmitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()
success = rest.FullRequestSb("POST", uriPath: "/GetReplicationConfiguration", 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 deviceName: String?
var iops: Int
var isBootDisk: Int
var stagingDiskType: String?
var throughput: Int
var strVal: String?
var associateDefaultSecurityGroup: Int = jResp.IntOf("associateDefaultSecurityGroup").intValue
var bandwidthThrottling: Int = jResp.IntOf("bandwidthThrottling").intValue
var createPublicIP: Int = jResp.IntOf("createPublicIP").intValue
var dataPlaneRouting: String? = jResp.StringOf("dataPlaneRouting")
var defaultLargeStagingDiskType: String? = jResp.StringOf("defaultLargeStagingDiskType")
var ebsEncryption: String? = jResp.StringOf("ebsEncryption")
var ebsEncryptionKeyArn: String? = jResp.StringOf("ebsEncryptionKeyArn")
var name: String? = jResp.StringOf("name")
var replicationServerInstanceType: String? = jResp.StringOf("replicationServerInstanceType")
var sourceServerID: String? = jResp.StringOf("sourceServerID")
var stagingAreaSubnetId: String? = jResp.StringOf("stagingAreaSubnetId")
var v_String: String? = jResp.StringOf("stagingAreaTags.string")
var useDedicatedReplicationServer: Int = jResp.IntOf("useDedicatedReplicationServer").intValue
var i: Int = 0
var count_i: Int = jResp.SizeOfArray("replicatedDisks").intValue
while i < count_i {
jResp.I = i
deviceName = jResp.StringOf("replicatedDisks[i].deviceName")
iops = jResp.IntOf("replicatedDisks[i].iops").intValue
isBootDisk = jResp.IntOf("replicatedDisks[i].isBootDisk").intValue
stagingDiskType = jResp.StringOf("replicatedDisks[i].stagingDiskType")
throughput = jResp.IntOf("replicatedDisks[i].throughput").intValue
i = i + 1
}
i = 0
count_i = jResp.SizeOfArray("replicationServersSecurityGroupsIDs").intValue
while i < count_i {
jResp.I = i
strVal = jResp.StringOf("replicationServersSecurityGroupsIDs[i]")
i = i + 1
}
// A sample JSON response body parsed by the above code:
// {
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "name": "string",
// "replicatedDisks": [
// {
// "deviceName": "string",
// "iops": number,
// "isBootDisk": boolean,
// "stagingDiskType": "string",
// "throughput": number
// }
// ],
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "sourceServerID": "string",
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }
}