interface CertificateConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.GameLift.CfnFleet.CertificateConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsgamelift#CfnFleet_CertificateConfigurationProperty |
![]() | software.amazon.awscdk.services.gamelift.CfnFleet.CertificateConfigurationProperty |
![]() | aws_cdk.aws_gamelift.CfnFleet.CertificateConfigurationProperty |
![]() | 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
Name | Type | Description |
---|---|---|
certificate | string | Indicates 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.