Interface StreamStateChange.StreamStateChangeProps

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

@Stability(Experimental) public static interface StreamStateChange.StreamStateChangeProps extends software.amazon.jsii.JsiiSerializable
(experimental) Props type for aws.ivs@StreamStateChange 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.*;
 StreamStateChangeProps streamStateChangeProps = StreamStateChangeProps.builder()
         .channelName(List.of("channelName"))
         .eventMetadata(AWSEventMetadataProps.builder()
                 .region(List.of("region"))
                 .resources(List.of("resources"))
                 .version(List.of("version"))
                 .build())
         .eventName(List.of("eventName"))
         .streamId(List.of("streamId"))
         .build();
 
  • Method Details

    • getChannelName

      @Stability(Experimental) @Nullable default List<String> getChannelName()
      (experimental) channel_name property.

      Specify an array of string values to match this event if the actual value of channel_name 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

    • getEventMetadata

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

      Default: - -

    • getEventName

      @Stability(Experimental) @Nullable default List<String> getEventName()
      (experimental) event_name property.

      Specify an array of string values to match this event if the actual value of event_name 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

    • getStreamId

      @Stability(Experimental) @Nullable default List<String> getStreamId()
      (experimental) stream_id property.

      Specify an array of string values to match this event if the actual value of stream_id 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 StreamStateChange.StreamStateChangeProps.Builder builder()
      Returns:
      a StreamStateChange.StreamStateChangeProps.Builder of StreamStateChange.StreamStateChangeProps