Skip to main content

Replacestreamconfigurationrequest

Properties

NameTypeDescriptionNotes
StreamIdStringID of the stream to replace.[required]
DeliveryReplacestreamconfigurationrequestDelivery[required]
EventsRequested[]StringEvent types the receiver wants. Use CAEP event-type URIs.[optional]
DescriptionStringOptional human-readable description of the stream.[optional]

Examples

  • Prepare the resource
$Replacestreamconfigurationrequest = Initialize-Replacestreamconfigurationrequest  -StreamId 550e8400-e29b-41d4-a716-446655440000 `
-Delivery null `
-EventsRequested ["https://schemas.openid.net/secevent/caep/event-type/session-revoked"] `
-Description Production event stream
  • Convert the resource to JSON
$Replacestreamconfigurationrequest | ConvertTo-JSON

[Back to top]