Interface CfnLocationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLocationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-10-26T00:56:08.485Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationPropsstatic final classAn implementation forCfnLocationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLocationProps.Builderbuilder()The location's name.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocationName
The location's name.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnLocationProps.BuilderofCfnLocationProps
-