Interface CfnLocationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLocationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:43.992Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLocationProps
static final class
An implementation forCfnLocationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnLocationProps.Builder
builder()
A descriptive name for the custom location.getTags()
A list of labels to assign to the new resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocationName
A descriptive name for the custom location.- See Also:
-
getTags
A list of labels to assign to the new resource.Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management, and cost allocation. For more information, see Tagging AWS Resources in the AWS General Rareference .
- See Also:
-
builder
- Returns:
- a
CfnLocationProps.Builder
ofCfnLocationProps
-