Chilkat Online Tools

CreateMediaCapturePipeline Swift Example

Amazon Chime

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 = "chime"
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws)

    // URL: https://chime.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("chime.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("ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Audio.MuxType", value: "string")
    json.UpdateString("ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Content.MuxType", value: "string")
    json.UpdateString("ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Content.State", value: "string")
    json.UpdateString("ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Video.MuxType", value: "string")
    json.UpdateString("ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Video.State", value: "string")
    json.UpdateString("ChimeSdkMeetingConfiguration.SourceConfiguration.SelectedVideoStreams.AttendeeIds[0]", value: "string")
    json.UpdateString("ChimeSdkMeetingConfiguration.SourceConfiguration.SelectedVideoStreams.ExternalUserIds[0]", value: "string")
    json.UpdateString("ClientRequestToken", value: "string")
    json.UpdateString("SinkArn", value: "string")
    json.UpdateString("SinkType", value: "string")
    json.UpdateString("SourceArn", value: "string")
    json.UpdateString("SourceType", value: "string")

    // The JSON request body created by the above code:

    // {
    //   "ChimeSdkMeetingConfiguration": {
    //     "ArtifactsConfiguration": {
    //       "Audio": {
    //         "MuxType": "string"
    //       },
    //       "Content": {
    //         "MuxType": "string",
    //         "State": "string"
    //       },
    //       "Video": {
    //         "MuxType": "string",
    //         "State": "string"
    //       }
    //     },
    //     "SourceConfiguration": {
    //       "SelectedVideoStreams": {
    //         "AttendeeIds": [
    //           "string"
    //         ],
    //         "ExternalUserIds": [
    //           "string"
    //         ]
    //       }
    //     }
    //   },
    //   "ClientRequestToken": "string",
    //   "SinkArn": "string",
    //   "SinkType": "string",
    //   "SourceArn": "string",
    //   "SourceType": "string"
    // }

    rest.AddHeader("Content-Type", value: "application/x-amz-json-1.1")
    rest.AddHeader("X-Amz-Target", value: "CreateMediaCapturePipeline")

    let sbRequestBody = CkoStringBuilder()
    json.EmitSb(sbRequestBody)
    let sbResponseBody = CkoStringBuilder()
    success = rest.FullRequestSb("POST", uriPath: "/media-capture-pipelines", 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 MuxType: String? = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Audio.MuxType")
    var ContentMuxType: String? = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Content.MuxType")
    var State: String? = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Content.State")
    var VideoMuxType: String? = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Video.MuxType")
    var VideoState: String? = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.ArtifactsConfiguration.Video.State")
    var CreatedTimestamp: Int = jResp.IntOf("MediaCapturePipeline.CreatedTimestamp").intValue
    var MediaPipelineId: String? = jResp.StringOf("MediaCapturePipeline.MediaPipelineId")
    var SinkArn: String? = jResp.StringOf("MediaCapturePipeline.SinkArn")
    var SinkType: String? = jResp.StringOf("MediaCapturePipeline.SinkType")
    var SourceArn: String? = jResp.StringOf("MediaCapturePipeline.SourceArn")
    var SourceType: String? = jResp.StringOf("MediaCapturePipeline.SourceType")
    var Status: String? = jResp.StringOf("MediaCapturePipeline.Status")
    var UpdatedTimestamp: Int = jResp.IntOf("MediaCapturePipeline.UpdatedTimestamp").intValue
    var i: Int = 0
    var count_i: Int = jResp.SizeOfArray("MediaCapturePipeline.ChimeSdkMeetingConfiguration.SourceConfiguration.SelectedVideoStreams.AttendeeIds").intValue
    while i < count_i {
        jResp.I = i
        strVal = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.SourceConfiguration.SelectedVideoStreams.AttendeeIds[i]")
        i = i + 1
    }

    i = 0
    count_i = jResp.SizeOfArray("MediaCapturePipeline.ChimeSdkMeetingConfiguration.SourceConfiguration.SelectedVideoStreams.ExternalUserIds").intValue
    while i < count_i {
        jResp.I = i
        strVal = jResp.StringOf("MediaCapturePipeline.ChimeSdkMeetingConfiguration.SourceConfiguration.SelectedVideoStreams.ExternalUserIds[i]")
        i = i + 1
    }

    // A sample JSON response body parsed by the above code:

    // {
    //   "MediaCapturePipeline": {
    //     "ChimeSdkMeetingConfiguration": {
    //       "ArtifactsConfiguration": {
    //         "Audio": {
    //           "MuxType": "string"
    //         },
    //         "Content": {
    //           "MuxType": "string",
    //           "State": "string"
    //         },
    //         "Video": {
    //           "MuxType": "string",
    //           "State": "string"
    //         }
    //       },
    //       "SourceConfiguration": {
    //         "SelectedVideoStreams": {
    //           "AttendeeIds": [
    //             "string"
    //           ],
    //           "ExternalUserIds": [
    //             "string"
    //           ]
    //         }
    //       }
    //     },
    //     "CreatedTimestamp": number,
    //     "MediaPipelineId": "string",
    //     "SinkArn": "string",
    //     "SinkType": "string",
    //     "SourceArn": "string",
    //     "SourceType": "string",
    //     "Status": "string",
    //     "UpdatedTimestamp": number
    //   }
    // }

}