-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.zig
49 lines (33 loc) · 1.27 KB
/
config.zig
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
const smithy = @import("smithy/codegen").config;
/// Name of the allocator identifier
pub const alloc_param = smithy.alloc_param;
/// Name of the stack allocator identifier
pub const scratch_alloc = smithy.scratch_alloc;
/// Name of the operation output arena identifier
pub const output_arena = "output_arena";
/// Endpoint configuration type name
pub const endpoint_config_type = smithy.endpoint_config_type;
/// Service client type name
pub const service_client_type = smithy.service_client_type;
/// Smithy runtime scope
pub const scope_smithy = smithy.runtime_scope;
/// Endpoint scope
pub const endpoint_scope = smithy.endpoint_scope;
/// Endpoint scope filename
pub const endpoint_filename = smithy.endpoint_filename;
/// Public SDK runtime scope
pub const scope_runtime = "aws_runtime";
/// Private SDK runtime scope
pub const scope_private = "aws_private";
/// SDK auth schemes scope
pub const scope_auth = "aws_auth";
/// SDK http protocols scope
pub const scope_protocol = "aws_protocol";
/// Operation parameter identifier
pub const send_op_param = "operation";
/// Input parameter identifier
pub const send_input_param = "input";
/// Meta parameter identifier
pub const send_meta_param = "meta";
/// Endpoint parameter identifier
pub const send_endpoint_param = "endpoint";