interface LimitBreachProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Events.LimitBreach.LimitBreachProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/events#LimitBreach_LimitBreachProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.events.LimitBreach.LimitBreachProps |
Python | aws_cdk.mixins_preview.aws_ivs.events.LimitBreach.LimitBreachProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ivs ยป events ยป LimitBreach ยป LimitBreachProps |
Props type for aws.ivs@LimitBreach event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ivs_events } from '@aws-cdk/mixins-preview/aws-ivs';
const limitBreachProps: ivs_events.LimitBreach.LimitBreachProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
exceededBy: ['exceededBy'],
limit: ['limit'],
limitUnit: ['limitUnit'],
limitValue: ['limitValue'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| exceeded | string[] | exceeded_by property. |
| limit? | string[] | limit property. |
| limit | string[] | limit_unit property. |
| limit | string[] | limit_value property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
exceededBy?
Type:
string[]
(optional, default: Do not filter on this field)
exceeded_by property.
Specify an array of string values to match this event if the actual value of exceeded_by is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
limit?
Type:
string[]
(optional, default: Do not filter on this field)
limit property.
Specify an array of string values to match this event if the actual value of limit is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
limitUnit?
Type:
string[]
(optional, default: Do not filter on this field)
limit_unit property.
Specify an array of string values to match this event if the actual value of limit_unit is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
limitValue?
Type:
string[]
(optional, default: Do not filter on this field)
limit_value property.
Specify an array of string values to match this event if the actual value of limit_value is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript