Skip to content

winterbaume-medialive

MediaLive service implementation for winterbaume.

Coverage

MetricValue
ServiceMediaLive
AWS modelmedialive
ProtocolrestJson1
winterbaume coverage16/123 operations (13.0%)
stubs (routed, returns empty/default)0/123 operations (0.0%)
moto coverage12/123 operations (9.8%)
floci coverage0/123 operations (0.0%)
kumo coverage0/123 operations (0.0%)
Coverage report date2026-05-13

Server-mode usage

Start winterbaume-server and point the AWS CLI at it:

sh
cargo run -p winterbaume-server -- --host 127.0.0.1 --port 5555
sh
export AWS_ENDPOINT_URL=http://localhost:5555
aws medialive list-channels

Current Network Resource Stub Semantics

MediaLive currently has shallow networking placeholders.

  • CreateInputSecurityGroup is a no-state stub that returns a fixed input-security-group-looking ARN and ID with empty or request-shaped rule data.
  • Input records can carry security group IDs and VPC-style nested values in service-local state or snapshot JSON slots.
  • Channels and inputs do not allocate ENIs, attach to subnets, or validate whitelist rules against EC2 networking.
  • The implementation does not consult winterbaume-ec2 state for these identifiers, so it does not check that referenced VPCs, subnets, security groups, VPC endpoints, network interfaces, or load balancers exist, belong to the same VPC, or are in a usable lifecycle state.

Example

rust
use aws_sdk_medialive::config::BehaviorVersion;
use winterbaume_core::MockAws;
use winterbaume_medialive::MediaLiveService;

#[tokio::main]
async fn main() {
    let mock = MockAws::builder()
        .with_service(MediaLiveService::new())
        .build();

    let config = aws_config::defaults(BehaviorVersion::latest())
        .http_client(mock.http_client())
        .credentials_provider(mock.credentials_provider())
        .region(aws_sdk_medialive::config::Region::new("us-east-1"))
        .load()
        .await;

    let client = aws_sdk_medialive::Client::new(&config);

    let resp = client
        .list_channels()
        .send()
        .await
        .expect("list_channels should succeed");
    println!("MediaLive channels: {}", resp.channels().len());
}

Implemented APIs (16)

  • CreateChannel
  • CreateInput
  • CreateInputSecurityGroup
  • CreateTags
  • DeleteChannel
  • DeleteInput
  • DeleteTags
  • DescribeChannel
  • DescribeInput
  • ListChannels
  • ListInputs
  • ListTagsForResource
  • StartChannel
  • StopChannel
  • UpdateChannel
  • UpdateInput
Not yet implemented APIs (107)
  • AcceptInputDeviceTransfer
  • BatchDelete
  • BatchStart
  • BatchStop
  • BatchUpdateSchedule
  • CancelInputDeviceTransfer
  • ClaimDevice
  • CreateChannelPlacementGroup
  • CreateCloudWatchAlarmTemplate
  • CreateCloudWatchAlarmTemplateGroup
  • CreateCluster
  • CreateEventBridgeRuleTemplate
  • CreateEventBridgeRuleTemplateGroup
  • CreateMultiplex
  • CreateMultiplexProgram
  • CreateNetwork
  • CreateNode
  • CreateNodeRegistrationScript
  • CreatePartnerInput
  • CreateSdiSource
  • CreateSignalMap
  • DeleteChannelPlacementGroup
  • DeleteCloudWatchAlarmTemplate
  • DeleteCloudWatchAlarmTemplateGroup
  • DeleteCluster
  • DeleteEventBridgeRuleTemplate
  • DeleteEventBridgeRuleTemplateGroup
  • DeleteInputSecurityGroup
  • DeleteMultiplex
  • DeleteMultiplexProgram
  • DeleteNetwork
  • DeleteNode
  • DeleteReservation
  • DeleteSchedule
  • DeleteSdiSource
  • DeleteSignalMap
  • DescribeAccountConfiguration
  • DescribeChannelPlacementGroup
  • DescribeCluster
  • DescribeInputDevice
  • DescribeInputDeviceThumbnail
  • DescribeInputSecurityGroup
  • DescribeMultiplex
  • DescribeMultiplexProgram
  • DescribeNetwork
  • DescribeNode
  • DescribeOffering
  • DescribeReservation
  • DescribeSchedule
  • DescribeSdiSource
  • DescribeThumbnails
  • GetCloudWatchAlarmTemplate
  • GetCloudWatchAlarmTemplateGroup
  • GetEventBridgeRuleTemplate
  • GetEventBridgeRuleTemplateGroup
  • GetSignalMap
  • ListAlerts
  • ListChannelPlacementGroups
  • ListCloudWatchAlarmTemplateGroups
  • ListCloudWatchAlarmTemplates
  • ListClusterAlerts
  • ListClusters
  • ListEventBridgeRuleTemplateGroups
  • ListEventBridgeRuleTemplates
  • ListInputDeviceTransfers
  • ListInputDevices
  • ListInputSecurityGroups
  • ListMultiplexAlerts
  • ListMultiplexPrograms
  • ListMultiplexes
  • ListNetworks
  • ListNodes
  • ListOfferings
  • ListReservations
  • ListSdiSources
  • ListSignalMaps
  • ListVersions
  • PurchaseOffering
  • RebootInputDevice
  • RejectInputDeviceTransfer
  • RestartChannelPipelines
  • StartDeleteMonitorDeployment
  • StartInputDevice
  • StartInputDeviceMaintenanceWindow
  • StartMonitorDeployment
  • StartMultiplex
  • StartUpdateSignalMap
  • StopInputDevice
  • StopMultiplex
  • TransferInputDevice
  • UpdateAccountConfiguration
  • UpdateChannelClass
  • UpdateChannelPlacementGroup
  • UpdateCloudWatchAlarmTemplate
  • UpdateCloudWatchAlarmTemplateGroup
  • UpdateCluster
  • UpdateEventBridgeRuleTemplate
  • UpdateEventBridgeRuleTemplateGroup
  • UpdateInputDevice
  • UpdateInputSecurityGroup
  • UpdateMultiplex
  • UpdateMultiplexProgram
  • UpdateNetwork
  • UpdateNode
  • UpdateNodeState
  • UpdateReservation
  • UpdateSdiSource

Released under the Apache-2.0 License. This project is not affiliated with or endorsed by Amazon Web Services.