Capítulo 422 de 988

Chapter 422: AWS China regions

Core Idea

Remotion Lambda supports these AWS China regions:

Key Concepts

  • Custom Layers
  • IAM policies
  • Rendering

Code Examples

await deployFunction({
  region: 'cn-north-1',
  timeoutInSeconds: 120,
  memorySizeInMb: 2048,
  createCloudWatchLogGroup: true,
  customLayerArns: [
    'arn:aws-cn:lambda:cn-north-1:123456789012:layer:custom-chromium:1',
    'arn:aws-cn:lambda:cn-north-1:123456789012:layer:custom-fonts:1',
  ],
});
  • What it demonstrates: Usage pattern for AWS China regions from the official docs.

Key Takeaways

  1. Understand custom layers when working with AWS China regions.
  2. Understand iam policies when working with AWS China regions.
  3. Understand rendering when working with AWS China regions.

Connects To

  • api: related page in the Lambda (@remotion/lambda) section.
  • Approuterwebhook: related page in the Lambda (@remotion/lambda) section.
  • Authentication: related page in the Lambda (@remotion/lambda) section.