/* * Copyright 2018-2023 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. */ package com.amazonaws.services.groundstation.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Information about endpoints. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SecurityDetails implements Serializable, Cloneable, StructuredPojo { /** ** ARN to a role needed for connecting streams to your instances. *
*/ private String roleArn; /** ** The security groups to attach to the elastic network interfaces. *
*/ private java.util.List* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances. *
*/ private java.util.List* ARN to a role needed for connecting streams to your instances. *
* * @param roleArn * ARN to a role needed for connecting streams to your instances. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** ** ARN to a role needed for connecting streams to your instances. *
* * @return ARN to a role needed for connecting streams to your instances. */ public String getRoleArn() { return this.roleArn; } /** ** ARN to a role needed for connecting streams to your instances. *
* * @param roleArn * ARN to a role needed for connecting streams to your instances. * @return Returns a reference to this object so that method calls can be chained together. */ public SecurityDetails withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** ** The security groups to attach to the elastic network interfaces. *
* * @return The security groups to attach to the elastic network interfaces. */ public java.util.List* The security groups to attach to the elastic network interfaces. *
* * @param securityGroupIds * The security groups to attach to the elastic network interfaces. */ public void setSecurityGroupIds(java.util.Collection* The security groups to attach to the elastic network interfaces. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you * want to override the existing values. *
* * @param securityGroupIds * The security groups to attach to the elastic network interfaces. * @return Returns a reference to this object so that method calls can be chained together. */ public SecurityDetails withSecurityGroupIds(String... securityGroupIds) { if (this.securityGroupIds == null) { setSecurityGroupIds(new java.util.ArrayList* The security groups to attach to the elastic network interfaces. *
* * @param securityGroupIds * The security groups to attach to the elastic network interfaces. * @return Returns a reference to this object so that method calls can be chained together. */ public SecurityDetails withSecurityGroupIds(java.util.Collection* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances. *
* * @return A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your * instances. */ public java.util.List* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances. *
* * @param subnetIds * A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your * instances. */ public void setSubnetIds(java.util.Collection* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to * override the existing values. *
* * @param subnetIds * A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your * instances. * @return Returns a reference to this object so that method calls can be chained together. */ public SecurityDetails withSubnetIds(String... subnetIds) { if (this.subnetIds == null) { setSubnetIds(new java.util.ArrayList* A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances. *
* * @param subnetIds * A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your * instances. * @return Returns a reference to this object so that method calls can be chained together. */ public SecurityDetails withSubnetIds(java.util.Collection