interface PeriodProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnEventTriggerPropsMixin.PeriodProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnEventTriggerPropsMixin_PeriodProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnEventTriggerPropsMixin.PeriodProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnEventTriggerPropsMixin.PeriodProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » 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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const periodProperty: customerprofiles.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