getAwsClient()
This API exposes full access to the AWS SDK that Remotion uses under the hood. You can use it to interact with your AWS infrastructure in ways that Remotion doesn't provide a function for.
Example: Getting a buffer for a render
tsx
tsx
Example: Enable CORS for a bucket
tsx
tsx
Arguments
An object with two mandatory parameters:
region
One of the supported regions of Remotion Lambda, for which the client should be instantiated.
service
One of lambda, cloudwatch, iam, servicequotas and s3.
customCredentials
available from v3.2.23
Allows you to connect to another cloud provider, useful if you render your output to a different cloud. The value must satisfy the following type:
ts
ts
Return value
An object with two properties:
client
An AWS SDK client instantiated with the region you passed and the credentials you had set at the time of calling the function.
- For s3: An instance of S3Client
- For iam: An instance of IAMClient
- For cloudwatch: An instance of CloudWatchLogsClient
- For servicequotas: An instance of ServiceQuotasClient
- For lambda: An instance of LambdaClient
sdk
The full SDK JavaScript module for the service you specified.
- For s3: The@aws-sdk/client-s3package
- For iam: The@aws-sdk/client-iampackage
- For cloudwatch: The@aws-sdk/client-cloudwatch-logspackage
- For servicequotas: The@aws-sdk/client-service-quotaspackage
- For lambda: The@aws-sdk/client-lambdapackage
You don't need to create a new client from the SDK and should instead reuse the client that is also returned and being used by Remotion, in order to save memory.