java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.gamelift.CfnFleetPropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-31T09:54:46.250Z") @Stability(Stable) public class CfnFleetPropsMixin extends Mixin implements software.constructs.IMixin
The AWS::GameLift::Fleet resource creates an Amazon GameLift (GameLift) fleet to host custom game server or Realtime Servers.

A fleet is a set of EC2 instances, configured with instructions to run game servers on each instance.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.gamelift.*;
 import software.amazon.awscdk.*;
 IMergeStrategy mergeStrategy;
 CfnFleetPropsMixin cfnFleetPropsMixin = CfnFleetPropsMixin.Builder.create(CfnFleetMixinProps.builder()
         .anywhereConfiguration(AnywhereConfigurationProperty.builder()
                 .cost("cost")
                 .build())
         .applyCapacity("applyCapacity")
         .buildId("buildId")
         .certificateConfiguration(CertificateConfigurationProperty.builder()
                 .certificateType("certificateType")
                 .build())
         .computeType("computeType")
         .description("description")
         .desiredEc2Instances(123)
         .ec2InboundPermissions(List.of(IpPermissionProperty.builder()
                 .fromPort(123)
                 .ipRange("ipRange")
                 .protocol("protocol")
                 .toPort(123)
                 .build()))
         .ec2InstanceType("ec2InstanceType")
         .fleetType("fleetType")
         .instanceRoleArn("instanceRoleArn")
         .instanceRoleCredentialsProvider("instanceRoleCredentialsProvider")
         .locations(List.of(LocationConfigurationProperty.builder()
                 .location("location")
                 .locationCapacity(LocationCapacityProperty.builder()
                         .desiredEc2Instances(123)
                         .managedCapacityConfiguration(ManagedCapacityConfigurationProperty.builder()
                                 .scaleInAfterInactivityMinutes(123)
                                 .zeroCapacityStrategy("zeroCapacityStrategy")
                                 .build())
                         .maxSize(123)
                         .minSize(123)
                         .build())
                 .playerGatewayStatus("playerGatewayStatus")
                 .build()))
         .logPaths(List.of("logPaths"))
         .maxSize(123)
         .metricGroups(List.of("metricGroups"))
         .minSize(123)
         .name("name")
         .newGameSessionProtectionPolicy("newGameSessionProtectionPolicy")
         .peerVpcAwsAccountId("peerVpcAwsAccountId")
         .peerVpcId("peerVpcId")
         .playerGatewayConfiguration(PlayerGatewayConfigurationProperty.builder()
                 .gameServerIpProtocolSupported("gameServerIpProtocolSupported")
                 .build())
         .playerGatewayMode("playerGatewayMode")
         .resourceCreationLimitPolicy(ResourceCreationLimitPolicyProperty.builder()
                 .newGameSessionsPerCreator(123)
                 .policyPeriodInMinutes(123)
                 .build())
         .runtimeConfiguration(RuntimeConfigurationProperty.builder()
                 .gameSessionActivationTimeoutSeconds(123)
                 .maxConcurrentGameSessionActivations(123)
                 .serverProcesses(List.of(ServerProcessProperty.builder()
                         .concurrentExecutions(123)
                         .launchPath("launchPath")
                         .parameters("parameters")
                         .build()))
                 .build())
         .scalingPolicies(List.of(ScalingPolicyProperty.builder()
                 .comparisonOperator("comparisonOperator")
                 .evaluationPeriods(123)
                 .location("location")
                 .metricName("metricName")
                 .name("name")
                 .policyType("policyType")
                 .scalingAdjustment(123)
                 .scalingAdjustmentType("scalingAdjustmentType")
                 .status("status")
                 .targetConfiguration(TargetConfigurationProperty.builder()
                         .targetValue(123)
                         .build())
                 .threshold(123)
                 .updateStatus("updateStatus")
                 .build()))
         .scriptId("scriptId")
         .serverLaunchParameters("serverLaunchParameters")
         .serverLaunchPath("serverLaunchPath")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnFleetPropsMixin

      protected CfnFleetPropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnFleetPropsMixin

      protected CfnFleetPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnFleetPropsMixin

      @Stability(Stable) public CfnFleetPropsMixin(@NotNull CfnFleetMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::GameLift::Fleet.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnFleetPropsMixin

      @Stability(Stable) public CfnFleetPropsMixin(@NotNull CfnFleetMixinProps props)
      Create a mixin to apply properties to AWS::GameLift::Fleet.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnFleetMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()