AmazonS3AccessKeysConfig represents vendor-specific config for Amazon S3 with access key authentication.
| 65 | |
| 66 | // AmazonS3AccessKeysConfig represents vendor-specific config for Amazon S3 with access key authentication. |
| 67 | type AmazonS3AccessKeysConfig struct { |
| 68 | Bucket string `json:"bucket"` |
| 69 | Region string `json:"region"` |
| 70 | KeyID string `json:"key_id"` |
| 71 | AuthenticationType string `json:"authentication_type"` // Value: "access_keys" |
| 72 | EncryptedSecretKey string `json:"encrypted_secret_key"` |
| 73 | EncryptedAccessKeyID string `json:"encrypted_access_key_id"` |
| 74 | } |
| 75 | |
| 76 | // SplunkConfig represents vendor-specific config for Splunk. |
| 77 | type SplunkConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected