Interface StreamStateChange.StreamStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
StreamStateChange.StreamStateChangeProps.Jsii$Proxy
- Enclosing class:
StreamStateChange
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forStreamStateChange.StreamStateChangePropsstatic final classAn implementation forStreamStateChange.StreamStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) channel_name property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) event_name property.(experimental) stream_id property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-