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

ServerReplicationParameters

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

The replication parameters for replicating a server.

interface ServerReplicationParameters {
encrypted?: boolean | null;
frequency?: number | null;
kmsKeyId?: string | null;
licenseType?: LicenseType | null;
numberOfRecentAmisToKeep?: number | null;
runOnce?: boolean | null;
seedTime?: Date | number | null;
}

§Properties

§
encrypted?: boolean | null
[src]

Indicates whether the replication job produces encrypted AMIs.

§
frequency?: number | null
[src]

The frequency of creating replication jobs for the server.

§
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 enabled but a KMS key ID is not specified, the customer's default KMS key for Amazon EBS is used.

§
licenseType?: LicenseType | null
[src]

The license type for creating a replication job for the server.

§
numberOfRecentAmisToKeep?: number | null
[src]

The number of recent AMIs to keep when creating a replication job for this server.

§
runOnce?: boolean | null
[src]

Indicates whether to run the replication job one time.

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

The seed time for creating a replication job for the server.