interface PeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnEventTrigger.PeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnEventTrigger_PeriodProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnEventTrigger.PeriodProperty |
Python | aws_cdk.aws_customerprofiles.CfnEventTrigger.PeriodProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnEventTrigger » PeriodProperty |
Defines a limit and the time period during which it is enforced.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const periodProperty: customerprofiles.CfnEventTrigger.PeriodProperty = {
unit: 'unit',
value: 123,
// the properties below are optional
maxInvocationsPerProfile: 123,
unlimited: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit | string | The unit of time. |
| value | number | The amount of time of the specified unit. |
| max | number | The maximum allowed number of destination invocations per profile. |
| unlimited? | boolean | IResolvable | If set to true, there is no limit on the number of destination invocations per profile. |
unit
Type:
string
The unit of time.
value
Type:
number
The amount of time of the specified unit.
maxInvocationsPerProfile?
Type:
number
(optional)
The maximum allowed number of destination invocations per profile.
unlimited?
Type:
boolean | IResolvable
(optional)
If set to true, there is no limit on the number of destination invocations per profile.
The default is false.

.NET
Go
Java
Python
TypeScript