Class: Aws::GameLift::Types::CertificateConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

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 [Amazon GameLift Server SDK] operation ‘GetInstanceCertificate`.

[1]: docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_typeString

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.

Returns:

  • (String)


328
329
330
331
332
# File 'lib/aws-sdk-gamelift/types.rb', line 328

class CertificateConfiguration < Struct.new(
  :certificate_type)
  SENSITIVE = []
  include Aws::Structure
end