Class: Aws::MediaPackageV2::Types::ForceEndpointErrorConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageV2::Types::ForceEndpointErrorConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediapackagev2/types.rb
Overview
The failover settings for the endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#endpoint_error_conditions ⇒ Array<String>
The failover conditions for the endpoint.
Instance Attribute Details
#endpoint_error_conditions ⇒ Array<String>
The failover conditions for the endpoint. The options are:
-
‘STALE_MANIFEST` - The manifest stalled and there are no new segments or parts.
-
‘INCOMPLETE_MANIFEST` - There is a gap in the manifest.
-
‘MISSING_DRM_KEY` - Key rotation is enabled but we’re unable to fetch the key for the current key period.
-
‘SLATE_INPUT` - The segments which contain slate content are considered to be missing content.
1405 1406 1407 1408 1409 |
# File 'lib/aws-sdk-mediapackagev2/types.rb', line 1405 class ForceEndpointErrorConfiguration < Struct.new( :endpoint_error_conditions) SENSITIVE = [] include Aws::Structure end |