Interface SecurityDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SecurityDetails.Builder,SecurityDetails>,SdkBuilder<SecurityDetails.Builder,SecurityDetails>,SdkPojo
- Enclosing class:
- SecurityDetails
public static interface SecurityDetails.Builder extends SdkPojo, CopyableBuilder<SecurityDetails.Builder,SecurityDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SecurityDetails.BuilderroleArn(String roleArn)ARN to a role needed for connecting streams to your instances.SecurityDetails.BuildersecurityGroupIds(String... securityGroupIds)The security groups to attach to the elastic network interfaces.SecurityDetails.BuildersecurityGroupIds(Collection<String> securityGroupIds)The security groups to attach to the elastic network interfaces.SecurityDetails.BuildersubnetIds(String... subnetIds)A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.SecurityDetails.BuildersubnetIds(Collection<String> subnetIds)A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
roleArn
SecurityDetails.Builder roleArn(String roleArn)
ARN to a role needed for connecting streams to your instances.
- Parameters:
roleArn- ARN to a role needed for connecting streams to your instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
SecurityDetails.Builder securityGroupIds(Collection<String> securityGroupIds)
The security groups to attach to the elastic network interfaces.
- Parameters:
securityGroupIds- The security groups to attach to the elastic network interfaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
SecurityDetails.Builder securityGroupIds(String... securityGroupIds)
The security groups to attach to the elastic network interfaces.
- Parameters:
securityGroupIds- The security groups to attach to the elastic network interfaces.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
SecurityDetails.Builder subnetIds(Collection<String> subnetIds)
A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.
- Parameters:
subnetIds- A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
SecurityDetails.Builder subnetIds(String... subnetIds)
A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.
- Parameters:
subnetIds- A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-