interface CertificateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLift.Mixins.CfnFleetPropsMixin.CertificateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgamelift/mixins#CfnFleetPropsMixin_CertificateConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.gamelift.mixins.CfnFleetPropsMixin.CertificateConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_gamelift.mixins.CfnFleetPropsMixin.CertificateConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gamelift » mixins » 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 { mixins as gamelift_mixins } from '@aws-cdk/mixins-preview/aws-gamelift';
const certificateConfigurationProperty: gamelift_mixins.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