envoy.config.grpc_credential.v3alpha.aws_iam.proto Maven / Gradle / Ivy
syntax = "proto3";
// [#protodoc-title: Grpc Credentials AWS IAM]
// Configuration for AWS IAM Grpc Credentials Plugin
package envoy.config.grpc_credential.v3alpha;
option java_outer_classname = "AwsIamProto";
option java_package = "io.envoyproxy.envoy.config.grpc_credential.v3alpha";
option java_multiple_files = true;
import "validate/validate.proto";
message AwsIamConfig {
// The `service namespace
// `_
// of the Grpc endpoint.
//
// Example: appmesh
string service_name = 1 [(validate.rules).string.min_bytes = 1];
// The `region `_ hosting the Grpc
// endpoint. If unspecified, the extension will use the value in the ``AWS_REGION`` environment
// variable.
//
// Example: us-west-2
string region = 2;
}