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

CreateAssetRequest

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

A new MediaPackage VOD Asset configuration.

interface CreateAssetRequest {
Id: string;
PackagingGroupId: string;
ResourceId?: string | null;
SourceArn: string;
SourceRoleArn: string;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Id: string
[src]

The unique identifier for the Asset.

§
PackagingGroupId: string
[src]

The ID of the PackagingGroup for the Asset.

§
ResourceId?: string | null
[src]

The resource ID to include in SPEKE key requests.

§
SourceArn: string
[src]

ARN of the source object in S3.

§
SourceRoleArn: string
[src]

The IAM role ARN used to access the source S3 bucket.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]