Interface CfnFleet.CertificateConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleet.CertificateConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFleet
@Stability(Stable)
public static interface CfnFleet.CertificateConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.gamelift.*; CertificateConfigurationProperty certificateConfigurationProperty = CertificateConfigurationProperty.builder() .certificateType("certificateType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleet.CertificateConfigurationProperty
static final class
An implementation forCfnFleet.CertificateConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Indicates whether a TLS/SSL certificate is generated for a fleet.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateType
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.
- See Also:
-
builder
-