AmazonS3OIDCConfig represents vendor-specific config for Amazon S3 with OIDC authentication.
| 56 | |
| 57 | // AmazonS3OIDCConfig represents vendor-specific config for Amazon S3 with OIDC authentication. |
| 58 | type AmazonS3OIDCConfig struct { |
| 59 | Bucket string `json:"bucket"` |
| 60 | Region string `json:"region"` |
| 61 | KeyID string `json:"key_id"` |
| 62 | AuthenticationType string `json:"authentication_type"` // Value: "oidc" |
| 63 | ArnRole string `json:"arn_role"` |
| 64 | } |
| 65 | |
| 66 | // AmazonS3AccessKeysConfig represents vendor-specific config for Amazon S3 with access key authentication. |
| 67 | type AmazonS3AccessKeysConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected