Example usage for com.amazonaws.services.ec2.model AuthorizeSecurityGroupIngressRequest getGroupName

List of usage examples for com.amazonaws.services.ec2.model AuthorizeSecurityGroupIngressRequest getGroupName

Introduction

In this page you can find the example usage for com.amazonaws.services.ec2.model AuthorizeSecurityGroupIngressRequest getGroupName.

Prototype


public String getGroupName() 

Source Link

Document

[EC2-Classic, default VPC] The name of the security group.

Usage

From source file:org.excalibur.service.aws.ec2.EC2.java

License:Open Source License

protected void authorizeTcpAndSshIngressTraffic(String groupName) {
    LOG.debug("Adding a TCP ingress rule for the security group [{}].", groupName);

    AuthorizeSecurityGroupIngressRequest authorizeSecurityGroupIngressRequest = new AuthorizeSecurityGroupIngressRequest()
            .withFromPort(0).withToPort(65535).withIpProtocol("tcp").withGroupName(groupName)
            .withCidrIp("0.0.0.0/0");

    ec2_.authorizeSecurityGroupIngress(authorizeSecurityGroupIngressRequest);

    LOG.debug(/*www  . ja  va 2 s  . c om*/
            "The following ingress rule was created. Security group [{}], protocol [{}] from port [{}] to port [{}] and "
                    + "CIDR IP address [{}], region [{}]",
            authorizeSecurityGroupIngressRequest.getGroupName(),
            authorizeSecurityGroupIngressRequest.getIpProtocol(),
            authorizeSecurityGroupIngressRequest.getFromPort(),
            authorizeSecurityGroupIngressRequest.getToPort(), authorizeSecurityGroupIngressRequest.getCidrIp(),
            DEFAULT_API_REGION.getName());

    authorizeSecurityGroupIngressRequest.withFromPort(22).withToPort(22);
    ec2_.authorizeSecurityGroupIngress(authorizeSecurityGroupIngressRequest);

}