Slide 26
Slide 26 text
© 2020, Amazon Web Services, Inc. or its affiliates. All rights reserved.
In Partnership with
• ςετ͍ͨ͠ConstructΛ࡞
• Stackʹఆͨ͠Resourceؚ͕·Ε͍ͯΔ͔νΣοΫ
࣮(୯ମςετ: appsync.test.tsͷ߹)
test('appsync should configure pipeline … contents’, () => {
// WHEN
new appsync.Resolver(stack, 'resolver', {
api: api,
typeName: 'test',
fieldName: 'test2',
pipelineConfig: ['test', 'test'],
});
// THEN
expect(stack).toHaveResourceLike('AWS::AppSync::Resolver', {
Kind: 'PIPELINE',
PipelineConfig: { Functions: ['test', 'test'] },
});
});