aws_types/
endpoint_config.rs
1use aws_smithy_types::config_bag::{Storable, StoreReplace};
11
12#[derive(Clone, Debug)]
14pub struct UseFips(pub bool);
15impl Storable for UseFips {
16 type Storer = StoreReplace<UseFips>;
17}
18
19#[derive(Clone, Debug)]
21pub struct UseDualStack(pub bool);
22impl Storable for UseDualStack {
23 type Storer = StoreReplace<UseDualStack>;
24}
25
26#[derive(Clone, Debug)]
28pub struct EndpointUrl(pub String);
29impl Storable for EndpointUrl {
30 type Storer = StoreReplace<EndpointUrl>;
31}