Class ConnectorVpcAttributes
- java.lang.Object
-
- com.amazonaws.athena.connector.integ.data.ConnectorVpcAttributes
-
public class ConnectorVpcAttributes extends Object
Contains the attributes for the connector's VPC configuration.
-
-
Constructor Summary
Constructors Constructor Description ConnectorVpcAttributes(String vpcId, String securityGroupId, ConnectorVpcSubnetAttributes subnetAttributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getAvailabilityZones()
Public accessor for the VPC Subnets' availability zones (e.g. us-east-1a).List<String>
getPrivateSubnetIds()
Public accessor for the Subnet Ids (e.g. subnet-xxxxx)String
getSecurityGroupId()
Public accessor for the VPC Security Group Id (e.g. sg-xxxx).String
getVpcId()
Public accessor for the VPC's Id.
-
-
-
Constructor Detail
-
ConnectorVpcAttributes
public ConnectorVpcAttributes(String vpcId, String securityGroupId, ConnectorVpcSubnetAttributes subnetAttributes)
-
-
Method Detail
-
getVpcId
public String getVpcId()
Public accessor for the VPC's Id.- Returns:
- VPC's Id
-
getSecurityGroupId
public String getSecurityGroupId()
Public accessor for the VPC Security Group Id (e.g. sg-xxxx).- Returns:
- Security group Id
-
getPrivateSubnetIds
public List<String> getPrivateSubnetIds()
Public accessor for the Subnet Ids (e.g. subnet-xxxxx)- Returns:
- Subnet Ids
-
-