Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateDataSourceRequest

import type { UpdateDataSourceRequest } from "https://aws-api.deno.dev/v0.3/services/appsync.ts?docs=full";
interface UpdateDataSourceRequest {
apiId: string;
description?: string | null;
dynamodbConfig?: DynamodbDataSourceConfig | null;
elasticsearchConfig?: ElasticsearchDataSourceConfig | null;
httpConfig?: HttpDataSourceConfig | null;
lambdaConfig?: LambdaDataSourceConfig | null;
name: string;
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig | null;
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig | null;
serviceRoleArn?: string | null;
}

§Properties

§
apiId: string
[src]

The API ID.

§
description?: string | null
[src]

The new description for the data source.

§
dynamodbConfig?: DynamodbDataSourceConfig | null
[src]

The new Amazon DynamoDB configuration.

§
elasticsearchConfig?: ElasticsearchDataSourceConfig | null
[src]

The new OpenSearch configuration.

As of September 2021, Amazon Elasticsearch service is Amazon OpenSearch Service. This configuration is deprecated. Instead, use "UpdateDataSourceRequest$openSearchServiceConfig" to update an OpenSearch data source.

§
httpConfig?: HttpDataSourceConfig | null
[src]

The new HTTP endpoint configuration.

§
lambdaConfig?: LambdaDataSourceConfig | null
[src]

The new Lambda configuration.

§
name: string
[src]

The new name for the data source.

§
openSearchServiceConfig?: OpenSearchServiceDataSourceConfig | null
[src]

The new OpenSearch configuration.

§
relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig | null
[src]

The new relational database configuration.

§
serviceRoleArn?: string | null
[src]

The new service role Amazon Resource Name (ARN) for the data source.

§

The new data source type.