Interface LimitBreach.LimitBreachProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LimitBreach.LimitBreachProps.Jsii$Proxy
Enclosing class:
LimitBreach

@Stability(Experimental) public static interface LimitBreach.LimitBreachProps extends software.amazon.jsii.JsiiSerializable
(experimental) 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 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();
 
  • Method Details

    • getEventMetadata

      @Stability(Experimental) @Nullable default AWSEventMetadataProps getEventMetadata()
      (experimental) EventBridge event metadata.

      Default: - -

    • getExceededBy

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getLimit

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getLimitUnit

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • getLimitValue

      @Stability(Experimental) @Nullable default List<String> 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.Match for more advanced matching options.

      Default: - Do not filter on this field

    • builder

      @Stability(Experimental) static LimitBreach.LimitBreachProps.Builder builder()
      Returns:
      a LimitBreach.LimitBreachProps.Builder of LimitBreach.LimitBreachProps