-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathqldb-helloworld.rs
More file actions
87 lines (72 loc) · 2.44 KB
/
qldb-helloworld.rs
File metadata and controls
87 lines (72 loc) · 2.44 KB
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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::result_large_err)]
use aws_config::meta::region::RegionProviderChain;
use aws_sdk_qldbsession::types::StartSessionRequest;
use aws_sdk_qldbsession::{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 name of the ledger.
#[structopt(short, long)]
ledger: String,
/// Whether to display additional information.
#[structopt(short, long)]
verbose: bool,
}
// Starts a session.
// snippet-start:[qldb.rust.qldb-helloworld]
async fn start(client: &Client, ledger: &str) -> Result<(), Error> {
let result = client
.send_command()
.start_session(
StartSessionRequest::builder()
.ledger_name(ledger)
.build()
.expect("building StartSessionRequest"),
)
.send()
.await?;
println!(
"Session id: {:?}",
result.start_session().unwrap().session_token()
);
Ok(())
}
// snippet-end:[qldb.rust.qldb-helloworld]
/// Creates a low-level Amazon Quantum Ledger Database (Amazon QLDB) session in the Region.
/// # Arguments
///
/// * `-l LEDGER` - The name of the ledger to start a new session against.
/// * `[-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 {
ledger,
region,
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!("OLDB client version: {}", PKG_VERSION);
println!(
"Region: {}",
region_provider.region().await.unwrap().as_ref()
);
println!("Ledger: {}", ledger);
println!();
}
let shared_config = aws_config::from_env().region(region_provider).load().await;
let client = Client::new(&shared_config);
start(&client, &ledger).await
}