Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AWSV4Signature

import type { AWSV4Signature } from "https://googleapis.deno.dev/v1/compute:v1.ts";

Contains the configurations necessary to generate a signature for access to private storage buckets that support Signature Version 4 for authentication. The service name for generating the authentication header will always default to 's3'.

interface AWSV4Signature {
accessKey?: string;
accessKeyId?: string;
accessKeyVersion?: string;
originRegion?: string;
}

§Properties

§
accessKey?: string
[src]

The access key used for s3 bucket authentication. Required for updating or creating a backend that uses AWS v4 signature authentication, but will not be returned as part of the configuration when queried with a REST API GET request. @InputOnly

§
accessKeyId?: string
[src]

The identifier of an access key used for s3 bucket authentication.

§
accessKeyVersion?: string
[src]

The optional version identifier for the access key. You can use this to keep track of different iterations of your access key.

§
originRegion?: string
[src]

The name of the cloud region of your origin. This is a free-form field with the name of the region your cloud uses to host your origin. For example, "us-east-1" for AWS or "us-ashburn-1" for OCI.