本文整理了Java中com.amazonaws.services.ec2.model.Instance.setPublicIpAddress()
方法的一些代码示例,展示了Instance.setPublicIpAddress()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Instance.setPublicIpAddress()
方法的具体详情如下:
包路径:com.amazonaws.services.ec2.model.Instance
类名称:Instance
方法名:setPublicIpAddress
[英]The public IPv4 address assigned to the instance, if applicable.
[中]分配给实例的公共IPv4地址(如果适用)。
代码示例来源:origin: aws/aws-sdk-java
/**
* <p>
* The public IPv4 address assigned to the instance, if applicable.
* </p>
*
* @param publicIpAddress
* The public IPv4 address assigned to the instance, if applicable.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Instance withPublicIpAddress(String publicIpAddress) {
setPublicIpAddress(publicIpAddress);
return this;
}
代码示例来源:origin: aws/aws-sdk-java
instance.setPublicIpAddress(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
代码示例来源:origin: com.amazonaws/aws-java-sdk-ec2
/**
* <p>
* The public IPv4 address assigned to the instance, if applicable.
* </p>
*
* @param publicIpAddress
* The public IPv4 address assigned to the instance, if applicable.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Instance withPublicIpAddress(String publicIpAddress) {
setPublicIpAddress(publicIpAddress);
return this;
}
代码示例来源:origin: aws-amplify/aws-sdk-android
instance.setPublicIpAddress(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
代码示例来源:origin: com.amazonaws/aws-java-sdk-ec2
instance.setPublicIpAddress(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
内容来源于网络,如有侵权,请联系作者删除!