aws-cdk-lib.aws_appsync.PrimaryKey

class PrimaryKey

LanguageType name
.NETAmazon.CDK.AWS.AppSync.PrimaryKey
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappsync#PrimaryKey
Javasoftware.amazon.awscdk.services.appsync.PrimaryKey
Pythonaws_cdk.aws_appsync.PrimaryKey
TypeScript (source)aws-cdk-lib » aws_appsync » PrimaryKey

Specifies the assignment to the primary key.

It either contains the full primary key or only the partition key.

Example

const api = new appsync.GraphqlApi(this, 'Api', {
  name: 'demo',
  schema: appsync.SchemaFile.fromAsset(path.join(__dirname, 'schema.graphql')),
  authorizationConfig: {
    defaultAuthorization: {
      authorizationType: appsync.AuthorizationType.IAM,
    },
  },
  xrayEnabled: true,
});

const demoTable = new dynamodb.Table(this, 'DemoTable', {
  partitionKey: {
    name: 'id',
    type: dynamodb.AttributeType.STRING,
  },
});

const demoDS = api.addDynamoDbDataSource('demoDataSource', demoTable);

// Resolver for the Query "getDemos" that scans the DynamoDb table and returns the entire list.
// Resolver Mapping Template Reference:
// https://docs.aws.amazon.com/appsync/latest/devguide/resolver-mapping-template-reference-dynamodb.html
demoDS.createResolver('QueryGetDemosResolver', {
  typeName: 'Query',
  fieldName: 'getDemos',
  requestMappingTemplate: appsync.MappingTemplate.dynamoDbScanTable(),
  responseMappingTemplate: appsync.MappingTemplate.dynamoDbResultList(),
});

// Resolver for the Mutation "addDemo" that puts the item into the DynamoDb table.
demoDS.createResolver('MutationAddDemoResolver', {
  typeName: 'Mutation',
  fieldName: 'addDemo',
  requestMappingTemplate: appsync.MappingTemplate.dynamoDbPutItem(
    appsync.PrimaryKey.partition('id').auto(),
    appsync.Values.projecting('input'),
  ),
  responseMappingTemplate: appsync.MappingTemplate.dynamoDbResultItem(),
});

//To enable DynamoDB read consistency with the `MappingTemplate`:
demoDS.createResolver('QueryGetDemosConsistentResolver', {
  typeName: 'Query',
  fieldName: 'getDemosConsistent',
  requestMappingTemplate: appsync.MappingTemplate.dynamoDbScanTable(true),
  responseMappingTemplate: appsync.MappingTemplate.dynamoDbResultList(),
});

Initializer

new PrimaryKey(pkey: Assign, skey?: Assign)

Parameters

  • pkey Assign
  • skey Assign

Properties

NameTypeDescription
pkeyAssign

pkey

Type: Assign

Methods

NameDescription
renderTemplate()Renders the key assignment to a VTL string.
static partition(key)Allows assigning a value to the partition key.

renderTemplate()

public renderTemplate(): string

Returns

  • string

Renders the key assignment to a VTL string.


static partition(key)

public static partition(key: string): PartitionKeyStep

Parameters

  • key string

Returns

  • PartitionKeyStep

Allows assigning a value to the partition key.