Chilkat Online Tools

GetGraphqlApi Swift Example

AWS AppSync

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

    // URL: https://appsync.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("appsync.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: "GetGraphqlApi")

    let sbResponseBody = CkoStringBuilder()
    success = rest.FullRequestNoBodySb("GET", uriPath: "/v1/apis/{apiId}", 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 authenticationType: String?
    var lambdaAuthorizerConfigAuthorizerResultTtlInSeconds: Int
    var lambdaAuthorizerConfigAuthorizerUri: String?
    var lambdaAuthorizerConfigIdentityValidationExpression: String?
    var openIDConnectConfigAuthTTL: Int
    var openIDConnectConfigClientId: String?
    var openIDConnectConfigIatTTL: Int
    var openIDConnectConfigIssuer: String?
    var userPoolConfigAppIdClientRegex: String?
    var userPoolConfigAwsRegion: String?
    var userPoolConfigUserPoolId: String?

    var ApiId: String? = jResp.StringOf("graphqlApi.apiId")
    var Arn: String? = jResp.StringOf("graphqlApi.arn")
    var AuthenticationType: String? = jResp.StringOf("graphqlApi.authenticationType")
    var AuthorizerResultTtlInSeconds: Int = jResp.IntOf("graphqlApi.lambdaAuthorizerConfig.authorizerResultTtlInSeconds").intValue
    var AuthorizerUri: String? = jResp.StringOf("graphqlApi.lambdaAuthorizerConfig.authorizerUri")
    var IdentityValidationExpression: String? = jResp.StringOf("graphqlApi.lambdaAuthorizerConfig.identityValidationExpression")
    var CloudWatchLogsRoleArn: String? = jResp.StringOf("graphqlApi.logConfig.cloudWatchLogsRoleArn")
    var ExcludeVerboseContent: Int = jResp.IntOf("graphqlApi.logConfig.excludeVerboseContent").intValue
    var FieldLogLevel: String? = jResp.StringOf("graphqlApi.logConfig.fieldLogLevel")
    var Name: String? = jResp.StringOf("graphqlApi.name")
    var AuthTTL: Int = jResp.IntOf("graphqlApi.openIDConnectConfig.authTTL").intValue
    var ClientId: String? = jResp.StringOf("graphqlApi.openIDConnectConfig.clientId")
    var IatTTL: Int = jResp.IntOf("graphqlApi.openIDConnectConfig.iatTTL").intValue
    var Issuer: String? = jResp.StringOf("graphqlApi.openIDConnectConfig.issuer")
    var v_String: String? = jResp.StringOf("graphqlApi.tags.string")
    var UrisString: String? = jResp.StringOf("graphqlApi.uris.string")
    var AppIdClientRegex: String? = jResp.StringOf("graphqlApi.userPoolConfig.appIdClientRegex")
    var AwsRegion: String? = jResp.StringOf("graphqlApi.userPoolConfig.awsRegion")
    var DefaultAction: String? = jResp.StringOf("graphqlApi.userPoolConfig.defaultAction")
    var UserPoolId: String? = jResp.StringOf("graphqlApi.userPoolConfig.userPoolId")
    var WafWebAclArn: String? = jResp.StringOf("graphqlApi.wafWebAclArn")
    var XrayEnabled: Int = jResp.IntOf("graphqlApi.xrayEnabled").intValue
    var i: Int = 0
    var count_i: Int = jResp.SizeOfArray("graphqlApi.additionalAuthenticationProviders").intValue
    while i < count_i {
        jResp.I = i
        authenticationType = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].authenticationType")
        lambdaAuthorizerConfigAuthorizerResultTtlInSeconds = jResp.IntOf("graphqlApi.additionalAuthenticationProviders[i].lambdaAuthorizerConfig.authorizerResultTtlInSeconds").intValue
        lambdaAuthorizerConfigAuthorizerUri = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].lambdaAuthorizerConfig.authorizerUri")
        lambdaAuthorizerConfigIdentityValidationExpression = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].lambdaAuthorizerConfig.identityValidationExpression")
        openIDConnectConfigAuthTTL = jResp.IntOf("graphqlApi.additionalAuthenticationProviders[i].openIDConnectConfig.authTTL").intValue
        openIDConnectConfigClientId = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].openIDConnectConfig.clientId")
        openIDConnectConfigIatTTL = jResp.IntOf("graphqlApi.additionalAuthenticationProviders[i].openIDConnectConfig.iatTTL").intValue
        openIDConnectConfigIssuer = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].openIDConnectConfig.issuer")
        userPoolConfigAppIdClientRegex = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].userPoolConfig.appIdClientRegex")
        userPoolConfigAwsRegion = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].userPoolConfig.awsRegion")
        userPoolConfigUserPoolId = jResp.StringOf("graphqlApi.additionalAuthenticationProviders[i].userPoolConfig.userPoolId")
        i = i + 1
    }

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

    // {
    //   "graphqlApi": {
    //     "additionalAuthenticationProviders": [
    //       {
    //         "authenticationType": "string",
    //         "lambdaAuthorizerConfig": {
    //           "authorizerResultTtlInSeconds": number,
    //           "authorizerUri": "string",
    //           "identityValidationExpression": "string"
    //         },
    //         "openIDConnectConfig": {
    //           "authTTL": number,
    //           "clientId": "string",
    //           "iatTTL": number,
    //           "issuer": "string"
    //         },
    //         "userPoolConfig": {
    //           "appIdClientRegex": "string",
    //           "awsRegion": "string",
    //           "userPoolId": "string"
    //         }
    //       }
    //     ],
    //     "apiId": "string",
    //     "arn": "string",
    //     "authenticationType": "string",
    //     "lambdaAuthorizerConfig": {
    //       "authorizerResultTtlInSeconds": number,
    //       "authorizerUri": "string",
    //       "identityValidationExpression": "string"
    //     },
    //     "logConfig": {
    //       "cloudWatchLogsRoleArn": "string",
    //       "excludeVerboseContent": boolean,
    //       "fieldLogLevel": "string"
    //     },
    //     "name": "string",
    //     "openIDConnectConfig": {
    //       "authTTL": number,
    //       "clientId": "string",
    //       "iatTTL": number,
    //       "issuer": "string"
    //     },
    //     "tags": {
    //       "string": "string"
    //     },
    //     "uris": {
    //       "string": "string"
    //     },
    //     "userPoolConfig": {
    //       "appIdClientRegex": "string",
    //       "awsRegion": "string",
    //       "defaultAction": "string",
    //       "userPoolId": "string"
    //     },
    //     "wafWebAclArn": "string",
    //     "xrayEnabled": boolean
    //   }
    // }

}