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

ReplicationRun

import type { ReplicationRun } from "https://aws-api.deno.dev/v0.4/services/sms.ts?docs=full";

Represents a replication run.

interface ReplicationRun {
amiId?: string | null;
completedTime?: Date | number | null;
description?: string | null;
encrypted?: boolean | null;
kmsKeyId?: string | null;
replicationRunId?: string | null;
scheduledStartTime?: Date | number | null;
stageDetails?: ReplicationRunStageDetails | null;
state?: ReplicationRunState | null;
statusMessage?: string | null;
type?: ReplicationRunType | null;
}

§Properties

§
amiId?: string | null
[src]

The ID of the Amazon Machine Image (AMI) from the replication run.

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

The completion time of the last replication run.

§
description?: string | null
[src]

The description of the replication run.

§
encrypted?: boolean | null
[src]

Indicates whether the replication run should produce an encrypted AMI.

§
kmsKeyId?: string | null
[src]

The ID of the KMS key for replication jobs that produce encrypted AMIs. This value can be any of the following:

  • KMS key ID
  • KMS key alias
  • ARN referring to the KMS key ID
  • ARN referring to the KMS key alias

If encrypted is true but a KMS key ID is not specified, the customer's default KMS key for Amazon EBS is used.

§
replicationRunId?: string | null
[src]

The ID of the replication run.

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

The start time of the next replication run.

§
stageDetails?: ReplicationRunStageDetails | null
[src]

Details about the current stage of the replication run.

§

The state of the replication run.

§
statusMessage?: string | null
[src]

The description of the current status of the replication job.

§

The type of replication run.