interface CertificateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GameLift.CfnFleetPropsMixin.CertificateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgamelift#CfnFleetPropsMixin_CertificateConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.gamelift.CfnFleetPropsMixin.CertificateConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_gamelift.CfnFleetPropsMixin.CertificateConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_gamelift » CfnFleetPropsMixin » 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/cfn-property-mixins';
const certificateConfigurationProperty: gamelift.CfnFleetPropsMixin.CertificateConfigurationProperty = {
certificateType: 'certificateType',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | Indicates whether a TLS/SSL certificate is generated for a fleet. |
certificateType?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript