Class: Aws::GameLift::Types::CertificateConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::CertificateConfiguration
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Note:
When making an API call, you may pass CertificateConfiguration data as a hash:
{
certificate_type: "DISABLED", # required, accepts DISABLED, GENERATED
}
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_type ⇒ String
Indicates whether a TLS/SSL certificate is generated for a fleet.
Instance Attribute Details
#certificate_type ⇒ String
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.
319 320 321 322 323 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 319 class CertificateConfiguration < Struct.new( :certificate_type) SENSITIVE = [] include Aws::Structure end |