aws.appsync.DataSource
Explore with Pulumi AI
Provides an AppSync Data Source.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const exampleTable = new aws.dynamodb.Table("example", {
name: "example",
readCapacity: 1,
writeCapacity: 1,
hashKey: "UserId",
attributes: [{
name: "UserId",
type: "S",
}],
});
const assumeRole = aws.iam.getPolicyDocument({
statements: [{
effect: "Allow",
principals: [{
type: "Service",
identifiers: ["appsync.amazonaws.com"],
}],
actions: ["sts:AssumeRole"],
}],
});
const exampleRole = new aws.iam.Role("example", {
name: "example",
assumeRolePolicy: assumeRole.then(assumeRole => assumeRole.json),
});
const example = aws.iam.getPolicyDocumentOutput({
statements: [{
effect: "Allow",
actions: ["dynamodb:*"],
resources: [exampleTable.arn],
}],
});
const exampleRolePolicy = new aws.iam.RolePolicy("example", {
name: "example",
role: exampleRole.id,
policy: example.apply(example => example.json),
});
const exampleGraphQLApi = new aws.appsync.GraphQLApi("example", {
authenticationType: "API_KEY",
name: "my_appsync_example",
});
const exampleDataSource = new aws.appsync.DataSource("example", {
apiId: exampleGraphQLApi.id,
name: "my_appsync_example",
serviceRoleArn: exampleRole.arn,
type: "AMAZON_DYNAMODB",
dynamodbConfig: {
tableName: exampleTable.name,
},
});
import pulumi
import pulumi_aws as aws
example_table = aws.dynamodb.Table("example",
name="example",
read_capacity=1,
write_capacity=1,
hash_key="UserId",
attributes=[{
"name": "UserId",
"type": "S",
}])
assume_role = aws.iam.get_policy_document(statements=[{
"effect": "Allow",
"principals": [{
"type": "Service",
"identifiers": ["appsync.amazonaws.com"],
}],
"actions": ["sts:AssumeRole"],
}])
example_role = aws.iam.Role("example",
name="example",
assume_role_policy=assume_role.json)
example = aws.iam.get_policy_document_output(statements=[{
"effect": "Allow",
"actions": ["dynamodb:*"],
"resources": [example_table.arn],
}])
example_role_policy = aws.iam.RolePolicy("example",
name="example",
role=example_role.id,
policy=example.json)
example_graph_ql_api = aws.appsync.GraphQLApi("example",
authentication_type="API_KEY",
name="my_appsync_example")
example_data_source = aws.appsync.DataSource("example",
api_id=example_graph_ql_api.id,
name="my_appsync_example",
service_role_arn=example_role.arn,
type="AMAZON_DYNAMODB",
dynamodb_config={
"table_name": example_table.name,
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appsync"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/dynamodb"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleTable, err := dynamodb.NewTable(ctx, "example", &dynamodb.TableArgs{
Name: pulumi.String("example"),
ReadCapacity: pulumi.Int(1),
WriteCapacity: pulumi.Int(1),
HashKey: pulumi.String("UserId"),
Attributes: dynamodb.TableAttributeArray{
&dynamodb.TableAttributeArgs{
Name: pulumi.String("UserId"),
Type: pulumi.String("S"),
},
},
})
if err != nil {
return err
}
assumeRole, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
Statements: []iam.GetPolicyDocumentStatement{
{
Effect: pulumi.StringRef("Allow"),
Principals: []iam.GetPolicyDocumentStatementPrincipal{
{
Type: "Service",
Identifiers: []string{
"appsync.amazonaws.com",
},
},
},
Actions: []string{
"sts:AssumeRole",
},
},
},
}, nil)
if err != nil {
return err
}
exampleRole, err := iam.NewRole(ctx, "example", &iam.RoleArgs{
Name: pulumi.String("example"),
AssumeRolePolicy: pulumi.String(assumeRole.Json),
})
if err != nil {
return err
}
example := iam.GetPolicyDocumentOutput(ctx, iam.GetPolicyDocumentOutputArgs{
Statements: iam.GetPolicyDocumentStatementArray{
&iam.GetPolicyDocumentStatementArgs{
Effect: pulumi.String("Allow"),
Actions: pulumi.StringArray{
pulumi.String("dynamodb:*"),
},
Resources: pulumi.StringArray{
exampleTable.Arn,
},
},
},
}, nil)
_, err = iam.NewRolePolicy(ctx, "example", &iam.RolePolicyArgs{
Name: pulumi.String("example"),
Role: exampleRole.ID(),
Policy: pulumi.String(example.ApplyT(func(example iam.GetPolicyDocumentResult) (*string, error) {
return &example.Json, nil
}).(pulumi.StringPtrOutput)),
})
if err != nil {
return err
}
exampleGraphQLApi, err := appsync.NewGraphQLApi(ctx, "example", &appsync.GraphQLApiArgs{
AuthenticationType: pulumi.String("API_KEY"),
Name: pulumi.String("my_appsync_example"),
})
if err != nil {
return err
}
_, err = appsync.NewDataSource(ctx, "example", &appsync.DataSourceArgs{
ApiId: exampleGraphQLApi.ID(),
Name: pulumi.String("my_appsync_example"),
ServiceRoleArn: exampleRole.Arn,
Type: pulumi.String("AMAZON_DYNAMODB"),
DynamodbConfig: &appsync.DataSourceDynamodbConfigArgs{
TableName: exampleTable.Name,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var exampleTable = new Aws.DynamoDB.Table("example", new()
{
Name = "example",
ReadCapacity = 1,
WriteCapacity = 1,
HashKey = "UserId",
Attributes = new[]
{
new Aws.DynamoDB.Inputs.TableAttributeArgs
{
Name = "UserId",
Type = "S",
},
},
});
var assumeRole = Aws.Iam.GetPolicyDocument.Invoke(new()
{
Statements = new[]
{
new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
{
Effect = "Allow",
Principals = new[]
{
new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
{
Type = "Service",
Identifiers = new[]
{
"appsync.amazonaws.com",
},
},
},
Actions = new[]
{
"sts:AssumeRole",
},
},
},
});
var exampleRole = new Aws.Iam.Role("example", new()
{
Name = "example",
AssumeRolePolicy = assumeRole.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
});
var example = Aws.Iam.GetPolicyDocument.Invoke(new()
{
Statements = new[]
{
new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
{
Effect = "Allow",
Actions = new[]
{
"dynamodb:*",
},
Resources = new[]
{
exampleTable.Arn,
},
},
},
});
var exampleRolePolicy = new Aws.Iam.RolePolicy("example", new()
{
Name = "example",
Role = exampleRole.Id,
Policy = example.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
});
var exampleGraphQLApi = new Aws.AppSync.GraphQLApi("example", new()
{
AuthenticationType = "API_KEY",
Name = "my_appsync_example",
});
var exampleDataSource = new Aws.AppSync.DataSource("example", new()
{
ApiId = exampleGraphQLApi.Id,
Name = "my_appsync_example",
ServiceRoleArn = exampleRole.Arn,
Type = "AMAZON_DYNAMODB",
DynamodbConfig = new Aws.AppSync.Inputs.DataSourceDynamodbConfigArgs
{
TableName = exampleTable.Name,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.dynamodb.Table;
import com.pulumi.aws.dynamodb.TableArgs;
import com.pulumi.aws.dynamodb.inputs.TableAttributeArgs;
import com.pulumi.aws.iam.IamFunctions;
import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
import com.pulumi.aws.iam.Role;
import com.pulumi.aws.iam.RoleArgs;
import com.pulumi.aws.iam.RolePolicy;
import com.pulumi.aws.iam.RolePolicyArgs;
import com.pulumi.aws.appsync.GraphQLApi;
import com.pulumi.aws.appsync.GraphQLApiArgs;
import com.pulumi.aws.appsync.DataSource;
import com.pulumi.aws.appsync.DataSourceArgs;
import com.pulumi.aws.appsync.inputs.DataSourceDynamodbConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleTable = new Table("exampleTable", TableArgs.builder()
.name("example")
.readCapacity(1)
.writeCapacity(1)
.hashKey("UserId")
.attributes(TableAttributeArgs.builder()
.name("UserId")
.type("S")
.build())
.build());
final var assumeRole = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
.statements(GetPolicyDocumentStatementArgs.builder()
.effect("Allow")
.principals(GetPolicyDocumentStatementPrincipalArgs.builder()
.type("Service")
.identifiers("appsync.amazonaws.com")
.build())
.actions("sts:AssumeRole")
.build())
.build());
var exampleRole = new Role("exampleRole", RoleArgs.builder()
.name("example")
.assumeRolePolicy(assumeRole.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
.build());
final var example = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
.statements(GetPolicyDocumentStatementArgs.builder()
.effect("Allow")
.actions("dynamodb:*")
.resources(exampleTable.arn())
.build())
.build());
var exampleRolePolicy = new RolePolicy("exampleRolePolicy", RolePolicyArgs.builder()
.name("example")
.role(exampleRole.id())
.policy(example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult).applyValue(example -> example.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json())))
.build());
var exampleGraphQLApi = new GraphQLApi("exampleGraphQLApi", GraphQLApiArgs.builder()
.authenticationType("API_KEY")
.name("my_appsync_example")
.build());
var exampleDataSource = new DataSource("exampleDataSource", DataSourceArgs.builder()
.apiId(exampleGraphQLApi.id())
.name("my_appsync_example")
.serviceRoleArn(exampleRole.arn())
.type("AMAZON_DYNAMODB")
.dynamodbConfig(DataSourceDynamodbConfigArgs.builder()
.tableName(exampleTable.name())
.build())
.build());
}
}
resources:
exampleTable:
type: aws:dynamodb:Table
name: example
properties:
name: example
readCapacity: 1
writeCapacity: 1
hashKey: UserId
attributes:
- name: UserId
type: S
exampleRole:
type: aws:iam:Role
name: example
properties:
name: example
assumeRolePolicy: ${assumeRole.json}
exampleRolePolicy:
type: aws:iam:RolePolicy
name: example
properties:
name: example
role: ${exampleRole.id}
policy: ${example.json}
exampleGraphQLApi:
type: aws:appsync:GraphQLApi
name: example
properties:
authenticationType: API_KEY
name: my_appsync_example
exampleDataSource:
type: aws:appsync:DataSource
name: example
properties:
apiId: ${exampleGraphQLApi.id}
name: my_appsync_example
serviceRoleArn: ${exampleRole.arn}
type: AMAZON_DYNAMODB
dynamodbConfig:
tableName: ${exampleTable.name}
variables:
assumeRole:
fn::invoke:
Function: aws:iam:getPolicyDocument
Arguments:
statements:
- effect: Allow
principals:
- type: Service
identifiers:
- appsync.amazonaws.com
actions:
- sts:AssumeRole
example:
fn::invoke:
Function: aws:iam:getPolicyDocument
Arguments:
statements:
- effect: Allow
actions:
- dynamodb:*
resources:
- ${exampleTable.arn}
Create DataSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DataSource(name: string, args: DataSourceArgs, opts?: CustomResourceOptions);
@overload
def DataSource(resource_name: str,
args: DataSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DataSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_id: Optional[str] = None,
type: Optional[str] = None,
description: Optional[str] = None,
dynamodb_config: Optional[DataSourceDynamodbConfigArgs] = None,
elasticsearch_config: Optional[DataSourceElasticsearchConfigArgs] = None,
event_bridge_config: Optional[DataSourceEventBridgeConfigArgs] = None,
http_config: Optional[DataSourceHttpConfigArgs] = None,
lambda_config: Optional[DataSourceLambdaConfigArgs] = None,
name: Optional[str] = None,
opensearchservice_config: Optional[DataSourceOpensearchserviceConfigArgs] = None,
relational_database_config: Optional[DataSourceRelationalDatabaseConfigArgs] = None,
service_role_arn: Optional[str] = None)
func NewDataSource(ctx *Context, name string, args DataSourceArgs, opts ...ResourceOption) (*DataSource, error)
public DataSource(string name, DataSourceArgs args, CustomResourceOptions? opts = null)
public DataSource(String name, DataSourceArgs args)
public DataSource(String name, DataSourceArgs args, CustomResourceOptions options)
type: aws:appsync:DataSource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DataSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DataSourceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DataSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataSourceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dataSourceResource = new Aws.AppSync.DataSource("dataSourceResource", new()
{
ApiId = "string",
Type = "string",
Description = "string",
DynamodbConfig = new Aws.AppSync.Inputs.DataSourceDynamodbConfigArgs
{
TableName = "string",
DeltaSyncConfig = new Aws.AppSync.Inputs.DataSourceDynamodbConfigDeltaSyncConfigArgs
{
DeltaSyncTableName = "string",
BaseTableTtl = 0,
DeltaSyncTableTtl = 0,
},
Region = "string",
UseCallerCredentials = false,
Versioned = false,
},
ElasticsearchConfig = new Aws.AppSync.Inputs.DataSourceElasticsearchConfigArgs
{
Endpoint = "string",
Region = "string",
},
EventBridgeConfig = new Aws.AppSync.Inputs.DataSourceEventBridgeConfigArgs
{
EventBusArn = "string",
},
HttpConfig = new Aws.AppSync.Inputs.DataSourceHttpConfigArgs
{
Endpoint = "string",
AuthorizationConfig = new Aws.AppSync.Inputs.DataSourceHttpConfigAuthorizationConfigArgs
{
AuthorizationType = "string",
AwsIamConfig = new Aws.AppSync.Inputs.DataSourceHttpConfigAuthorizationConfigAwsIamConfigArgs
{
SigningRegion = "string",
SigningServiceName = "string",
},
},
},
LambdaConfig = new Aws.AppSync.Inputs.DataSourceLambdaConfigArgs
{
FunctionArn = "string",
},
Name = "string",
OpensearchserviceConfig = new Aws.AppSync.Inputs.DataSourceOpensearchserviceConfigArgs
{
Endpoint = "string",
Region = "string",
},
RelationalDatabaseConfig = new Aws.AppSync.Inputs.DataSourceRelationalDatabaseConfigArgs
{
HttpEndpointConfig = new Aws.AppSync.Inputs.DataSourceRelationalDatabaseConfigHttpEndpointConfigArgs
{
AwsSecretStoreArn = "string",
DbClusterIdentifier = "string",
DatabaseName = "string",
Region = "string",
Schema = "string",
},
SourceType = "string",
},
ServiceRoleArn = "string",
});
example, err := appsync.NewDataSource(ctx, "dataSourceResource", &appsync.DataSourceArgs{
ApiId: pulumi.String("string"),
Type: pulumi.String("string"),
Description: pulumi.String("string"),
DynamodbConfig: &appsync.DataSourceDynamodbConfigArgs{
TableName: pulumi.String("string"),
DeltaSyncConfig: &appsync.DataSourceDynamodbConfigDeltaSyncConfigArgs{
DeltaSyncTableName: pulumi.String("string"),
BaseTableTtl: pulumi.Int(0),
DeltaSyncTableTtl: pulumi.Int(0),
},
Region: pulumi.String("string"),
UseCallerCredentials: pulumi.Bool(false),
Versioned: pulumi.Bool(false),
},
ElasticsearchConfig: &appsync.DataSourceElasticsearchConfigArgs{
Endpoint: pulumi.String("string"),
Region: pulumi.String("string"),
},
EventBridgeConfig: &appsync.DataSourceEventBridgeConfigArgs{
EventBusArn: pulumi.String("string"),
},
HttpConfig: &appsync.DataSourceHttpConfigArgs{
Endpoint: pulumi.String("string"),
AuthorizationConfig: &appsync.DataSourceHttpConfigAuthorizationConfigArgs{
AuthorizationType: pulumi.String("string"),
AwsIamConfig: &appsync.DataSourceHttpConfigAuthorizationConfigAwsIamConfigArgs{
SigningRegion: pulumi.String("string"),
SigningServiceName: pulumi.String("string"),
},
},
},
LambdaConfig: &appsync.DataSourceLambdaConfigArgs{
FunctionArn: pulumi.String("string"),
},
Name: pulumi.String("string"),
OpensearchserviceConfig: &appsync.DataSourceOpensearchserviceConfigArgs{
Endpoint: pulumi.String("string"),
Region: pulumi.String("string"),
},
RelationalDatabaseConfig: &appsync.DataSourceRelationalDatabaseConfigArgs{
HttpEndpointConfig: &appsync.DataSourceRelationalDatabaseConfigHttpEndpointConfigArgs{
AwsSecretStoreArn: pulumi.String("string"),
DbClusterIdentifier: pulumi.String("string"),
DatabaseName: pulumi.String("string"),
Region: pulumi.String("string"),
Schema: pulumi.String("string"),
},
SourceType: pulumi.String("string"),
},
ServiceRoleArn: pulumi.String("string"),
})
var dataSourceResource = new DataSource("dataSourceResource", DataSourceArgs.builder()
.apiId("string")
.type("string")
.description("string")
.dynamodbConfig(DataSourceDynamodbConfigArgs.builder()
.tableName("string")
.deltaSyncConfig(DataSourceDynamodbConfigDeltaSyncConfigArgs.builder()
.deltaSyncTableName("string")
.baseTableTtl(0)
.deltaSyncTableTtl(0)
.build())
.region("string")
.useCallerCredentials(false)
.versioned(false)
.build())
.elasticsearchConfig(DataSourceElasticsearchConfigArgs.builder()
.endpoint("string")
.region("string")
.build())
.eventBridgeConfig(DataSourceEventBridgeConfigArgs.builder()
.eventBusArn("string")
.build())
.httpConfig(DataSourceHttpConfigArgs.builder()
.endpoint("string")
.authorizationConfig(DataSourceHttpConfigAuthorizationConfigArgs.builder()
.authorizationType("string")
.awsIamConfig(DataSourceHttpConfigAuthorizationConfigAwsIamConfigArgs.builder()
.signingRegion("string")
.signingServiceName("string")
.build())
.build())
.build())
.lambdaConfig(DataSourceLambdaConfigArgs.builder()
.functionArn("string")
.build())
.name("string")
.opensearchserviceConfig(DataSourceOpensearchserviceConfigArgs.builder()
.endpoint("string")
.region("string")
.build())
.relationalDatabaseConfig(DataSourceRelationalDatabaseConfigArgs.builder()
.httpEndpointConfig(DataSourceRelationalDatabaseConfigHttpEndpointConfigArgs.builder()
.awsSecretStoreArn("string")
.dbClusterIdentifier("string")
.databaseName("string")
.region("string")
.schema("string")
.build())
.sourceType("string")
.build())
.serviceRoleArn("string")
.build());
data_source_resource = aws.appsync.DataSource("dataSourceResource",
api_id="string",
type="string",
description="string",
dynamodb_config={
"table_name": "string",
"delta_sync_config": {
"delta_sync_table_name": "string",
"base_table_ttl": 0,
"delta_sync_table_ttl": 0,
},
"region": "string",
"use_caller_credentials": False,
"versioned": False,
},
elasticsearch_config={
"endpoint": "string",
"region": "string",
},
event_bridge_config={
"event_bus_arn": "string",
},
http_config={
"endpoint": "string",
"authorization_config": {
"authorization_type": "string",
"aws_iam_config": {
"signing_region": "string",
"signing_service_name": "string",
},
},
},
lambda_config={
"function_arn": "string",
},
name="string",
opensearchservice_config={
"endpoint": "string",
"region": "string",
},
relational_database_config={
"http_endpoint_config": {
"aws_secret_store_arn": "string",
"db_cluster_identifier": "string",
"database_name": "string",
"region": "string",
"schema": "string",
},
"source_type": "string",
},
service_role_arn="string")
const dataSourceResource = new aws.appsync.DataSource("dataSourceResource", {
apiId: "string",
type: "string",
description: "string",
dynamodbConfig: {
tableName: "string",
deltaSyncConfig: {
deltaSyncTableName: "string",
baseTableTtl: 0,
deltaSyncTableTtl: 0,
},
region: "string",
useCallerCredentials: false,
versioned: false,
},
elasticsearchConfig: {
endpoint: "string",
region: "string",
},
eventBridgeConfig: {
eventBusArn: "string",
},
httpConfig: {
endpoint: "string",
authorizationConfig: {
authorizationType: "string",
awsIamConfig: {
signingRegion: "string",
signingServiceName: "string",
},
},
},
lambdaConfig: {
functionArn: "string",
},
name: "string",
opensearchserviceConfig: {
endpoint: "string",
region: "string",
},
relationalDatabaseConfig: {
httpEndpointConfig: {
awsSecretStoreArn: "string",
dbClusterIdentifier: "string",
databaseName: "string",
region: "string",
schema: "string",
},
sourceType: "string",
},
serviceRoleArn: "string",
});
type: aws:appsync:DataSource
properties:
apiId: string
description: string
dynamodbConfig:
deltaSyncConfig:
baseTableTtl: 0
deltaSyncTableName: string
deltaSyncTableTtl: 0
region: string
tableName: string
useCallerCredentials: false
versioned: false
elasticsearchConfig:
endpoint: string
region: string
eventBridgeConfig:
eventBusArn: string
httpConfig:
authorizationConfig:
authorizationType: string
awsIamConfig:
signingRegion: string
signingServiceName: string
endpoint: string
lambdaConfig:
functionArn: string
name: string
opensearchserviceConfig:
endpoint: string
region: string
relationalDatabaseConfig:
httpEndpointConfig:
awsSecretStoreArn: string
databaseName: string
dbClusterIdentifier: string
region: string
schema: string
sourceType: string
serviceRoleArn: string
type: string
DataSource Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DataSource resource accepts the following input properties:
- Api
Id string - API ID for the GraphQL API for the data source.
- Type string
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
. - Description string
- Description of the data source.
- Dynamodb
Config DataSource Dynamodb Config - DynamoDB settings. See
dynamodb_config
Block for details. - Elasticsearch
Config DataSource Elasticsearch Config - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - Event
Bridge DataConfig Source Event Bridge Config - AWS EventBridge settings. See
event_bridge_config
Block for details. - Http
Config DataSource Http Config - HTTP settings. See
http_config
Block for details. - Lambda
Config DataSource Lambda Config - AWS Lambda settings. See
lambda_config
Block for details. - Name string
- User-supplied name for the data source.
- Opensearchservice
Config DataSource Opensearchservice Config - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - Relational
Database DataConfig Source Relational Database Config - AWS RDS settings. See
relational_database_config
Block for details. - Service
Role stringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
.
- Api
Id string - API ID for the GraphQL API for the data source.
- Type string
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
. - Description string
- Description of the data source.
- Dynamodb
Config DataSource Dynamodb Config Args - DynamoDB settings. See
dynamodb_config
Block for details. - Elasticsearch
Config DataSource Elasticsearch Config Args - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - Event
Bridge DataConfig Source Event Bridge Config Args - AWS EventBridge settings. See
event_bridge_config
Block for details. - Http
Config DataSource Http Config Args - HTTP settings. See
http_config
Block for details. - Lambda
Config DataSource Lambda Config Args - AWS Lambda settings. See
lambda_config
Block for details. - Name string
- User-supplied name for the data source.
- Opensearchservice
Config DataSource Opensearchservice Config Args - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - Relational
Database DataConfig Source Relational Database Config Args - AWS RDS settings. See
relational_database_config
Block for details. - Service
Role stringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
.
- api
Id String - API ID for the GraphQL API for the data source.
- type String
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
. - description String
- Description of the data source.
- dynamodb
Config DataSource Dynamodb Config - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch
Config DataSource Elasticsearch Config - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event
Bridge DataConfig Source Event Bridge Config - AWS EventBridge settings. See
event_bridge_config
Block for details. - http
Config DataSource Http Config - HTTP settings. See
http_config
Block for details. - lambda
Config DataSource Lambda Config - AWS Lambda settings. See
lambda_config
Block for details. - name String
- User-supplied name for the data source.
- opensearchservice
Config DataSource Opensearchservice Config - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational
Database DataConfig Source Relational Database Config - AWS RDS settings. See
relational_database_config
Block for details. - service
Role StringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
.
- api
Id string - API ID for the GraphQL API for the data source.
- type string
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
. - description string
- Description of the data source.
- dynamodb
Config DataSource Dynamodb Config - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch
Config DataSource Elasticsearch Config - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event
Bridge DataConfig Source Event Bridge Config - AWS EventBridge settings. See
event_bridge_config
Block for details. - http
Config DataSource Http Config - HTTP settings. See
http_config
Block for details. - lambda
Config DataSource Lambda Config - AWS Lambda settings. See
lambda_config
Block for details. - name string
- User-supplied name for the data source.
- opensearchservice
Config DataSource Opensearchservice Config - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational
Database DataConfig Source Relational Database Config - AWS RDS settings. See
relational_database_config
Block for details. - service
Role stringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
.
- api_
id str - API ID for the GraphQL API for the data source.
- type str
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
. - description str
- Description of the data source.
- dynamodb_
config DataSource Dynamodb Config Args - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch_
config DataSource Elasticsearch Config Args - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event_
bridge_ Dataconfig Source Event Bridge Config Args - AWS EventBridge settings. See
event_bridge_config
Block for details. - http_
config DataSource Http Config Args - HTTP settings. See
http_config
Block for details. - lambda_
config DataSource Lambda Config Args - AWS Lambda settings. See
lambda_config
Block for details. - name str
- User-supplied name for the data source.
- opensearchservice_
config DataSource Opensearchservice Config Args - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational_
database_ Dataconfig Source Relational Database Config Args - AWS RDS settings. See
relational_database_config
Block for details. - service_
role_ strarn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
.
- api
Id String - API ID for the GraphQL API for the data source.
- type String
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
. - description String
- Description of the data source.
- dynamodb
Config Property Map - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch
Config Property Map - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event
Bridge Property MapConfig - AWS EventBridge settings. See
event_bridge_config
Block for details. - http
Config Property Map - HTTP settings. See
http_config
Block for details. - lambda
Config Property Map - AWS Lambda settings. See
lambda_config
Block for details. - name String
- User-supplied name for the data source.
- opensearchservice
Config Property Map - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational
Database Property MapConfig - AWS RDS settings. See
relational_database_config
Block for details. - service
Role StringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataSource resource produces the following output properties:
Look up Existing DataSource Resource
Get an existing DataSource resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DataSourceState, opts?: CustomResourceOptions): DataSource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api_id: Optional[str] = None,
arn: Optional[str] = None,
description: Optional[str] = None,
dynamodb_config: Optional[DataSourceDynamodbConfigArgs] = None,
elasticsearch_config: Optional[DataSourceElasticsearchConfigArgs] = None,
event_bridge_config: Optional[DataSourceEventBridgeConfigArgs] = None,
http_config: Optional[DataSourceHttpConfigArgs] = None,
lambda_config: Optional[DataSourceLambdaConfigArgs] = None,
name: Optional[str] = None,
opensearchservice_config: Optional[DataSourceOpensearchserviceConfigArgs] = None,
relational_database_config: Optional[DataSourceRelationalDatabaseConfigArgs] = None,
service_role_arn: Optional[str] = None,
type: Optional[str] = None) -> DataSource
func GetDataSource(ctx *Context, name string, id IDInput, state *DataSourceState, opts ...ResourceOption) (*DataSource, error)
public static DataSource Get(string name, Input<string> id, DataSourceState? state, CustomResourceOptions? opts = null)
public static DataSource get(String name, Output<String> id, DataSourceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Api
Id string - API ID for the GraphQL API for the data source.
- Arn string
- ARN
- Description string
- Description of the data source.
- Dynamodb
Config DataSource Dynamodb Config - DynamoDB settings. See
dynamodb_config
Block for details. - Elasticsearch
Config DataSource Elasticsearch Config - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - Event
Bridge DataConfig Source Event Bridge Config - AWS EventBridge settings. See
event_bridge_config
Block for details. - Http
Config DataSource Http Config - HTTP settings. See
http_config
Block for details. - Lambda
Config DataSource Lambda Config - AWS Lambda settings. See
lambda_config
Block for details. - Name string
- User-supplied name for the data source.
- Opensearchservice
Config DataSource Opensearchservice Config - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - Relational
Database DataConfig Source Relational Database Config - AWS RDS settings. See
relational_database_config
Block for details. - Service
Role stringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
. - Type string
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
.
- Api
Id string - API ID for the GraphQL API for the data source.
- Arn string
- ARN
- Description string
- Description of the data source.
- Dynamodb
Config DataSource Dynamodb Config Args - DynamoDB settings. See
dynamodb_config
Block for details. - Elasticsearch
Config DataSource Elasticsearch Config Args - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - Event
Bridge DataConfig Source Event Bridge Config Args - AWS EventBridge settings. See
event_bridge_config
Block for details. - Http
Config DataSource Http Config Args - HTTP settings. See
http_config
Block for details. - Lambda
Config DataSource Lambda Config Args - AWS Lambda settings. See
lambda_config
Block for details. - Name string
- User-supplied name for the data source.
- Opensearchservice
Config DataSource Opensearchservice Config Args - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - Relational
Database DataConfig Source Relational Database Config Args - AWS RDS settings. See
relational_database_config
Block for details. - Service
Role stringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
. - Type string
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
.
- api
Id String - API ID for the GraphQL API for the data source.
- arn String
- ARN
- description String
- Description of the data source.
- dynamodb
Config DataSource Dynamodb Config - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch
Config DataSource Elasticsearch Config - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event
Bridge DataConfig Source Event Bridge Config - AWS EventBridge settings. See
event_bridge_config
Block for details. - http
Config DataSource Http Config - HTTP settings. See
http_config
Block for details. - lambda
Config DataSource Lambda Config - AWS Lambda settings. See
lambda_config
Block for details. - name String
- User-supplied name for the data source.
- opensearchservice
Config DataSource Opensearchservice Config - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational
Database DataConfig Source Relational Database Config - AWS RDS settings. See
relational_database_config
Block for details. - service
Role StringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
. - type String
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
.
- api
Id string - API ID for the GraphQL API for the data source.
- arn string
- ARN
- description string
- Description of the data source.
- dynamodb
Config DataSource Dynamodb Config - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch
Config DataSource Elasticsearch Config - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event
Bridge DataConfig Source Event Bridge Config - AWS EventBridge settings. See
event_bridge_config
Block for details. - http
Config DataSource Http Config - HTTP settings. See
http_config
Block for details. - lambda
Config DataSource Lambda Config - AWS Lambda settings. See
lambda_config
Block for details. - name string
- User-supplied name for the data source.
- opensearchservice
Config DataSource Opensearchservice Config - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational
Database DataConfig Source Relational Database Config - AWS RDS settings. See
relational_database_config
Block for details. - service
Role stringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
. - type string
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
.
- api_
id str - API ID for the GraphQL API for the data source.
- arn str
- ARN
- description str
- Description of the data source.
- dynamodb_
config DataSource Dynamodb Config Args - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch_
config DataSource Elasticsearch Config Args - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event_
bridge_ Dataconfig Source Event Bridge Config Args - AWS EventBridge settings. See
event_bridge_config
Block for details. - http_
config DataSource Http Config Args - HTTP settings. See
http_config
Block for details. - lambda_
config DataSource Lambda Config Args - AWS Lambda settings. See
lambda_config
Block for details. - name str
- User-supplied name for the data source.
- opensearchservice_
config DataSource Opensearchservice Config Args - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational_
database_ Dataconfig Source Relational Database Config Args - AWS RDS settings. See
relational_database_config
Block for details. - service_
role_ strarn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
. - type str
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
.
- api
Id String - API ID for the GraphQL API for the data source.
- arn String
- ARN
- description String
- Description of the data source.
- dynamodb
Config Property Map - DynamoDB settings. See
dynamodb_config
Block for details. - elasticsearch
Config Property Map - Amazon Elasticsearch settings. See
elasticsearch_config
Block for details. - event
Bridge Property MapConfig - AWS EventBridge settings. See
event_bridge_config
Block for details. - http
Config Property Map - HTTP settings. See
http_config
Block for details. - lambda
Config Property Map - AWS Lambda settings. See
lambda_config
Block for details. - name String
- User-supplied name for the data source.
- opensearchservice
Config Property Map - Amazon OpenSearch Service settings. See
opensearchservice_config
Block for details. - relational
Database Property MapConfig - AWS RDS settings. See
relational_database_config
Block for details. - service
Role StringArn - IAM service role ARN for the data source. Required if
type
is specified asAWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,AMAZON_EVENTBRIDGE
, orAMAZON_OPENSEARCH_SERVICE
. - type String
- Type of the Data Source. Valid values:
AWS_LAMBDA
,AMAZON_DYNAMODB
,AMAZON_ELASTICSEARCH
,HTTP
,NONE
,RELATIONAL_DATABASE
,AMAZON_EVENTBRIDGE
,AMAZON_OPENSEARCH_SERVICE
.
Supporting Types
DataSourceDynamodbConfig, DataSourceDynamodbConfigArgs
- Table
Name string - Name of the DynamoDB table.
- Delta
Sync DataConfig Source Dynamodb Config Delta Sync Config - The DeltaSyncConfig for a versioned data source. See
delta_sync_config
Block for details. - Region string
- AWS region of the DynamoDB table. Defaults to current region.
- Use
Caller boolCredentials - Set to
true
to use Amazon Cognito credentials with this data source. - Versioned bool
- Detects Conflict Detection and Resolution with this data source.
- Table
Name string - Name of the DynamoDB table.
- Delta
Sync DataConfig Source Dynamodb Config Delta Sync Config - The DeltaSyncConfig for a versioned data source. See
delta_sync_config
Block for details. - Region string
- AWS region of the DynamoDB table. Defaults to current region.
- Use
Caller boolCredentials - Set to
true
to use Amazon Cognito credentials with this data source. - Versioned bool
- Detects Conflict Detection and Resolution with this data source.
- table
Name String - Name of the DynamoDB table.
- delta
Sync DataConfig Source Dynamodb Config Delta Sync Config - The DeltaSyncConfig for a versioned data source. See
delta_sync_config
Block for details. - region String
- AWS region of the DynamoDB table. Defaults to current region.
- use
Caller BooleanCredentials - Set to
true
to use Amazon Cognito credentials with this data source. - versioned Boolean
- Detects Conflict Detection and Resolution with this data source.
- table
Name string - Name of the DynamoDB table.
- delta
Sync DataConfig Source Dynamodb Config Delta Sync Config - The DeltaSyncConfig for a versioned data source. See
delta_sync_config
Block for details. - region string
- AWS region of the DynamoDB table. Defaults to current region.
- use
Caller booleanCredentials - Set to
true
to use Amazon Cognito credentials with this data source. - versioned boolean
- Detects Conflict Detection and Resolution with this data source.
- table_
name str - Name of the DynamoDB table.
- delta_
sync_ Dataconfig Source Dynamodb Config Delta Sync Config - The DeltaSyncConfig for a versioned data source. See
delta_sync_config
Block for details. - region str
- AWS region of the DynamoDB table. Defaults to current region.
- use_
caller_ boolcredentials - Set to
true
to use Amazon Cognito credentials with this data source. - versioned bool
- Detects Conflict Detection and Resolution with this data source.
- table
Name String - Name of the DynamoDB table.
- delta
Sync Property MapConfig - The DeltaSyncConfig for a versioned data source. See
delta_sync_config
Block for details. - region String
- AWS region of the DynamoDB table. Defaults to current region.
- use
Caller BooleanCredentials - Set to
true
to use Amazon Cognito credentials with this data source. - versioned Boolean
- Detects Conflict Detection and Resolution with this data source.
DataSourceDynamodbConfigDeltaSyncConfig, DataSourceDynamodbConfigDeltaSyncConfigArgs
- Delta
Sync stringTable Name - The table name.
- Base
Table intTtl - The number of minutes that an Item is stored in the data source.
- Delta
Sync intTable Ttl - The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
- Delta
Sync stringTable Name - The table name.
- Base
Table intTtl - The number of minutes that an Item is stored in the data source.
- Delta
Sync intTable Ttl - The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
- delta
Sync StringTable Name - The table name.
- base
Table IntegerTtl - The number of minutes that an Item is stored in the data source.
- delta
Sync IntegerTable Ttl - The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
- delta
Sync stringTable Name - The table name.
- base
Table numberTtl - The number of minutes that an Item is stored in the data source.
- delta
Sync numberTable Ttl - The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
- delta_
sync_ strtable_ name - The table name.
- base_
table_ intttl - The number of minutes that an Item is stored in the data source.
- delta_
sync_ inttable_ ttl - The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
- delta
Sync StringTable Name - The table name.
- base
Table NumberTtl - The number of minutes that an Item is stored in the data source.
- delta
Sync NumberTable Ttl - The number of minutes that a Delta Sync log entry is stored in the Delta Sync table.
DataSourceElasticsearchConfig, DataSourceElasticsearchConfigArgs
DataSourceEventBridgeConfig, DataSourceEventBridgeConfigArgs
- Event
Bus stringArn - ARN for the EventBridge bus.
- Event
Bus stringArn - ARN for the EventBridge bus.
- event
Bus StringArn - ARN for the EventBridge bus.
- event
Bus stringArn - ARN for the EventBridge bus.
- event_
bus_ strarn - ARN for the EventBridge bus.
- event
Bus StringArn - ARN for the EventBridge bus.
DataSourceHttpConfig, DataSourceHttpConfigArgs
- Endpoint string
- HTTP URL.
- Data
Source Http Config Authorization Config - Authorization configuration in case the HTTP endpoint requires authorization. See
authorization_config
Block for details.
- Endpoint string
- HTTP URL.
- Data
Source Http Config Authorization Config - Authorization configuration in case the HTTP endpoint requires authorization. See
authorization_config
Block for details.
- endpoint String
- HTTP URL.
- Data
Source Http Config Authorization Config - Authorization configuration in case the HTTP endpoint requires authorization. See
authorization_config
Block for details.
- endpoint string
- HTTP URL.
- Data
Source Http Config Authorization Config - Authorization configuration in case the HTTP endpoint requires authorization. See
authorization_config
Block for details.
- endpoint str
- HTTP URL.
- Data
Source Http Config Authorization Config - Authorization configuration in case the HTTP endpoint requires authorization. See
authorization_config
Block for details.
- endpoint String
- HTTP URL.
- Property Map
- Authorization configuration in case the HTTP endpoint requires authorization. See
authorization_config
Block for details.
DataSourceHttpConfigAuthorizationConfig, DataSourceHttpConfigAuthorizationConfigArgs
- string
- Authorization type that the HTTP endpoint requires. Default values is
AWS_IAM
. - Aws
Iam DataConfig Source Http Config Authorization Config Aws Iam Config - Identity and Access Management (IAM) settings. See
aws_iam_config
Block for details.
- string
- Authorization type that the HTTP endpoint requires. Default values is
AWS_IAM
. - Aws
Iam DataConfig Source Http Config Authorization Config Aws Iam Config - Identity and Access Management (IAM) settings. See
aws_iam_config
Block for details.
- String
- Authorization type that the HTTP endpoint requires. Default values is
AWS_IAM
. - aws
Iam DataConfig Source Http Config Authorization Config Aws Iam Config - Identity and Access Management (IAM) settings. See
aws_iam_config
Block for details.
- string
- Authorization type that the HTTP endpoint requires. Default values is
AWS_IAM
. - aws
Iam DataConfig Source Http Config Authorization Config Aws Iam Config - Identity and Access Management (IAM) settings. See
aws_iam_config
Block for details.
- str
- Authorization type that the HTTP endpoint requires. Default values is
AWS_IAM
. - aws_
iam_ Dataconfig Source Http Config Authorization Config Aws Iam Config - Identity and Access Management (IAM) settings. See
aws_iam_config
Block for details.
- String
- Authorization type that the HTTP endpoint requires. Default values is
AWS_IAM
. - aws
Iam Property MapConfig - Identity and Access Management (IAM) settings. See
aws_iam_config
Block for details.
DataSourceHttpConfigAuthorizationConfigAwsIamConfig, DataSourceHttpConfigAuthorizationConfigAwsIamConfigArgs
- Signing
Region string - Signing Amazon Web Services Region for IAM authorization.
- Signing
Service stringName - Signing service name for IAM authorization.
- Signing
Region string - Signing Amazon Web Services Region for IAM authorization.
- Signing
Service stringName - Signing service name for IAM authorization.
- signing
Region String - Signing Amazon Web Services Region for IAM authorization.
- signing
Service StringName - Signing service name for IAM authorization.
- signing
Region string - Signing Amazon Web Services Region for IAM authorization.
- signing
Service stringName - Signing service name for IAM authorization.
- signing_
region str - Signing Amazon Web Services Region for IAM authorization.
- signing_
service_ strname - Signing service name for IAM authorization.
- signing
Region String - Signing Amazon Web Services Region for IAM authorization.
- signing
Service StringName - Signing service name for IAM authorization.
DataSourceLambdaConfig, DataSourceLambdaConfigArgs
- Function
Arn string - ARN for the Lambda function.
- Function
Arn string - ARN for the Lambda function.
- function
Arn String - ARN for the Lambda function.
- function
Arn string - ARN for the Lambda function.
- function_
arn str - ARN for the Lambda function.
- function
Arn String - ARN for the Lambda function.
DataSourceOpensearchserviceConfig, DataSourceOpensearchserviceConfigArgs
DataSourceRelationalDatabaseConfig, DataSourceRelationalDatabaseConfigArgs
- Http
Endpoint DataConfig Source Relational Database Config Http Endpoint Config - Amazon RDS HTTP endpoint configuration. See
http_endpoint_config
Block for details. - Source
Type string - Source type for the relational database. Valid values:
RDS_HTTP_ENDPOINT
.
- Http
Endpoint DataConfig Source Relational Database Config Http Endpoint Config - Amazon RDS HTTP endpoint configuration. See
http_endpoint_config
Block for details. - Source
Type string - Source type for the relational database. Valid values:
RDS_HTTP_ENDPOINT
.
- http
Endpoint DataConfig Source Relational Database Config Http Endpoint Config - Amazon RDS HTTP endpoint configuration. See
http_endpoint_config
Block for details. - source
Type String - Source type for the relational database. Valid values:
RDS_HTTP_ENDPOINT
.
- http
Endpoint DataConfig Source Relational Database Config Http Endpoint Config - Amazon RDS HTTP endpoint configuration. See
http_endpoint_config
Block for details. - source
Type string - Source type for the relational database. Valid values:
RDS_HTTP_ENDPOINT
.
- http_
endpoint_ Dataconfig Source Relational Database Config Http Endpoint Config - Amazon RDS HTTP endpoint configuration. See
http_endpoint_config
Block for details. - source_
type str - Source type for the relational database. Valid values:
RDS_HTTP_ENDPOINT
.
- http
Endpoint Property MapConfig - Amazon RDS HTTP endpoint configuration. See
http_endpoint_config
Block for details. - source
Type String - Source type for the relational database. Valid values:
RDS_HTTP_ENDPOINT
.
DataSourceRelationalDatabaseConfigHttpEndpointConfig, DataSourceRelationalDatabaseConfigHttpEndpointConfigArgs
- Aws
Secret stringStore Arn - AWS secret store ARN for database credentials.
- Db
Cluster stringIdentifier - Amazon RDS cluster identifier.
- Database
Name string - Logical database name.
- Region string
- AWS Region for RDS HTTP endpoint. Defaults to current region.
- Schema string
- Logical schema name.
- Aws
Secret stringStore Arn - AWS secret store ARN for database credentials.
- Db
Cluster stringIdentifier - Amazon RDS cluster identifier.
- Database
Name string - Logical database name.
- Region string
- AWS Region for RDS HTTP endpoint. Defaults to current region.
- Schema string
- Logical schema name.
- aws
Secret StringStore Arn - AWS secret store ARN for database credentials.
- db
Cluster StringIdentifier - Amazon RDS cluster identifier.
- database
Name String - Logical database name.
- region String
- AWS Region for RDS HTTP endpoint. Defaults to current region.
- schema String
- Logical schema name.
- aws
Secret stringStore Arn - AWS secret store ARN for database credentials.
- db
Cluster stringIdentifier - Amazon RDS cluster identifier.
- database
Name string - Logical database name.
- region string
- AWS Region for RDS HTTP endpoint. Defaults to current region.
- schema string
- Logical schema name.
- aws_
secret_ strstore_ arn - AWS secret store ARN for database credentials.
- db_
cluster_ stridentifier - Amazon RDS cluster identifier.
- database_
name str - Logical database name.
- region str
- AWS Region for RDS HTTP endpoint. Defaults to current region.
- schema str
- Logical schema name.
- aws
Secret StringStore Arn - AWS secret store ARN for database credentials.
- db
Cluster StringIdentifier - Amazon RDS cluster identifier.
- database
Name String - Logical database name.
- region String
- AWS Region for RDS HTTP endpoint. Defaults to current region.
- schema String
- Logical schema name.
Import
Using pulumi import
, import aws_appsync_datasource
using the api_id
, a hyphen, and name
. For example:
$ pulumi import aws:appsync/dataSource:DataSource example abcdef123456-example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.