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

Backup

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

Describes a single backup.

interface Backup {
BackupArn?: string | null;
BackupId?: string | null;
BackupType?: BackupType | null;
CreatedAt?: Date | number | null;
Description?: string | null;
Engine?: string | null;
EngineModel?: string | null;
EngineVersion?: string | null;
InstanceProfileArn?: string | null;
InstanceType?: string | null;
KeyPair?: string | null;
PreferredBackupWindow?: string | null;
PreferredMaintenanceWindow?: string | null;
S3DataSize?: number | null;
S3DataUrl?: string | null;
S3LogUrl?: string | null;
SecurityGroupIds?: string[] | null;
ServerName?: string | null;
ServiceRoleArn?: string | null;
Status?: BackupStatus | null;
StatusDescription?: string | null;
SubnetIds?: string[] | null;
ToolsVersion?: string | null;
UserArn?: string | null;
}

§Properties

§
BackupArn?: string | null
[src]

The ARN of the backup.

§
BackupId?: string | null
[src]

The generated ID of the backup. Example: myServerName-yyyyMMddHHmmssSSS

§
BackupType?: BackupType | null
[src]

The backup type. Valid values are automated or manual.

§
CreatedAt?: Date | number | null
[src]

The time stamp when the backup was created in the database. Example: 2016-07-29T13:38:47.520Z

§
Description?: string | null
[src]

A user-provided description for a manual backup. This field is empty for automated backups.

§
Engine?: string | null
[src]

The engine type that is obtained from the server when the backup is created.

§
EngineModel?: string | null
[src]

The engine model that is obtained from the server when the backup is created.

§
EngineVersion?: string | null
[src]

The engine version that is obtained from the server when the backup is created.

§
InstanceProfileArn?: string | null
[src]

The EC2 instance profile ARN that is obtained from the server when the backup is created. Because this value is stored, you are not required to provide the InstanceProfileArn again if you restore a backup.

§
InstanceType?: string | null
[src]

The instance type that is obtained from the server when the backup is created.

§
KeyPair?: string | null
[src]

The key pair that is obtained from the server when the backup is created.

§
PreferredBackupWindow?: string | null
[src]

The preferred backup period that is obtained from the server when the backup is created.

§
PreferredMaintenanceWindow?: string | null
[src]

The preferred maintenance period that is obtained from the server when the backup is created.

§
S3DataSize?: number | null
[src]

This field is deprecated and is no longer used.

§
S3DataUrl?: string | null
[src]

This field is deprecated and is no longer used.

§
S3LogUrl?: string | null
[src]

The Amazon S3 URL of the backup's log file.

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

The security group IDs that are obtained from the server when the backup is created.

§
ServerName?: string | null
[src]

The name of the server from which the backup was made.

§
ServiceRoleArn?: string | null
[src]

The service role ARN that is obtained from the server when the backup is created.

§
Status?: BackupStatus | null
[src]

The status of a backup while in progress.

§
StatusDescription?: string | null
[src]

An informational message about backup status.

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

The subnet IDs that are obtained from the server when the backup is created.

§
ToolsVersion?: string | null
[src]

The version of AWS OpsWorks CM-specific tools that is obtained from the server when the backup is created.

§
UserArn?: string | null
[src]

The IAM user ARN of the requester for manual backups. This field is empty for automated backups.