Class CfnFleet.CertificateConfigurationProperty
Determines whether a TLS/SSL certificate is generated for a fleet.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFleet.CertificateConfigurationProperty : CfnFleet.ICertificateConfigurationProperty
Syntax (vb)
Public Class CfnFleet.CertificateConfigurationProperty Implements CfnFleet.ICertificateConfigurationProperty
Remarks
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
.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GameLift;
var certificateConfigurationProperty = new CertificateConfigurationProperty {
CertificateType = "certificateType"
};
Synopsis
Constructors
CertificateConfigurationProperty() | Determines whether a TLS/SSL certificate is generated for a fleet. |
Properties
CertificateType | Indicates whether a TLS/SSL certificate is generated for a fleet. |
Constructors
CertificateConfigurationProperty()
Determines whether a TLS/SSL certificate is generated for a fleet.
public CertificateConfigurationProperty()
Remarks
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
.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GameLift;
var certificateConfigurationProperty = new CertificateConfigurationProperty {
CertificateType = "certificateType"
};
Properties
CertificateType
Indicates whether a TLS/SSL certificate is generated for a fleet.
public string CertificateType { get; set; }