Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for s3Key (0.05 sec)

  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,omitempty"`
    }
    
    // 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
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top