Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for S3Key (0.02 seconds)

  1. internal/event/config.go

    		}
    	}
    
    	return NewPattern(prefix, suffix)
    }
    
    // S3Key - represents elements inside <S3Key>...</S3Key>
    type S3Key struct {
    	RuleList FilterRuleList `xml:"S3Key,omitempty" json:"S3Key"`
    }
    
    // MarshalXML implements a custom marshaller to support `omitempty` feature.
    func (s3Key S3Key) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
    	if s3Key.RuleList.isEmpty() {
    		return nil
    	}
    	type s3KeyWrapper S3Key
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.4K bytes
    - Click Count (0)
Back to Top