public static interface CfnFleet.LocationConfigurationProperty
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() |
java.lang.String |
getLocation()
An AWS Region code, such as `us-west-2` .
|
default java.lang.Object |
getLocationCapacity()
Current resource capacity settings in a specified fleet or location.
|
java.lang.String getLocation()
default java.lang.Object getLocationCapacity()
The location value might refer to a fleet's remote location or its home Region.
Related actions
DescribeFleetCapacity | DescribeFleetLocationCapacity | UpdateFleetCapacity
static CfnFleet.LocationConfigurationProperty.Builder builder()