@Stability(value=Stable)
public static interface CfnFleet.LocationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Related actions
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.gamelift.*;
LocationConfigurationProperty locationConfigurationProperty = LocationConfigurationProperty.builder()
.location("location")
// the properties below are optional
.locationCapacity(LocationCapacityProperty.builder()
.desiredEc2Instances(123)
.maxSize(123)
.minSize(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFleet.LocationConfigurationProperty.Builder
A builder for
CfnFleet.LocationConfigurationProperty |
static class |
CfnFleet.LocationConfigurationProperty.Jsii$Proxy
An implementation for
CfnFleet.LocationConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFleet.LocationConfigurationProperty.Builder |
builder() |
String |
getLocation()
An AWS Region code, such as `us-west-2` .
|
default Object |
getLocationCapacity()
Current resource capacity settings in a specified fleet or location.
|
@Stability(value=Stable) @NotNull String getLocation()
@Stability(value=Stable) @Nullable default Object getLocationCapacity()
The location value might refer to a fleet's remote location or its home Region.
Related actions
DescribeFleetCapacity | DescribeFleetLocationCapacity | UpdateFleetCapacity
@Stability(value=Stable) static CfnFleet.LocationConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.