当前位置: 首页>>代码示例>>Java>>正文


Java RevokeSecurityGroupEgressRequest类代码示例

本文整理汇总了Java中com.amazonaws.services.ec2.model.RevokeSecurityGroupEgressRequest的典型用法代码示例。如果您正苦于以下问题:Java RevokeSecurityGroupEgressRequest类的具体用法?Java RevokeSecurityGroupEgressRequest怎么用?Java RevokeSecurityGroupEgressRequest使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


RevokeSecurityGroupEgressRequest类属于com.amazonaws.services.ec2.model包,在下文中一共展示了RevokeSecurityGroupEgressRequest类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: removeEgressRules

import com.amazonaws.services.ec2.model.RevokeSecurityGroupEgressRequest; //导入依赖的package包/类
public DeferredResult<Void> removeEgressRules(String groupId, List<IpPermission> rules) {
    if (CollectionUtils.isNotEmpty(rules)) {
        RevokeSecurityGroupEgressRequest req = new RevokeSecurityGroupEgressRequest()
                .withGroupId(groupId).withIpPermissions(rules);

        String message = "Remove Egress Rules from AWS Security Group with id [" + groupId +
                "].";

        AWSDeferredResultAsyncHandler<RevokeSecurityGroupEgressRequest,
                RevokeSecurityGroupEgressResult>
                handler = new AWSDeferredResultAsyncHandler<RevokeSecurityGroupEgressRequest,
                RevokeSecurityGroupEgressResult>(this.service, message) {

                    @Override
                    protected Exception consumeError(Exception e) {
                        if (e instanceof AmazonEC2Exception &&
                                ((AmazonEC2Exception)e).getErrorCode().equals
                                        (SECURITY_GROUP_RULE_NOT_FOUND)) {
                            Utils.log(AWSUtils.class, AWSUtils.class.getSimpleName(),
                                    Level.WARNING, () -> String
                                            .format("Egress rules cannot be removed because "
                                                    + "they do not exist: %s",
                                                    Utils.toString(e)));
                            return null;
                        } else {
                            return e;
                        }
                    }
                };
        this.client.revokeSecurityGroupEgressAsync(req, handler);
        return handler.toDeferredResult()
                .thenApply(r -> (Void)null);
    } else {
        return DeferredResult.completed(null);
    }
}
 
开发者ID:vmware,项目名称:photon-model,代码行数:37,代码来源:AWSSecurityGroupClient.java

示例2: revokeSecurityGroupEgress

import com.amazonaws.services.ec2.model.RevokeSecurityGroupEgressRequest; //导入依赖的package包/类
@Override
public void revokeSecurityGroupEgress(RevokeSecurityGroupEgressRequest revokeSecurityGroupEgressRequest) throws AmazonServiceException, AmazonClientException {
    throw new UnsupportedOperationException("Not supported in mock");
}
 
开发者ID:justor,项目名称:elasticsearch_my,代码行数:5,代码来源:AmazonEC2Mock.java

示例3: revokeEgress

import com.amazonaws.services.ec2.model.RevokeSecurityGroupEgressRequest; //导入依赖的package包/类
@Override
public void revokeEgress(RevokeSecurityGroupEgressRequest request) {
    revokeEgress(request, null);
}
 
开发者ID:awslabs,项目名称:aws-sdk-java-resources,代码行数:5,代码来源:SecurityGroupImpl.java

示例4: revokeEgress

import com.amazonaws.services.ec2.model.RevokeSecurityGroupEgressRequest; //导入依赖的package包/类
/**
 * Performs the <code>RevokeEgress</code> action.
 *
 * <p>
 * The following request parameters will be populated from the data of this
 * <code>SecurityGroup</code> resource, and any conflicting parameter value
 * set in the request will be overridden:
 * <ul>
 *   <li>
 *     <b><code>GroupId</code></b>
 *         - mapped from the <code>Id</code> identifier.
 *   </li>
 * </ul>
 *
 * <p>
 *
 * @see RevokeSecurityGroupEgressRequest
 */
void revokeEgress(RevokeSecurityGroupEgressRequest request);
 
开发者ID:awslabs,项目名称:aws-sdk-java-resources,代码行数:20,代码来源:SecurityGroup.java


注:本文中的com.amazonaws.services.ec2.model.RevokeSecurityGroupEgressRequest类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。