GeofenceCollectionArgs

data class GeofenceCollectionArgs(val collectionName: Output<String>? = null, val description: Output<String>? = null, val kmsKeyId: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<GeofenceCollectionArgs>

Resource for managing an AWS Location Geofence Collection.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.location.GeofenceCollection;
import com.pulumi.aws.location.GeofenceCollectionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new GeofenceCollection("example", GeofenceCollectionArgs.builder()
.collectionName("example")
.build());
}
}

Import

Location Geofence Collection can be imported using the collection_name, e.g.,

$ pulumi import aws:location/geofenceCollection:GeofenceCollection example example

Constructors

Link copied to clipboard
constructor(collectionName: Output<String>? = null, description: Output<String>? = null, kmsKeyId: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val collectionName: Output<String>? = null

The name of the geofence collection. The following arguments are optional:

Link copied to clipboard
val description: Output<String>? = null

The optional description for the geofence collection.

Link copied to clipboard
val kmsKeyId: Output<String>? = null

A key identifier for an AWS KMS customer managed key assigned to the Amazon Location resource.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value tags for the geofence collection. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Functions

Link copied to clipboard
open override fun toJava(): GeofenceCollectionArgs