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

AWSSessionCredentials

import type { AWSSessionCredentials } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";

Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

interface AWSSessionCredentials {
accessKeyId: string;
secretAccessKey: string;
sessionToken: string;
}

§Properties

§
accessKeyId: string
[src]

The access key for the session.

§
secretAccessKey: string
[src]

The secret access key for the session.

§
sessionToken: string
[src]

The token for the session.