/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about endpoints.See Also:
AWS
* API Reference
ARN to a role needed for connecting streams to your instances.
*/ inline const Aws::String& GetRoleArn() const{ return m_roleArn; } /** *ARN to a role needed for connecting streams to your instances.
*/ inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; } /** *ARN to a role needed for connecting streams to your instances.
*/ inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; } /** *ARN to a role needed for connecting streams to your instances.
*/ inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); } /** *ARN to a role needed for connecting streams to your instances.
*/ inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); } /** *ARN to a role needed for connecting streams to your instances.
*/ inline SecurityDetails& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;} /** *ARN to a role needed for connecting streams to your instances.
*/ inline SecurityDetails& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;} /** *ARN to a role needed for connecting streams to your instances.
*/ inline SecurityDetails& WithRoleArn(const char* value) { SetRoleArn(value); return *this;} /** *The security groups to attach to the elastic network interfaces.
*/ inline const Aws::VectorThe security groups to attach to the elastic network interfaces.
*/ inline bool SecurityGroupIdsHasBeenSet() const { return m_securityGroupIdsHasBeenSet; } /** *The security groups to attach to the elastic network interfaces.
*/ inline void SetSecurityGroupIds(const Aws::VectorThe security groups to attach to the elastic network interfaces.
*/ inline void SetSecurityGroupIds(Aws::VectorThe security groups to attach to the elastic network interfaces.
*/ inline SecurityDetails& WithSecurityGroupIds(const Aws::VectorThe security groups to attach to the elastic network interfaces.
*/ inline SecurityDetails& WithSecurityGroupIds(Aws::VectorThe security groups to attach to the elastic network interfaces.
*/ inline SecurityDetails& AddSecurityGroupIds(const Aws::String& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** *The security groups to attach to the elastic network interfaces.
*/ inline SecurityDetails& AddSecurityGroupIds(Aws::String&& value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(std::move(value)); return *this; } /** *The security groups to attach to the elastic network interfaces.
*/ inline SecurityDetails& AddSecurityGroupIds(const char* value) { m_securityGroupIdsHasBeenSet = true; m_securityGroupIds.push_back(value); return *this; } /** *A list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline const Aws::VectorA list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; } /** *A list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline void SetSubnetIds(const Aws::VectorA list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline void SetSubnetIds(Aws::VectorA list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline SecurityDetails& WithSubnetIds(const Aws::VectorA list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline SecurityDetails& WithSubnetIds(Aws::VectorA list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline SecurityDetails& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } /** *A list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline SecurityDetails& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; } /** *A list of subnets where AWS Ground Station places elastic network interfaces * to send streams to your instances.
*/ inline SecurityDetails& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; } private: Aws::String m_roleArn; bool m_roleArnHasBeenSet = false; Aws::Vector