Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for awsRegion (0.26 sec)

  1. internal/event/event.go

    type Event struct {
    	EventVersion      string            `json:"eventVersion"`
    	EventSource       string            `json:"eventSource"`
    	AwsRegion         string            `json:"awsRegion"`
    	EventTime         string            `json:"eventTime"`
    	EventName         Name              `json:"eventName"`
    	UserIdentity      Identity          `json:"userIdentity"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pkg/bootstrap/platform/aws.go

    package platform
    
    import (
    	"strings"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    
    	"istio.io/istio/pkg/http"
    	"istio.io/istio/pkg/log"
    )
    
    const (
    	AWSRegion           = "aws_region"
    	AWSAvailabilityZone = "aws_availability_zone"
    	AWSInstanceID       = "aws_instance_id"
    )
    
    var (
    	awsMetadataIPv4URL = "http://169.254.169.254/latest/meta-data"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 03:52:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    ```
    
    You should receive the following event notification via RabbitMQ once the upload completes.
    
    ```py
    python rabbit.py
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. cmd/event-notification.go

    	}
    
    	keyName := args.Object.Name
    	if escape {
    		keyName = url.QueryEscape(args.Object.Name)
    	}
    
    	newEvent := event.Event{
    		EventVersion:      "2.0",
    		EventSource:       "minio:s3",
    		AwsRegion:         args.ReqParams["region"],
    		EventTime:         eventTime.Format(event.AMZTimeFormat),
    		EventName:         args.EventName,
    		UserIdentity:      event.Identity{PrincipalID: args.ReqParams["principalId"]},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top