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

UpdateReplicationJobRequest

import type { UpdateReplicationJobRequest } from "https://aws-api.deno.dev/v0.4/services/sms.ts?docs=full";
interface UpdateReplicationJobRequest {
description?: string | null;
encrypted?: boolean | null;
frequency?: number | null;
kmsKeyId?: string | null;
licenseType?: LicenseType | null;
nextReplicationRunStartTime?: Date | number | null;
numberOfRecentAmisToKeep?: number | null;
replicationJobId: string;
roleName?: string | null;
}

§Properties

§
description?: string | null
[src]

The description of the replication job.

§
encrypted?: boolean | null
[src]

When true, the replication job produces encrypted AMIs. For more information, KmsKeyId.

§
frequency?: number | null
[src]

The time between consecutive replication runs, in hours.

§
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 to be used for the AMI created by a successful replication run.

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

The start time of the next replication run.

§
numberOfRecentAmisToKeep?: number | null
[src]

The maximum number of SMS-created AMIs to retain. The oldest is deleted after the maximum number is reached and a new AMI is created.

§
replicationJobId: string
[src]

The ID of the replication job.

§
roleName?: string | null
[src]

The name of the IAM role to be used by Server Migration Service.