/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the medialive-2017-10-14.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.MediaLive.Model { /// /// Placeholder documentation for InputAttachment /// public partial class InputAttachment { private AutomaticInputFailoverSettings _automaticInputFailoverSettings; private string _inputAttachmentName; private string _inputId; private InputSettings _inputSettings; /// /// Gets and sets the property AutomaticInputFailoverSettings. User-specified settings /// for defining what the conditions are for declaring the input unhealthy and failing /// over to a different input. /// public AutomaticInputFailoverSettings AutomaticInputFailoverSettings { get { return this._automaticInputFailoverSettings; } set { this._automaticInputFailoverSettings = value; } } // Check to see if AutomaticInputFailoverSettings property is set internal bool IsSetAutomaticInputFailoverSettings() { return this._automaticInputFailoverSettings != null; } /// /// Gets and sets the property InputAttachmentName. User-specified name for the attachment. /// This is required if the user wants to use this input in an input switch action. /// public string InputAttachmentName { get { return this._inputAttachmentName; } set { this._inputAttachmentName = value; } } // Check to see if InputAttachmentName property is set internal bool IsSetInputAttachmentName() { return this._inputAttachmentName != null; } /// /// Gets and sets the property InputId. The ID of the input /// public string InputId { get { return this._inputId; } set { this._inputId = value; } } // Check to see if InputId property is set internal bool IsSetInputId() { return this._inputId != null; } /// /// Gets and sets the property InputSettings. Settings of an input (caption selector, /// etc.) /// public InputSettings InputSettings { get { return this._inputSettings; } set { this._inputSettings = value; } } // Check to see if InputSettings property is set internal bool IsSetInputSettings() { return this._inputSettings != null; } } }