UpdateReplicationConfigurationTemplate 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("arn", value: "string")
json.UpdateInt("associateDefaultSecurityGroup", value: 123)
json.UpdateInt("bandwidthThrottling", value: 123)
json.UpdateInt("createPublicIP", value: 123)
json.UpdateString("dataPlaneRouting", value: "string")
json.UpdateString("defaultLargeStagingDiskType", value: "string")
json.UpdateString("ebsEncryption", value: "string")
json.UpdateString("ebsEncryptionKeyArn", value: "string")
json.UpdateString("replicationConfigurationTemplateID", value: "string")
json.UpdateString("replicationServerInstanceType", value: "string")
json.UpdateString("replicationServersSecurityGroupsIDs[0]", value: "string")
json.UpdateString("stagingAreaSubnetId", value: "string")
json.UpdateString("stagingAreaTags.string", value: "string")
json.UpdateInt("useDedicatedReplicationServer", value: 123)
// The JSON request body created by the above code:
// {
// "arn": "string",
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "replicationConfigurationTemplateID": "string",
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }
rest.AddHeader("Content-Type", value: "application/x-amz-json-1.1")
rest.AddHeader("X-Amz-Target", value: "UpdateReplicationConfigurationTemplate")
let sbRequestBody = CkoStringBuilder()
json.EmitSb(sbRequestBody)
let sbResponseBody = CkoStringBuilder()
success = rest.FullRequestSb("POST", uriPath: "/UpdateReplicationConfigurationTemplate", 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 strVal: String?
var arn: String? = jResp.StringOf("arn")
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 replicationConfigurationTemplateID: String? = jResp.StringOf("replicationConfigurationTemplateID")
var replicationServerInstanceType: String? = jResp.StringOf("replicationServerInstanceType")
var stagingAreaSubnetId: String? = jResp.StringOf("stagingAreaSubnetId")
var v_String: String? = jResp.StringOf("stagingAreaTags.string")
var tagsString: String? = jResp.StringOf("tags.string")
var useDedicatedReplicationServer: Int = jResp.IntOf("useDedicatedReplicationServer").intValue
var i: Int = 0
var count_i: Int = 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:
// {
// "arn": "string",
// "associateDefaultSecurityGroup": boolean,
// "bandwidthThrottling": number,
// "createPublicIP": boolean,
// "dataPlaneRouting": "string",
// "defaultLargeStagingDiskType": "string",
// "ebsEncryption": "string",
// "ebsEncryptionKeyArn": "string",
// "replicationConfigurationTemplateID": "string",
// "replicationServerInstanceType": "string",
// "replicationServersSecurityGroupsIDs": [
// "string"
// ],
// "stagingAreaSubnetId": "string",
// "stagingAreaTags": {
// "string": "string"
// },
// "tags": {
// "string": "string"
// },
// "useDedicatedReplicationServer": boolean
// }
}