Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Zambia (0.15 sec)

  1. internal/config/lambda/config.go

    package lambda
    
    import "github.com/minio/minio/internal/event/target"
    
    // Config - lambda target configuration structure, holds
    // information about various lambda targets.
    type Config struct {
    	Webhook map[string]target.WebhookArgs `json:"webhook"`
    }
    
    const (
    	defaultTarget = "1"
    )
    
    // NewConfig - initialize lambda config.
    func NewConfig() Config {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Mar 07 16:12:41 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  2. internal/event/config.go

    func (q Queue) ToRulesMap() RulesMap {
    	pattern := q.Filter.RuleList.Pattern()
    	return NewRulesMap(q.Events, pattern, q.ARN.TargetID)
    }
    
    // Unused.  Available for completion.
    type lambda struct {
    	ARN string `xml:"CloudFunction"`
    }
    
    // Unused. Available for completion.
    type topic struct {
    	ARN string `xml:"Topic" json:"Topic"`
    }
    
    // Config - notification configuration described in
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Nov 16 17:28:29 GMT 2021
    - 8.4K bytes
    - Viewed (0)
  3. internal/config/config.go

    	NotifyRedisSubSys    = madmin.NotifyRedisSubSys
    	NotifyWebhookSubSys  = madmin.NotifyWebhookSubSys
    
    	// Add new constants here (similar to above) if you add new fields to config.
    )
    
    // Lambda config constants.
    const (
    	LambdaWebhookSubSys = madmin.LambdaWebhookSubSys
    )
    
    // NotifySubSystems - all notification sub-systems
    var NotifySubSystems = set.CreateStringSet(
    	NotifyKafkaSubSys,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top