本文整理汇总了Java中com.amazonaws.services.ec2.model.StateReason类的典型用法代码示例。如果您正苦于以下问题:Java StateReason类的具体用法?Java StateReason怎么用?Java StateReason使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
StateReason类属于com.amazonaws.services.ec2.model包,在下文中一共展示了StateReason类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: newImageWithStatus
import com.amazonaws.services.ec2.model.StateReason; //导入依赖的package包/类
private Image newImageWithStatus(final String state, final String code,
final String message) {
final StateReason reason = new StateReason();
reason.setCode(code);
reason.setMessage(message);
final Image image = new Image();
image.setState(state);
image.setStateReason(reason);
return image;
}
示例2: getStateReason
import com.amazonaws.services.ec2.model.StateReason; //导入依赖的package包/类
@Override
public StateReason getStateReason() {
return (StateReason) resource.getAttribute("StateReason");
}
示例3: EC2Instance
import com.amazonaws.services.ec2.model.StateReason; //导入依赖的package包/类
public EC2Instance(Instance instance) {
this.id = instance.getInstanceId();
this.type = instance.getInstanceType();
this.lifecycle = instance.getInstanceLifecycle();
this.hypervisor = instance.getHypervisor();
this.az = instance.getPlacement().getAvailabilityZone();
this.group = instance.getPlacement().getGroupName();
this.tenancy = instance.getPlacement().getTenancy();
this.vpc = instance.getVpcId();
this.platform = instance.getPlatform();
this.kernel = instance.getKernelId();
this.key = instance.getKeyName();
this.image = instance.getImageId();
this.privateIP = instance.getPrivateIpAddress();
this.publicIP = instance.getPublicIpAddress();
this.publicHostname = instance.getPublicDnsName();
this.privateHostname = instance.getPrivateDnsName();
this.architecture = instance.getArchitecture();
this.state = instance.getState().getName();
this.ramdisk = instance.getRamdiskId();
this.subnet = instance.getSubnetId();
this.rootDeviceName = instance.getRootDeviceName();
this.rootDeviceType = instance.getRootDeviceType();
this.stateTransitionReason = instance.getStateTransitionReason();
this.spotInstanceRequest = instance.getSpotInstanceRequestId();
this.virtualizationType = instance.getVirtualizationType();
this.sourceDestCheck = instance.getSourceDestCheck();
this.launchTime = new DateTime(instance.getLaunchTime());
if (instance.getIamInstanceProfile() != null) {
this.iamInstanceProfile = instance.getIamInstanceProfile().getArn().toString();
} else {
this.iamInstanceProfile = null;
}
final StateReason stateReason = instance.getStateReason();
if (stateReason != null)
this.stateReason = stateReason.getMessage();
else
this.stateReason = null;
this.securityGroups = new ArrayList<>();
for (GroupIdentifier identifier : instance.getSecurityGroups()) {
this.securityGroups.add(new SecurityGroup(identifier));
}
this.tags = new HashMap<>();
for (Tag tag : instance.getTags()) {
this.tags.put(tag.getKey(), tag.getValue());
}
}
示例4: getStateReason
import com.amazonaws.services.ec2.model.StateReason; //导入依赖的package包/类
/**
* Gets the value of the StateReason attribute. If this resource is not yet
* loaded, a call to {@code load()} is made to retrieve the value of the
* attribute.
*/
StateReason getStateReason();