...

Text file src/github.com/datawire/ambassador/v2/api/envoy/config/grpc_credential/v3/aws_iam.proto

Documentation: github.com/datawire/ambassador/v2/api/envoy/config/grpc_credential/v3

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

View as plain text