Interface LimitBreach.LimitBreachProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LimitBreach.LimitBreachProps.Jsii$Proxy
- Enclosing class:
LimitBreach
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.ivs.events.*;
LimitBreachProps limitBreachProps = LimitBreachProps.builder()
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.exceededBy(List.of("exceededBy"))
.limit(List.of("limit"))
.limitUnit(List.of("limitUnit"))
.limitValue(List.of("limitValue"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLimitBreach.LimitBreachPropsstatic final classAn implementation forLimitBreach.LimitBreachProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) exceeded_by property.getLimit()(experimental) limit property.(experimental) limit_unit property.(experimental) limit_value property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getExceededBy
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getLimit
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getLimitUnit
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getLimitValue
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-