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

ModifySnapshotAttributeRequest

import type { ModifySnapshotAttributeRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface ModifySnapshotAttributeRequest {
Attribute?: SnapshotAttributeName | null;
CreateVolumePermission?: CreateVolumePermissionModifications | null;
DryRun?: boolean | null;
GroupNames?: string[] | null;
OperationType?: OperationType | null;
SnapshotId: string;
UserIds?: string[] | null;
}

§Properties

§
Attribute?: SnapshotAttributeName | null
[src]

The snapshot attribute to modify. Only volume creation permissions can be modified.

§
CreateVolumePermission?: CreateVolumePermissionModifications | null
[src]

A JSON representation of the snapshot attribute modification.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
GroupNames?: string[] | null
[src]

The group to modify for the snapshot.

§
OperationType?: OperationType | null
[src]

The type of operation to perform to the attribute.

§
SnapshotId: string
[src]

The ID of the snapshot.

§
UserIds?: string[] | null
[src]

The account ID to modify for the snapshot.