packages/docs/docs/lambda/getawsclient.mdx
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.
// Import from "@remotion/lambda" instead before Remotion v4.0.60
import {getAwsClient, getRenderProgress} from '@remotion/lambda/client';
import {Readable} from 'stream';
const bucketName = 'remotionlambda-d9mafgx';
const getFileAsBuffer = async () => {
const progress = await getRenderProgress({
renderId: 'd7nlc2y',
bucketName: 'remotionlambda-d9mafgx',
functionName: 'remotion-render-la8ffw',
region: 'us-east-1',
});
if (!progress.outKey) {
// Video not yet rendered
return;
}
const {client, sdk} = getAwsClient({region: 'us-east-1', service: 's3'});
const data = client.send(
new sdk.GetObjectCommand({
Bucket: bucketName,
Key: progress.outKey,
}),
);
return data.Body as Readable;
};
// Import from "@remotion/lambda" instead before Remotion v4.0.60
import {getAwsClient} from '@remotion/lambda/client';
const {client, sdk} = getAwsClient({region: 'us-east-1', service: 's3'});
client.send(
new sdk.PutBucketCorsCommand({
Bucket: '[bucket-name]',
CORSConfiguration: {
CORSRules: [
{
AllowedMethods: ['GET', 'HEAD'],
AllowedHeaders: ['*'],
AllowedOrigins: ['*'],
},
],
},
}),
);
An object with two mandatory parameters:
regionOne of the supported regions of Remotion Lambda, for which the client should be instantiated.
serviceOne of lambda, cloudwatch, iam, servicequotas, s3 or sts.
customCredentials?<AvailableFrom v="3.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:
type CustomCredentials = {
endpoint: string;
accessKeyId: string | null;
secretAccessKey: string | null;
region?: string;
forcePathStyle?: boolean;
};
forcePathStyle?<AvailableFrom v="4.0.202" />Passes forcePathStyle to the AWS S3 client. If you don't know what this is, you probably don't need it.
An object with two properties:
An AWS SDK client instantiated with the region you passed and the credentials you had set at the time of calling the function.
s3: An instance of S3Clientiam: An instance of IAMClientcloudwatch: An instance of CloudWatchLogsClientservicequotas: An instance of ServiceQuotasClientlambda: An instance of LambdaClientThe full SDK JavaScript module for the service you specified.
s3: The @aws-sdk/client-s3 packageiam: The @aws-sdk/client-iam packagecloudwatch: The @aws-sdk/client-cloudwatch-logs packageservicequotas: The @aws-sdk/client-service-quotas packagelambda: The @aws-sdk/client-lambda package:::note
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.
:::