-
Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy pathreboot-instance.rs
90 lines (74 loc) · 2.56 KB
/
reboot-instance.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::result_large_err)]
use std::time::Duration;
use aws_config::meta::region::RegionProviderChain;
use aws_sdk_ec2::{client::Waiters, config::Region, meta::PKG_VERSION, Client, Error};
use clap::Parser;
#[derive(Debug, Parser)]
struct Opt {
/// The AWS Region.
#[structopt(short, long)]
region: Option<String>,
/// The ID of the instance to reboot.
#[structopt(short, long)]
instance_id: String,
/// Whether to display additional information.
#[structopt(short, long)]
verbose: bool,
}
// Reboots an instance.
// snippet-start:[ec2.rust.reboot-instance]
async fn reboot_instance(client: &Client, id: &str) -> Result<(), Error> {
println!("Rebooting instance.");
client.reboot_instances().instance_ids(id).send().await?;
client
.wait_until_instance_stopped()
.instance_ids(id)
.wait(Duration::from_secs(60))
.await?;
let wait_status_ok = client
.wait_until_instance_status_ok()
.instance_ids(id)
.wait(Duration::from_secs(60))
.await;
match wait_status_ok {
Ok(_) => println!("Rebooted instance {id}, it is started with status OK."),
Err(err) => return Err(err.into()),
}
Ok(())
}
// snippet-end:[ec2.rust.reboot-instance]
/// Reboots an Amazon EC2 instance.
/// # Arguments
///
/// * `-i INSTANCE-ID` - The ID of the instances to reboot.
/// * `[-r REGION]` - The Region in which the client is created.
/// If not supplied, uses the value of the **AWS_REGION** environment variable.
/// If the environment variable is not set, defaults to **us-west-2**.
/// * `[-v]` - Whether to display additional information.
#[tokio::main]
async fn main() -> Result<(), Error> {
tracing_subscriber::fmt::init();
let Opt {
region,
instance_id,
verbose,
} = Opt::parse();
let region_provider = RegionProviderChain::first_try(region.map(Region::new))
.or_default_provider()
.or_else(Region::new("us-west-2"));
println!();
if verbose {
println!("EC2 client version: {}", PKG_VERSION);
println!(
"Region: {}",
region_provider.region().await.unwrap().as_ref()
);
println!("Instance ID: {}", instance_id);
println!();
}
let shared_config = aws_config::from_env().region(region_provider).load().await;
let client = Client::new(&shared_config);
reboot_instance(&client, &instance_id).await
}