Interface CfnGeofenceCollectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGeofenceCollectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:12.446Z")
@Stability(Stable)
public interface CfnGeofenceCollectionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGeofenceCollection
.
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.location.*; CfnGeofenceCollectionProps cfnGeofenceCollectionProps = CfnGeofenceCollectionProps.builder() .collectionName("collectionName") // the properties below are optional .description("description") .kmsKeyId("kmsKeyId") .pricingPlan("pricingPlan") .pricingPlanDataSource("pricingPlanDataSource") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGeofenceCollectionProps
static final class
An implementation forCfnGeofenceCollectionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A custom name for the geofence collection.default String
An optional description for the geofence collection.default String
A key identifier for an AWS KMS customer managed key .default String
Deprecated.this property has been deprecateddefault String
Deprecated.this property has been deprecatedgetTags()
Applies one or more tags to the geofence collection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCollectionName
A custom name for the geofence collection.Requirements:
- Contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
- Must be a unique geofence collection name.
- No spaces allowed. For example,
ExampleGeofenceCollection
.
- See Also:
-
getDescription
An optional description for the geofence collection.- See Also:
-
getKmsKeyId
A key identifier for an AWS KMS customer managed key . Enter a key ID, key ARN, alias name, or alias ARN.- See Also:
-
getPricingPlan
Deprecated.this property has been deprecated- See Also:
-
getPricingPlanDataSource
Deprecated.this property has been deprecated(deprecated) This shape is deprecated since 2022-02-01: Deprecated.No longer allowed.
- See Also:
-
getTags
Applies one or more tags to the geofence collection.A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format:
"key" : "value"
Restrictions:
- Maximum 50 tags per resource
- Each resource tag must be unique with a maximum of one value.
- Maximum key length: 128 Unicode characters in UTF-8
- Maximum value length: 256 Unicode characters in UTF-8
- Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : /
- See Also:
-
builder
- Returns:
- a
CfnGeofenceCollectionProps.Builder
ofCfnGeofenceCollectionProps
-