/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace MediaLive { namespace Model { /** * Settings for a private VPC Input. When this property is specified, the input * destination addresses will be created in a VPC rather than with public Internet * addresses. This property requires setting the roleArn property on Input * creation. Not compatible with the inputSecurityGroups property.

See * Also:

AWS * API Reference

*/ class InputVpcRequest { public: AWS_MEDIALIVE_API InputVpcRequest(); AWS_MEDIALIVE_API InputVpcRequest(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API InputVpcRequest& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const; /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline const Aws::Vector& GetSecurityGroupIds() const{ return m_securityGroupIds; } /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline bool SecurityGroupIdsHasBeenSet() const { return m_securityGroupIdsHasBeenSet; } /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline void SetSecurityGroupIds(const Aws::Vector& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds = value; } /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline void SetSecurityGroupIds(Aws::Vector&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds = std::move(value); } /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline InputVpcRequest& WithSecurityGroupIds(const Aws::Vector& value) { SetSecurityGroupIds(value); return *this;} /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline InputVpcRequest& WithSecurityGroupIds(Aws::Vector&& value) { SetSecurityGroupIds(std::move(value)); return *this;} /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline InputVpcRequest& AddSecurityGroupIds(const Aws::String& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline InputVpcRequest& AddSecurityGroupIds(Aws::String&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(std::move(value)); return *this; } /** * A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network * interfaces. Requires subnetIds. If none are specified then the VPC default * security group will be used. */ inline InputVpcRequest& AddSecurityGroupIds(const char* value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline const Aws::Vector& GetSubnetIds() const{ return m_subnetIds; } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline void SetSubnetIds(const Aws::Vector& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = value; } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline void SetSubnetIds(Aws::Vector&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = std::move(value); } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline InputVpcRequest& WithSubnetIds(const Aws::Vector& value) { SetSubnetIds(value); return *this;} /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline InputVpcRequest& WithSubnetIds(Aws::Vector&& value) { SetSubnetIds(std::move(value)); return *this;} /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline InputVpcRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline InputVpcRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** * A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two * unique availability zones (AZ). */ inline InputVpcRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } private: Aws::Vector m_securityGroupIds; bool m_securityGroupIdsHasBeenSet = false; Aws::Vector m_subnetIds; bool m_subnetIdsHasBeenSet = false; }; } // namespace Model } // namespace MediaLive } // namespace Aws