Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for S3Key (0.06 sec)

  1. internal/event/config_test.go

    		expectErr      bool
    	}{
    		{[]byte(`<S3Key><FilterRule><Name>suffix</Name><Value>Hello/世界</Value></FilterRule><FilterRule><Name>suffix</Name><Value>foo/bar</Value></FilterRule></S3Key>`), nil, true},
    		{[]byte(`<S3Key><FilterRule><Name>prefix</Name><Value>Hello/世界</Value></FilterRule><FilterRule><Name>prefix</Name><Value>foo/bar</Value></FilterRule></S3Key>`), nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 29K bytes
    - Viewed (0)
  2. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	// Sample bucket notification.
    	bucketNotificationBuf := `<NotificationConfiguration><QueueConfiguration><Event>s3:ObjectCreated:Put</Event><Filter><S3Key><FilterRule><Name>prefix</Name><Value>images/</Value></FilterRule></S3Key></Filter><Id>1</Id><Queue>arn:minio:sqs:us-east-1:444455556666:webhook</Queue></QueueConfiguration></NotificationConfiguration>`
    	// generate a random bucket Name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    [[sub:s3_url_formats]]
    === S3 URL formats
    
    S3 URL's are 'virtual-hosted-style' and must be in the following format
    
    ----
    s3://<bucketName>[.<regionSpecificEndpoint>]/<s3Key>
    ----
    
    e.g. `s3://myBucket.s3.eu-central-1.amazonaws.com/maven/release`
    
    * `myBucket` is the AWS S3 bucket name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top