...
1syntax = "proto3";
2
3package envoy.config.grpc_credential.v2alpha;
4
5import "udpa/annotations/status.proto";
6import "validate/validate.proto";
7
8option java_package = "io.envoyproxy.envoy.config.grpc_credential.v2alpha";
9option java_outer_classname = "AwsIamProto";
10option java_multiple_files = true;
11option (udpa.annotations.file_status).package_version_status = FROZEN;
12
13// [#protodoc-title: Grpc Credentials AWS IAM]
14// Configuration for AWS IAM Grpc Credentials Plugin
15// [#extension: envoy.grpc_credentials.aws_iam]
16
17message AwsIamConfig {
18 // The `service namespace
19 // <https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#genref-aws-service-namespaces>`_
20 // of the Grpc endpoint.
21 //
22 // Example: appmesh
23 string service_name = 1 [(validate.rules).string = {min_bytes: 1}];
24
25 // The `region <https://docs.aws.amazon.com/general/latest/gr/rande.html>`_ hosting the Grpc
26 // endpoint. If unspecified, the extension will use the value in the ``AWS_REGION`` environment
27 // variable.
28 //
29 // Example: us-west-2
30 string region = 2;
31}
View as plain text