Class: Aws::MediaPackageV2::Types::ForceEndpointErrorConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageV2::Types::ForceEndpointErrorConfiguration
- Defined in:
- gems/aws-sdk-mediapackagev2/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.
1783 1784 1785 1786 1787 |
# File 'gems/aws-sdk-mediapackagev2/lib/aws-sdk-mediapackagev2/types.rb', line 1783 class ForceEndpointErrorConfiguration < Struct.new( :endpoint_error_conditions) SENSITIVE = [] include Aws::Structure end |