aws-cdk-lib.aws_gamelift.CfnFleet.CertificateConfigurationProperty

interface CertificateConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.GameLift.CfnFleet.CertificateConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnFleet_CertificateConfigurationProperty
Javasoftware.amazon.awscdk.services.gamelift.CfnFleet.CertificateConfigurationProperty
Pythonaws_cdk.aws_gamelift.CfnFleet.CertificateConfigurationProperty
TypeScript aws-cdk-lib » aws_gamelift » CfnFleet » CertificateConfigurationProperty

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 { aws_gamelift as gamelift } from 'aws-cdk-lib';
const certificateConfigurationProperty: gamelift.CfnFleet.CertificateConfigurationProperty = {
  certificateType: 'certificateType',
};

Properties

NameTypeDescription
certificateTypestringIndicates whether a TLS/SSL certificate is generated for a fleet.

certificateType

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.