interface ForceEndpointErrorConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.aws_mediapackagev2.CfnOriginEndpoint.ForceEndpointErrorConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_ForceEndpointErrorConfigurationProperty | 
  Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.ForceEndpointErrorConfigurationProperty | 
  Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.ForceEndpointErrorConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » ForceEndpointErrorConfigurationProperty | 
The failover settings for the endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const forceEndpointErrorConfigurationProperty: mediapackagev2.CfnOriginEndpoint.ForceEndpointErrorConfigurationProperty = {
  endpointErrorConditions: ['endpointErrorConditions'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| endpoint | string[] | The failover conditions for the endpoint. The options are:. | 
endpointErrorConditions?
Type:
string[]
(optional)
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.

 .NET
 Go
 Java
 Python
 TypeScript