[][src]Trait rusoto_appsync::AppSync

pub trait AppSync {
    fn create_api_key(
        &self,
        input: CreateApiKeyRequest
    ) -> RusotoFuture<CreateApiKeyResponse, CreateApiKeyError>;
fn create_data_source(
        &self,
        input: CreateDataSourceRequest
    ) -> RusotoFuture<CreateDataSourceResponse, CreateDataSourceError>;
fn create_graphql_api(
        &self,
        input: CreateGraphqlApiRequest
    ) -> RusotoFuture<CreateGraphqlApiResponse, CreateGraphqlApiError>;
fn create_resolver(
        &self,
        input: CreateResolverRequest
    ) -> RusotoFuture<CreateResolverResponse, CreateResolverError>;
fn create_type(
        &self,
        input: CreateTypeRequest
    ) -> RusotoFuture<CreateTypeResponse, CreateTypeError>;
fn delete_api_key(
        &self,
        input: DeleteApiKeyRequest
    ) -> RusotoFuture<DeleteApiKeyResponse, DeleteApiKeyError>;
fn delete_data_source(
        &self,
        input: DeleteDataSourceRequest
    ) -> RusotoFuture<DeleteDataSourceResponse, DeleteDataSourceError>;
fn delete_graphql_api(
        &self,
        input: DeleteGraphqlApiRequest
    ) -> RusotoFuture<DeleteGraphqlApiResponse, DeleteGraphqlApiError>;
fn delete_resolver(
        &self,
        input: DeleteResolverRequest
    ) -> RusotoFuture<DeleteResolverResponse, DeleteResolverError>;
fn delete_type(
        &self,
        input: DeleteTypeRequest
    ) -> RusotoFuture<DeleteTypeResponse, DeleteTypeError>;
fn get_data_source(
        &self,
        input: GetDataSourceRequest
    ) -> RusotoFuture<GetDataSourceResponse, GetDataSourceError>;
fn get_graphql_api(
        &self,
        input: GetGraphqlApiRequest
    ) -> RusotoFuture<GetGraphqlApiResponse, GetGraphqlApiError>;
fn get_introspection_schema(
        &self,
        input: GetIntrospectionSchemaRequest
    ) -> RusotoFuture<GetIntrospectionSchemaResponse, GetIntrospectionSchemaError>;
fn get_resolver(
        &self,
        input: GetResolverRequest
    ) -> RusotoFuture<GetResolverResponse, GetResolverError>;
fn get_schema_creation_status(
        &self,
        input: GetSchemaCreationStatusRequest
    ) -> RusotoFuture<GetSchemaCreationStatusResponse, GetSchemaCreationStatusError>;
fn get_type(
        &self,
        input: GetTypeRequest
    ) -> RusotoFuture<GetTypeResponse, GetTypeError>;
fn list_api_keys(
        &self,
        input: ListApiKeysRequest
    ) -> RusotoFuture<ListApiKeysResponse, ListApiKeysError>;
fn list_data_sources(
        &self,
        input: ListDataSourcesRequest
    ) -> RusotoFuture<ListDataSourcesResponse, ListDataSourcesError>;
fn list_graphql_apis(
        &self,
        input: ListGraphqlApisRequest
    ) -> RusotoFuture<ListGraphqlApisResponse, ListGraphqlApisError>;
fn list_resolvers(
        &self,
        input: ListResolversRequest
    ) -> RusotoFuture<ListResolversResponse, ListResolversError>;
fn list_types(
        &self,
        input: ListTypesRequest
    ) -> RusotoFuture<ListTypesResponse, ListTypesError>;
fn start_schema_creation(
        &self,
        input: StartSchemaCreationRequest
    ) -> RusotoFuture<StartSchemaCreationResponse, StartSchemaCreationError>;
fn update_api_key(
        &self,
        input: UpdateApiKeyRequest
    ) -> RusotoFuture<UpdateApiKeyResponse, UpdateApiKeyError>;
fn update_data_source(
        &self,
        input: UpdateDataSourceRequest
    ) -> RusotoFuture<UpdateDataSourceResponse, UpdateDataSourceError>;
fn update_graphql_api(
        &self,
        input: UpdateGraphqlApiRequest
    ) -> RusotoFuture<UpdateGraphqlApiResponse, UpdateGraphqlApiError>;
fn update_resolver(
        &self,
        input: UpdateResolverRequest
    ) -> RusotoFuture<UpdateResolverResponse, UpdateResolverError>;
fn update_type(
        &self,
        input: UpdateTypeRequest
    ) -> RusotoFuture<UpdateTypeResponse, UpdateTypeError>; }

Trait representing the capabilities of the AWSAppSync API. AWSAppSync clients implement this trait.

Required Methods

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

Creates a DataSource object.

Creates a GraphqlApi object.

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.

Creates a Type object.

Deletes an API key.

Deletes a DataSource object.

Deletes a GraphqlApi object.

Deletes a Resolver object.

Deletes a Type object.

Retrieves a DataSource object.

Retrieves a GraphqlApi object.

Retrieves the introspection schema for a GraphQL API.

Retrieves a Resolver object.

Retrieves the current status of a schema creation operation.

Retrieves a Type object.

Lists the API keys for a given API.

API keys are deleted automatically sometime 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.

Lists the data sources for a given API.

Lists your GraphQL APIs.

Lists the resolvers for a given API and type.

Lists the types for a given API.

Adds a new schema to your GraphQL API.

This operation is asynchronous. Use to determine when it has completed.

Updates an API key.

Updates a DataSource object.

Updates a GraphqlApi object.

Updates a Resolver object.

Updates a Type object.

Implementors

impl AppSync for AppSyncClient
[src]

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

Creates a DataSource object.

Creates a GraphqlApi object.

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.

Creates a Type object.

Deletes an API key.

Deletes a DataSource object.

Deletes a GraphqlApi object.

Deletes a Resolver object.

Deletes a Type object.

Retrieves a DataSource object.

Retrieves a GraphqlApi object.

Retrieves the introspection schema for a GraphQL API.

Retrieves a Resolver object.

Retrieves the current status of a schema creation operation.

Retrieves a Type object.

Lists the API keys for a given API.

API keys are deleted automatically sometime 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.

Lists the data sources for a given API.

Lists your GraphQL APIs.

Lists the resolvers for a given API and type.

Lists the types for a given API.

Adds a new schema to your GraphQL API.

This operation is asynchronous. Use to determine when it has completed.

Updates an API key.

Updates a DataSource object.

Updates a GraphqlApi object.

Updates a Resolver object.

Updates a Type object.