Interface CfnLocationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLocationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:56.903Z")
@Stability(Stable)
public interface CfnLocationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnLocation
.
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.*; CfnLocationProps cfnLocationProps = CfnLocationProps.builder() .locationName("locationName") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLocationProps
static final class
An implementation forCfnLocationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLocationProps.Builder
builder()
The location's name.getTags()
AWS::GameLift::Location.Tags
.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocationName
The location's name. -
getTags
AWS::GameLift::Location.Tags
. -
builder
- Returns:
- a
CfnLocationProps.Builder
ofCfnLocationProps
-