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

CertificateConfiguration

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

Determines whether a TLS/SSL certificate is generated for a fleet. This feature must be enabled when creating the fleet. All instances in a fleet share the same certificate. The certificate can be retrieved by calling the GameLift Server SDK operation GetInstanceCertificate.

A fleet's certificate configuration is part of "FleetAttributes".

interface CertificateConfiguration {
CertificateType: CertificateType;
}

§Properties

§
CertificateType: CertificateType
[src]

Indicates whether a TLS/SSL certificate is generated for a fleet.

Valid values include:

  • GENERATED - Generate a TLS/SSL certificate for this fleet.
  • DISABLED - (default) Do not generate a TLS/SSL certificate for this fleet.