/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaLive { namespace Model { /** * The properties for a VPC type input destination.

See Also:

AWS * API Reference

*/ class InputDestinationVpc { public: AWS_MEDIALIVE_API InputDestinationVpc(); AWS_MEDIALIVE_API InputDestinationVpc(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API InputDestinationVpc& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * The availability zone of the Input destination. */ inline const Aws::String& GetAvailabilityZone() const{ return m_availabilityZone; } /** * The availability zone of the Input destination. */ inline bool AvailabilityZoneHasBeenSet() const { return m_availabilityZoneHasBeenSet; } /** * The availability zone of the Input destination. */ inline void SetAvailabilityZone(const Aws::String& value) { m_availabilityZoneHasBeenSet = true; m_availabilityZone = value; } /** * The availability zone of the Input destination. */ inline void SetAvailabilityZone(Aws::String&& value) { m_availabilityZoneHasBeenSet = true; m_availabilityZone = std::move(value); } /** * The availability zone of the Input destination. */ inline void SetAvailabilityZone(const char* value) { m_availabilityZoneHasBeenSet = true; m_availabilityZone.assign(value); } /** * The availability zone of the Input destination. */ inline InputDestinationVpc& WithAvailabilityZone(const Aws::String& value) { SetAvailabilityZone(value); return *this;} /** * The availability zone of the Input destination. */ inline InputDestinationVpc& WithAvailabilityZone(Aws::String&& value) { SetAvailabilityZone(std::move(value)); return *this;} /** * The availability zone of the Input destination. */ inline InputDestinationVpc& WithAvailabilityZone(const char* value) { SetAvailabilityZone(value); return *this;} /** * The network interface ID of the Input destination in the VPC. */ inline const Aws::String& GetNetworkInterfaceId() const{ return m_networkInterfaceId; } /** * The network interface ID of the Input destination in the VPC. */ inline bool NetworkInterfaceIdHasBeenSet() const { return m_networkInterfaceIdHasBeenSet; } /** * The network interface ID of the Input destination in the VPC. */ inline void SetNetworkInterfaceId(const Aws::String& value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId = value; } /** * The network interface ID of the Input destination in the VPC. */ inline void SetNetworkInterfaceId(Aws::String&& value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId = std::move(value); } /** * The network interface ID of the Input destination in the VPC. */ inline void SetNetworkInterfaceId(const char* value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId.assign(value); } /** * The network interface ID of the Input destination in the VPC. */ inline InputDestinationVpc& WithNetworkInterfaceId(const Aws::String& value) { SetNetworkInterfaceId(value); return *this;} /** * The network interface ID of the Input destination in the VPC. */ inline InputDestinationVpc& WithNetworkInterfaceId(Aws::String&& value) { SetNetworkInterfaceId(std::move(value)); return *this;} /** * The network interface ID of the Input destination in the VPC. */ inline InputDestinationVpc& WithNetworkInterfaceId(const char* value) { SetNetworkInterfaceId(value); return *this;} private: Aws::String m_availabilityZone; bool m_availabilityZoneHasBeenSet = false; Aws::String m_networkInterfaceId; bool m_networkInterfaceIdHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws