Appsync

This page documents function available when using the Appsync module, created with @service Appsync.

Index

Documentation

Main.Appsync.associate_apiMethod
associate_api(api_id, domain_name)
associate_api(api_id, domain_name, params::Dict{String,<:Any})

Maps an endpoint to your custom domain.

Arguments

  • api_id: The API ID. Private APIs can not be associated with custom domains.
  • domain_name: The domain name.
source
Main.Appsync.associate_merged_graphql_apiMethod
associate_merged_graphql_api(merged_api_identifier, source_api_identifier)
associate_merged_graphql_api(merged_api_identifier, source_api_identifier, params::Dict{String,<:Any})

Creates an association between a Merged API and source API using the source API's identifier.

Arguments

  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.
  • source_api_identifier: The identifier of the AppSync Source API. This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": The description field.
  • "sourceApiAssociationConfig": The SourceApiAssociationConfig object data.
source
Main.Appsync.associate_source_graphql_apiMethod
associate_source_graphql_api(merged_api_identifier, source_api_identifier)
associate_source_graphql_api(merged_api_identifier, source_api_identifier, params::Dict{String,<:Any})

Creates an association between a Merged API and source API using the Merged API's identifier.

Arguments

  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.
  • source_api_identifier: The identifier of the AppSync Source API. This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": The description field.
  • "sourceApiAssociationConfig": The SourceApiAssociationConfig object data.
source
Main.Appsync.create_api_cacheMethod
create_api_cache(api_caching_behavior, api_id, ttl, type)
create_api_cache(api_caching_behavior, api_id, ttl, type, params::Dict{String,<:Any})

Creates a cache for the GraphQL API.

Arguments

  • api_caching_behavior: Caching behavior. FULLREQUESTCACHING: All requests are fully cached. PERRESOLVERCACHING: Individual resolvers that you specify are cached.
  • api_id: The GraphQL API ID.
  • ttl: TTL in seconds for cache entries. Valid values are 1–3,600 seconds.
  • type: The cache instance type. Valid values are SMALL MEDIUM LARGE XLARGE LARGE2X LARGE4X LARGE8X (not available in all regions) LARGE12X Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used. The following legacy instance types are available, but their use is discouraged: T2SMALL: A t2.small instance type. T2MEDIUM: A t2.medium instance type. R4LARGE: A r4.large instance type. R4XLARGE: A r4.xlarge instance type. R42XLARGE: A r4.2xlarge instance type. R44XLARGE: A r4.4xlarge instance type. R4_8XLARGE: A r4.8xlarge instance type.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "atRestEncryptionEnabled": At-rest encryption flag for cache. You cannot update this setting after creation.
  • "transitEncryptionEnabled": Transit encryption flag when connecting to cache. You cannot update this setting after creation.
source
Main.Appsync.create_api_keyMethod
create_api_key(api_id)
create_api_key(api_id, params::Dict{String,<:Any})

Creates a unique key that you can distribute to clients who invoke your API.

Arguments

  • api_id: The ID for your GraphQL API.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": A description of the purpose of the API key.
  • "expires": From the creation time, the time after which the API key expires. The date is represented as seconds since the epoch, rounded down to the nearest hour. The default value for this parameter is 7 days from creation time. For more information, see .
source
Main.Appsync.create_data_sourceMethod
create_data_source(api_id, name, type)
create_data_source(api_id, name, type, params::Dict{String,<:Any})

Creates a DataSource object.

Arguments

  • api_id: The API ID for the GraphQL API for the DataSource.
  • name: A user-supplied name for the DataSource.
  • type: The type of the DataSource.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": A description of the DataSource.
  • "dynamodbConfig": Amazon DynamoDB settings.
  • "elasticsearchConfig": Amazon OpenSearch Service settings. As of September 2021, Amazon Elasticsearch service is Amazon OpenSearch Service. This configuration is deprecated. For new data sources, use CreateDataSourceRequestopenSearchServiceConfig to create an OpenSearch data source.
  • "eventBridgeConfig": Amazon EventBridge settings.
  • "httpConfig": HTTP endpoint settings.
  • "lambdaConfig": Lambda settings.
  • "openSearchServiceConfig": Amazon OpenSearch Service settings.
  • "relationalDatabaseConfig": Relational database settings.
  • "serviceRoleArn": The Identity and Access Management (IAM) service role Amazon Resource Name (ARN) for the data source. The system assumes this role when accessing the data source.
source
Main.Appsync.create_domain_nameMethod
create_domain_name(certificate_arn, domain_name)
create_domain_name(certificate_arn, domain_name, params::Dict{String,<:Any})

Creates a custom DomainName object.

Arguments

  • certificate_arn: The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
  • domain_name: The domain name.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": A description of the DomainName.
source
Main.Appsync.create_functionMethod
create_function(api_id, data_source_name, name)
create_function(api_id, data_source_name, name, params::Dict{String,<:Any})

Creates a Function object. A function is a reusable entity. You can use multiple functions to compose the resolver logic.

Arguments

  • api_id: The GraphQL API ID.
  • data_source_name: The Function DataSource name.
  • name: The Function name. The function name does not have to be unique.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "code": The function code that contains the request and response functions. When code is used, the runtime is required. The runtime value must be APPSYNC_JS.
  • "description": The Function description.
  • "functionVersion": The version of the request mapping template. Currently, the supported value is 2018-05-29. Note that when using VTL and mapping templates, the functionVersion is required.
  • "maxBatchSize": The maximum batching size for a resolver.
  • "requestMappingTemplate": The Function request mapping template. Functions support only the 2018-05-29 version of the request mapping template.
  • "responseMappingTemplate": The Function response mapping template.
  • "runtime":
  • "syncConfig":
source
Main.Appsync.create_graphql_apiMethod
create_graphql_api(authentication_type, name)
create_graphql_api(authentication_type, name, params::Dict{String,<:Any})

Creates a GraphqlApi object.

Arguments

  • authentication_type: The authentication type: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
  • name: A user-supplied name for the GraphqlApi.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "additionalAuthenticationProviders": A list of additional authentication providers for the GraphqlApi API.
  • "apiType": The value that indicates whether the GraphQL API is a standard API (GRAPHQL) or merged API (MERGED).
  • "lambdaAuthorizerConfig": Configuration for Lambda function authorization.
  • "logConfig": The Amazon CloudWatch Logs configuration.
  • "mergedApiExecutionRoleArn": The Identity and Access Management service role ARN for a merged API. The AppSync service assumes this role on behalf of the Merged API to validate access to source APIs at runtime and to prompt the AUTO_MERGE to update the merged API endpoint with the source API changes automatically.
  • "openIDConnectConfig": The OIDC configuration.
  • "ownerContact": The owner contact information for an API resource. This field accepts any string input with a length of 0 - 256 characters.
  • "tags": A TagMap object.
  • "userPoolConfig": The Amazon Cognito user pool configuration.
  • "visibility": Sets the value of the GraphQL API to public (GLOBAL) or private (PRIVATE). If no value is provided, the visibility will be set to GLOBAL by default. This value cannot be changed once the API has been created.
  • "xrayEnabled": A flag indicating whether to use X-Ray tracing for the GraphqlApi.
source
Main.Appsync.create_resolverMethod
create_resolver(api_id, field_name, type_name)
create_resolver(api_id, field_name, type_name, params::Dict{String,<:Any})

Creates a Resolver object. A resolver converts incoming requests into a format that a data source can understand, and converts the data source's responses into GraphQL.

Arguments

  • api_id: The ID for the GraphQL API for which the resolver is being created.
  • field_name: The name of the field to attach the resolver to.
  • type_name: The name of the Type.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "cachingConfig": The caching configuration for the resolver.
  • "code": The resolver code that contains the request and response functions. When code is used, the runtime is required. The runtime value must be APPSYNC_JS.
  • "dataSourceName": The name of the data source for which the resolver is being created.
  • "kind": The resolver type. UNIT: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. PIPELINE: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Function objects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
  • "maxBatchSize": The maximum batching size for a resolver.
  • "pipelineConfig": The PipelineConfig.
  • "requestMappingTemplate": The mapping template to use for requests. A resolver uses a request mapping template to convert a GraphQL expression into a format that a data source can understand. Mapping templates are written in Apache Velocity Template Language (VTL). VTL request mapping templates are optional when using an Lambda data source. For all other data sources, VTL request and response mapping templates are required.
  • "responseMappingTemplate": The mapping template to use for responses from the data source.
  • "runtime":
  • "syncConfig": The SyncConfig for a resolver attached to a versioned data source.
source
Main.Appsync.create_typeMethod
create_type(api_id, definition, format)
create_type(api_id, definition, format, params::Dict{String,<:Any})

Creates a Type object.

Arguments

  • api_id: The API ID.
  • definition: The type definition, in GraphQL Schema Definition Language (SDL) format. For more information, see the GraphQL SDL documentation.
  • format: The type format: SDL or JSON.
source
Main.Appsync.delete_api_cacheMethod
delete_api_cache(api_id)
delete_api_cache(api_id, params::Dict{String,<:Any})

Deletes an ApiCache object.

Arguments

  • api_id: The API ID.
source
Main.Appsync.delete_api_keyMethod
delete_api_key(api_id, id)
delete_api_key(api_id, id, params::Dict{String,<:Any})

Deletes an API key.

Arguments

  • api_id: The API ID.
  • id: The ID for the API key.
source
Main.Appsync.delete_data_sourceMethod
delete_data_source(api_id, name)
delete_data_source(api_id, name, params::Dict{String,<:Any})

Deletes a DataSource object.

Arguments

  • api_id: The API ID.
  • name: The name of the data source.
source
Main.Appsync.delete_domain_nameMethod
delete_domain_name(domain_name)
delete_domain_name(domain_name, params::Dict{String,<:Any})

Deletes a custom DomainName object.

Arguments

  • domain_name: The domain name.
source
Main.Appsync.delete_functionMethod
delete_function(api_id, function_id)
delete_function(api_id, function_id, params::Dict{String,<:Any})

Deletes a Function.

Arguments

  • api_id: The GraphQL API ID.
  • function_id: The Function ID.
source
Main.Appsync.delete_graphql_apiMethod
delete_graphql_api(api_id)
delete_graphql_api(api_id, params::Dict{String,<:Any})

Deletes a GraphqlApi object.

Arguments

  • api_id: The API ID.
source
Main.Appsync.delete_resolverMethod
delete_resolver(api_id, field_name, type_name)
delete_resolver(api_id, field_name, type_name, params::Dict{String,<:Any})

Deletes a Resolver object.

Arguments

  • api_id: The API ID.
  • field_name: The resolver field name.
  • type_name: The name of the resolver type.
source
Main.Appsync.delete_typeMethod
delete_type(api_id, type_name)
delete_type(api_id, type_name, params::Dict{String,<:Any})

Deletes a Type object.

Arguments

  • api_id: The API ID.
  • type_name: The type name.
source
Main.Appsync.disassociate_apiMethod
disassociate_api(domain_name)
disassociate_api(domain_name, params::Dict{String,<:Any})

Removes an ApiAssociation object from a custom domain.

Arguments

  • domain_name: The domain name.
source
Main.Appsync.disassociate_merged_graphql_apiMethod
disassociate_merged_graphql_api(association_id, source_api_identifier)
disassociate_merged_graphql_api(association_id, source_api_identifier, params::Dict{String,<:Any})

Deletes an association between a Merged API and source API using the source API's identifier and the association ID.

Arguments

  • association_id: The ID generated by the AppSync service for the source API association.
  • source_api_identifier: The identifier of the AppSync Source API. This is generated by the AppSync service. In most cases, source APIs (especially in your account) only require the API ID value or ARN of the source API. However, source APIs from other accounts (cross-account use cases) strictly require the full resource ARN of the source API.
source
Main.Appsync.disassociate_source_graphql_apiMethod
disassociate_source_graphql_api(association_id, merged_api_identifier)
disassociate_source_graphql_api(association_id, merged_api_identifier, params::Dict{String,<:Any})

Deletes an association between a Merged API and source API using the Merged API's identifier and the association ID.

Arguments

  • association_id: The ID generated by the AppSync service for the source API association.
  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.
source
Main.Appsync.evaluate_codeMethod
evaluate_code(code, context, runtime)
evaluate_code(code, context, runtime, params::Dict{String,<:Any})

Evaluates the given code and returns the response. The code definition requirements depend on the specified runtime. For APPSYNC_JS runtimes, the code defines the request and response functions. The request function takes the incoming request after a GraphQL operation is parsed and converts it into a request configuration for the selected data source operation. The response function interprets responses from the data source and maps it to the shape of the GraphQL field output type.

Arguments

  • code: The code definition to be evaluated. Note that code and runtime are both required for this action. The runtime value must be APPSYNC_JS.
  • context: The map that holds all of the contextual information for your resolver invocation. A context is required for this action.
  • runtime: The runtime to be used when evaluating the code. Currently, only the APPSYNC_JS runtime is supported.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "function": The function within the code to be evaluated. If provided, the valid values are request and response.
source
Main.Appsync.evaluate_mapping_templateMethod
evaluate_mapping_template(context, template)
evaluate_mapping_template(context, template, params::Dict{String,<:Any})

Evaluates a given template and returns the response. The mapping template can be a request or response template. Request templates take the incoming request after a GraphQL operation is parsed and convert it into a request configuration for the selected data source operation. Response templates interpret responses from the data source and map it to the shape of the GraphQL field output type. Mapping templates are written in the Apache Velocity Template Language (VTL).

Arguments

  • context: The map that holds all of the contextual information for your resolver invocation. A context is required for this action.
  • template: The mapping template; this can be a request or response template. A template is required for this action.
source
Main.Appsync.flush_api_cacheMethod
flush_api_cache(api_id)
flush_api_cache(api_id, params::Dict{String,<:Any})

Flushes an ApiCache object.

Arguments

  • api_id: The API ID.
source
Main.Appsync.get_api_associationMethod
get_api_association(domain_name)
get_api_association(domain_name, params::Dict{String,<:Any})

Retrieves an ApiAssociation object.

Arguments

  • domain_name: The domain name.
source
Main.Appsync.get_api_cacheMethod
get_api_cache(api_id)
get_api_cache(api_id, params::Dict{String,<:Any})

Retrieves an ApiCache object.

Arguments

  • api_id: The API ID.
source
Main.Appsync.get_data_sourceMethod
get_data_source(api_id, name)
get_data_source(api_id, name, params::Dict{String,<:Any})

Retrieves a DataSource object.

Arguments

  • api_id: The API ID.
  • name: The name of the data source.
source
Main.Appsync.get_domain_nameMethod
get_domain_name(domain_name)
get_domain_name(domain_name, params::Dict{String,<:Any})

Retrieves a custom DomainName object.

Arguments

  • domain_name: The domain name.
source
Main.Appsync.get_functionMethod
get_function(api_id, function_id)
get_function(api_id, function_id, params::Dict{String,<:Any})

Get a Function.

Arguments

  • api_id: The GraphQL API ID.
  • function_id: The Function ID.
source
Main.Appsync.get_graphql_apiMethod
get_graphql_api(api_id)
get_graphql_api(api_id, params::Dict{String,<:Any})

Retrieves a GraphqlApi object.

Arguments

  • api_id: The API ID for the GraphQL API.
source
Main.Appsync.get_introspection_schemaMethod
get_introspection_schema(api_id, format)
get_introspection_schema(api_id, format, params::Dict{String,<:Any})

Retrieves the introspection schema for a GraphQL API.

Arguments

  • api_id: The API ID.
  • format: The schema format: SDL or JSON.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "includeDirectives": A flag that specifies whether the schema introspection should contain directives.
source
Main.Appsync.get_resolverMethod
get_resolver(api_id, field_name, type_name)
get_resolver(api_id, field_name, type_name, params::Dict{String,<:Any})

Retrieves a Resolver object.

Arguments

  • api_id: The API ID.
  • field_name: The resolver field name.
  • type_name: The resolver type name.
source
Main.Appsync.get_schema_creation_statusMethod
get_schema_creation_status(api_id)
get_schema_creation_status(api_id, params::Dict{String,<:Any})

Retrieves the current status of a schema creation operation.

Arguments

  • api_id: The API ID.
source
Main.Appsync.get_source_api_associationMethod
get_source_api_association(association_id, merged_api_identifier)
get_source_api_association(association_id, merged_api_identifier, params::Dict{String,<:Any})

Retrieves a SourceApiAssociation object.

Arguments

  • association_id: The ID generated by the AppSync service for the source API association.
  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.
source
Main.Appsync.get_typeMethod
get_type(api_id, format, type_name)
get_type(api_id, format, type_name, params::Dict{String,<:Any})

Retrieves a Type object.

Arguments

  • api_id: The API ID.
  • format: The type format: SDL or JSON.
  • type_name: The type name.
source
Main.Appsync.list_api_keysMethod
list_api_keys(api_id)
list_api_keys(api_id, params::Dict{String,<:Any})

Lists the API keys for a given API. API keys are deleted automatically 60 days after they expire. However, they may still be included in the response until they have actually been deleted. You can safely call DeleteApiKey to manually delete a key before it's automatically deleted.

Arguments

  • api_id: The API ID.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_data_sourcesMethod
list_data_sources(api_id)
list_data_sources(api_id, params::Dict{String,<:Any})

Lists the data sources for a given API.

Arguments

  • api_id: The API ID.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_domain_namesMethod
list_domain_names()
list_domain_names(params::Dict{String,<:Any})

Lists multiple custom domain names.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_functionsMethod
list_functions(api_id)
list_functions(api_id, params::Dict{String,<:Any})

List multiple functions.

Arguments

  • api_id: The GraphQL API ID.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_graphql_apisMethod
list_graphql_apis()
list_graphql_apis(params::Dict{String,<:Any})

Lists your GraphQL APIs.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "apiType": The value that indicates whether the GraphQL API is a standard API (GRAPHQL) or merged API (MERGED).
  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
  • "owner": The account owner of the GraphQL API.
source
Main.Appsync.list_resolversMethod
list_resolvers(api_id, type_name)
list_resolvers(api_id, type_name, params::Dict{String,<:Any})

Lists the resolvers for a given API and type.

Arguments

  • api_id: The API ID.
  • type_name: The type name.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_resolvers_by_functionMethod
list_resolvers_by_function(api_id, function_id)
list_resolvers_by_function(api_id, function_id, params::Dict{String,<:Any})

List the resolvers that are associated with a specific function.

Arguments

  • api_id: The API ID.
  • function_id: The function ID.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_source_api_associationsMethod
list_source_api_associations(api_id)
list_source_api_associations(api_id, params::Dict{String,<:Any})

Lists the SourceApiAssociationSummary data.

Arguments

  • api_id: The API ID.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_tags_for_resourceMethod
list_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})

Lists the tags for a resource.

Arguments

  • resource_arn: The GraphqlApi Amazon Resource Name (ARN).
source
Main.Appsync.list_typesMethod
list_types(api_id, format)
list_types(api_id, format, params::Dict{String,<:Any})

Lists the types for a given API.

Arguments

  • api_id: The API ID.
  • format: The type format: SDL or JSON.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.list_types_by_associationMethod
list_types_by_association(association_id, format, merged_api_identifier)
list_types_by_association(association_id, format, merged_api_identifier, params::Dict{String,<:Any})

Lists Type objects by the source API association ID.

Arguments

  • association_id: The ID generated by the AppSync service for the source API association.
  • format: The format type.
  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "maxResults": The maximum number of results that you want the request to return.
  • "nextToken": An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
source
Main.Appsync.start_schema_creationMethod
start_schema_creation(api_id, definition)
start_schema_creation(api_id, definition, params::Dict{String,<:Any})

Adds a new schema to your GraphQL API. This operation is asynchronous. Use to determine when it has completed.

Arguments

  • api_id: The API ID.
  • definition: The schema definition, in GraphQL schema language format.
source
Main.Appsync.start_schema_mergeMethod
start_schema_merge(association_id, merged_api_identifier)
start_schema_merge(association_id, merged_api_identifier, params::Dict{String,<:Any})

Initiates a merge operation. Returns a status that shows the result of the merge operation.

Arguments

  • association_id: The ID generated by the AppSync service for the source API association.
  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.
source
Main.Appsync.tag_resourceMethod
tag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})

Tags a resource with user-supplied tags.

Arguments

  • resource_arn: The GraphqlApi Amazon Resource Name (ARN).
  • tags: A TagMap object.
source
Main.Appsync.untag_resourceMethod
untag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})

Untags a resource.

Arguments

  • resource_arn: The GraphqlApi Amazon Resource Name (ARN).
  • tag_keys: A list of TagKey objects.
source
Main.Appsync.update_api_cacheMethod
update_api_cache(api_caching_behavior, api_id, ttl, type)
update_api_cache(api_caching_behavior, api_id, ttl, type, params::Dict{String,<:Any})

Updates the cache for the GraphQL API.

Arguments

  • api_caching_behavior: Caching behavior. FULLREQUESTCACHING: All requests are fully cached. PERRESOLVERCACHING: Individual resolvers that you specify are cached.
  • api_id: The GraphQL API ID.
  • ttl: TTL in seconds for cache entries. Valid values are 1–3,600 seconds.
  • type: The cache instance type. Valid values are SMALL MEDIUM LARGE XLARGE LARGE2X LARGE4X LARGE8X (not available in all regions) LARGE12X Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used. The following legacy instance types are available, but their use is discouraged: T2SMALL: A t2.small instance type. T2MEDIUM: A t2.medium instance type. R4LARGE: A r4.large instance type. R4XLARGE: A r4.xlarge instance type. R42XLARGE: A r4.2xlarge instance type. R44XLARGE: A r4.4xlarge instance type. R4_8XLARGE: A r4.8xlarge instance type.
source
Main.Appsync.update_api_keyMethod
update_api_key(api_id, id)
update_api_key(api_id, id, params::Dict{String,<:Any})

Updates an API key. You can update the key as long as it's not deleted.

Arguments

  • api_id: The ID for the GraphQL API.
  • id: The API key ID.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": A description of the purpose of the API key.
  • "expires": From the update time, the time after which the API key expires. The date is represented as seconds since the epoch. For more information, see .
source
Main.Appsync.update_data_sourceMethod
update_data_source(api_id, name, type)
update_data_source(api_id, name, type, params::Dict{String,<:Any})

Updates a DataSource object.

Arguments

  • api_id: The API ID.
  • name: The new name for the data source.
  • type: The new data source type.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": The new description for the data source.
  • "dynamodbConfig": The new Amazon DynamoDB configuration.
  • "elasticsearchConfig": The new OpenSearch configuration. As of September 2021, Amazon Elasticsearch service is Amazon OpenSearch Service. This configuration is deprecated. Instead, use UpdateDataSourceRequestopenSearchServiceConfig to update an OpenSearch data source.
  • "eventBridgeConfig": The new Amazon EventBridge settings.
  • "httpConfig": The new HTTP endpoint configuration.
  • "lambdaConfig": The new Lambda configuration.
  • "openSearchServiceConfig": The new OpenSearch configuration.
  • "relationalDatabaseConfig": The new relational database configuration.
  • "serviceRoleArn": The new service role Amazon Resource Name (ARN) for the data source.
source
Main.Appsync.update_domain_nameMethod
update_domain_name(domain_name)
update_domain_name(domain_name, params::Dict{String,<:Any})

Updates a custom DomainName object.

Arguments

  • domain_name: The domain name.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": A description of the DomainName.
source
Main.Appsync.update_functionMethod
update_function(api_id, data_source_name, function_id, name)
update_function(api_id, data_source_name, function_id, name, params::Dict{String,<:Any})

Updates a Function object.

Arguments

  • api_id: The GraphQL API ID.
  • data_source_name: The Function DataSource name.
  • function_id: The function ID.
  • name: The Function name.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "code": The function code that contains the request and response functions. When code is used, the runtime is required. The runtime value must be APPSYNC_JS.
  • "description": The Function description.
  • "functionVersion": The version of the request mapping template. Currently, the supported value is 2018-05-29. Note that when using VTL and mapping templates, the functionVersion is required.
  • "maxBatchSize": The maximum batching size for a resolver.
  • "requestMappingTemplate": The Function request mapping template. Functions support only the 2018-05-29 version of the request mapping template.
  • "responseMappingTemplate": The Function request mapping template.
  • "runtime":
  • "syncConfig":
source
Main.Appsync.update_graphql_apiMethod
update_graphql_api(api_id, name)
update_graphql_api(api_id, name, params::Dict{String,<:Any})

Updates a GraphqlApi object.

Arguments

  • api_id: The API ID.
  • name: The new name for the GraphqlApi object.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "additionalAuthenticationProviders": A list of additional authentication providers for the GraphqlApi API.
  • "authenticationType": The new authentication type for the GraphqlApi object.
  • "lambdaAuthorizerConfig": Configuration for Lambda function authorization.
  • "logConfig": The Amazon CloudWatch Logs configuration for the GraphqlApi object.
  • "mergedApiExecutionRoleArn": The Identity and Access Management service role ARN for a merged API. The AppSync service assumes this role on behalf of the Merged API to validate access to source APIs at runtime and to prompt the AUTO_MERGE to update the merged API endpoint with the source API changes automatically.
  • "openIDConnectConfig": The OpenID Connect configuration for the GraphqlApi object.
  • "ownerContact": The owner contact information for an API resource. This field accepts any string input with a length of 0 - 256 characters.
  • "userPoolConfig": The new Amazon Cognito user pool configuration for the ~GraphqlApi object.
  • "xrayEnabled": A flag indicating whether to use X-Ray tracing for the GraphqlApi.
source
Main.Appsync.update_resolverMethod
update_resolver(api_id, field_name, type_name)
update_resolver(api_id, field_name, type_name, params::Dict{String,<:Any})

Updates a Resolver object.

Arguments

  • api_id: The API ID.
  • field_name: The new field name.
  • type_name: The new type name.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "cachingConfig": The caching configuration for the resolver.
  • "code": The resolver code that contains the request and response functions. When code is used, the runtime is required. The runtime value must be APPSYNC_JS.
  • "dataSourceName": The new data source name.
  • "kind": The resolver type. UNIT: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source. PIPELINE: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of Function objects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
  • "maxBatchSize": The maximum batching size for a resolver.
  • "pipelineConfig": The PipelineConfig.
  • "requestMappingTemplate": The new request mapping template. A resolver uses a request mapping template to convert a GraphQL expression into a format that a data source can understand. Mapping templates are written in Apache Velocity Template Language (VTL). VTL request mapping templates are optional when using an Lambda data source. For all other data sources, VTL request and response mapping templates are required.
  • "responseMappingTemplate": The new response mapping template.
  • "runtime":
  • "syncConfig": The SyncConfig for a resolver attached to a versioned data source.
source
Main.Appsync.update_source_api_associationMethod
update_source_api_association(association_id, merged_api_identifier)
update_source_api_association(association_id, merged_api_identifier, params::Dict{String,<:Any})

Updates some of the configuration choices of a particular source API association.

Arguments

  • association_id: The ID generated by the AppSync service for the source API association.
  • merged_api_identifier: The identifier of the AppSync Merged API. This is generated by the AppSync service. In most cases, Merged APIs (especially in your account) only require the API ID value or ARN of the merged API. However, Merged APIs in other accounts (cross-account use cases) strictly require the full resource ARN of the merged API.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "description": The description field.
  • "sourceApiAssociationConfig": The SourceApiAssociationConfig object data.
source
Main.Appsync.update_typeMethod
update_type(api_id, format, type_name)
update_type(api_id, format, type_name, params::Dict{String,<:Any})

Updates a Type object.

Arguments

  • api_id: The API ID.
  • format: The new type format: SDL or JSON.
  • type_name: The new type name.

Optional Parameters

Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:

  • "definition": The new definition.
source