interface CfnGeofenceCollectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Location.Mixins.CfnGeofenceCollectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslocation/mixins#CfnGeofenceCollectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.location.mixins.CfnGeofenceCollectionMixinProps |
Python | aws_cdk.mixins_preview.aws_location.mixins.CfnGeofenceCollectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_location » mixins » CfnGeofenceCollectionMixinProps |
Properties for CfnGeofenceCollectionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as location_mixins } from '@aws-cdk/mixins-preview/aws-location';
const cfnGeofenceCollectionMixinProps: location_mixins.CfnGeofenceCollectionMixinProps = {
collectionName: 'collectionName',
description: 'description',
kmsKeyId: 'kmsKeyId',
pricingPlan: 'pricingPlan',
pricingPlanDataSource: 'pricingPlanDataSource',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | A custom name for the geofence collection. |
| description? | string | An optional description for the geofence collection. |
| kms | string | A key identifier for an AWS KMS customer managed key . Enter a key ID, key ARN, alias name, or alias ARN. |
| pricing | string | |
| pricing | string | This shape is deprecated since 2022-02-01: Deprecated. |
| tags? | Cfn[] | Applies one or more tags to the geofence collection. |
collectionName?
Type:
string
(optional)
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.
description?
Type:
string
(optional)
An optional description for the geofence collection.
kmsKeyId?
Type:
string
(optional)
A key identifier for an AWS KMS customer managed key . Enter a key ID, key ARN, alias name, or alias ARN.
pricingPlan?
⚠️ Deprecated: this property has been deprecated
Type:
string
(optional)
pricingPlanDataSource?
⚠️ Deprecated: this property has been deprecated
Type:
string
(optional)
This shape is deprecated since 2022-02-01: Deprecated.
No longer allowed.
tags?
Type:
Cfn[]
(optional)
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: + - = . _ : /

.NET
Go
Java
Python
TypeScript