interface PeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventTriggerPropsMixin.PeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventTriggerPropsMixin_PeriodProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventTriggerPropsMixin.PeriodProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventTriggerPropsMixin.PeriodProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnEventTriggerPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const periodProperty: customerprofiles_mixins.CfnEventTriggerPropsMixin.PeriodProperty = {
maxInvocationsPerProfile: 123,
unit: 'unit',
unlimited: false,
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum allowed number of destination invocations per profile. |
| unit? | string | The unit of time. |
| unlimited? | boolean | IResolvable | If set to true, there is no limit on the number of destination invocations per profile. |
| value? | number | The amount of time of the specified unit. |
maxInvocationsPerProfile?
Type:
number
(optional)
The maximum allowed number of destination invocations per profile.
unit?
Type:
string
(optional)
The unit of time.
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.
value?
Type:
number
(optional)
The amount of time of the specified unit.

.NET
Go
Java
Python
TypeScript