File tree 5 files changed +14
-14
lines changed
5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,10 @@ const Scheme = "s3"
130
130
// Use "awssdk=v1" to force using AWS SDK v1, "awssdk=v2" to force using AWS SDK v2,
131
131
// or anything else to accept the default.
132
132
//
133
+ // For V1, see https://pkg.go.dev/gocloud.dev/aws#ConfigFromURLParams for supported query parameters
134
+ // for overriding the aws.Session from the URL.
135
+ // For V2, see https://pkg.go.dev/gocloud.dev/aws#V2ConfigFromURLParams.
136
+ //
133
137
// The following S3-specific query options are also supported:
134
138
// - ssetype: The type of server side encryption used (AES256, aws:kms, aws:kms:dsse)
135
139
// - kmskeyid: The KMS key ID for server side encryption
@@ -139,10 +143,6 @@ const Scheme = "s3"
139
143
// - use_path_style: A value of true sets the UsePathStyle option.
140
144
// - s3ForcePathStyle: Same as use_path_style, for backwards compatibility with V1.
141
145
// - disable_https: A value of true disables HTTPS in the Endpoint options.
142
- //
143
- // For V1, see gocloud.dev/aws/ConfigFromURLParams for supported query parameters
144
- // for overriding the aws.Session from the URL.
145
- // For V2, see gocloud.dev/aws/V2ConfigFromURLParams.
146
146
type URLOpener struct {
147
147
// UseV2 indicates whether the AWS SDK V2 should be used.
148
148
UseV2 bool
Original file line number Diff line number Diff line change @@ -206,9 +206,9 @@ const SQSScheme = "awssqs"
206
206
// Use "awssdk=v1" to force using AWS SDK v1, "awssdk=v2" to force using AWS SDK v2,
207
207
// or anything else to accept the default.
208
208
//
209
- // For V1, see gocloud.dev/aws/ ConfigFromURLParams for supported query parameters
209
+ // For V1, see https://pkg.go.dev/ gocloud.dev/aws# ConfigFromURLParams for supported query parameters
210
210
// for overriding the aws.Session from the URL.
211
- // For V2, see gocloud.dev/aws/ V2ConfigFromURLParams.
211
+ // For V2, see https://pkg.go.dev/ gocloud.dev/aws# V2ConfigFromURLParams.
212
212
//
213
213
// In addition, the following query parameters are supported:
214
214
//
Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ var Set = wire.NewSet(
73
73
// Use "awssdk=v1" to force using AWS SDK v1, "awssdk=v2" to force using AWS SDK v2,
74
74
// or anything else to accept the default.
75
75
//
76
- // For V1, see gocloud.dev/aws/ ConfigFromURLParams for supported query parameters
76
+ // For V1, see https://pkg.go.dev/ gocloud.dev/aws# ConfigFromURLParams for supported query parameters
77
77
// for overriding the aws.Session from the URL.
78
- // For V2, see gocloud.dev/aws/ V2ConfigFromURLParams.
78
+ // For V2, see https://pkg.go.dev/ gocloud.dev/aws# V2ConfigFromURLParams.
79
79
//
80
80
// In addition, the following URL parameters are supported:
81
81
// - decoder: The decoder to use. Defaults to URLOpener.Decoder, or
Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ var Set = wire.NewSet(
73
73
// Use "awssdk=v1" to force using AWS SDK v1, "awssdk=v2" to force using AWS SDK v2,
74
74
// or anything else to accept the default.
75
75
//
76
- // For V1, see gocloud.dev/aws/ ConfigFromURLParams for supported query parameters
76
+ // For V1, see https://pkg.go.dev/ gocloud.dev/aws# ConfigFromURLParams for supported query parameters
77
77
// for overriding the aws.Session from the URL.
78
- // For V2, see gocloud.dev/aws/ V2ConfigFromURLParams.
78
+ // For V2, see https://pkg.go.dev/ gocloud.dev/aws# V2ConfigFromURLParams.
79
79
//
80
80
// In addition, the following URL parameters are supported:
81
81
// - decoder: The decoder to use. Defaults to URLOpener.Decoder, or
Original file line number Diff line number Diff line change @@ -124,14 +124,14 @@ const Scheme = "awskms"
124
124
// Use "awssdk=v1" to force using AWS SDK v1, "awssdk=v2" to force using AWS SDK v2,
125
125
// or anything else to accept the default.
126
126
//
127
+ // For V1, see https://pkg.go.dev/gocloud.dev/aws#ConfigFromURLParams for supported query parameters
128
+ // for overriding the aws.Session from the URL.
129
+ // For V2, see https://pkg.go.dev/gocloud.dev/aws#V2ConfigFromURLParams.
130
+ //
127
131
// EncryptionContext key/value pairs can be provided by providing URL parameters prefixed
128
132
// with "context_"; e.g., "...&context_abc=foo&context_def=bar" would result in
129
133
// an EncryptionContext of {abc=foo, def=bar}.
130
134
// See https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context.
131
- //
132
- // For V1, see gocloud.dev/aws/ConfigFromURLParams for supported query parameters
133
- // for overriding the aws.Session from the URL.
134
- // For V2, see gocloud.dev/aws/V2ConfigFromURLParams.
135
135
type URLOpener struct {
136
136
// UseV2 indicates whether the AWS SDK V2 should be used.
137
137
UseV2 bool
You can’t perform that action at this time.
0 commit comments