Interface HttpEndpointRequestConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HttpEndpointRequestConfiguration.Builder,HttpEndpointRequestConfiguration>,SdkBuilder<HttpEndpointRequestConfiguration.Builder,HttpEndpointRequestConfiguration>,SdkPojo
- Enclosing class:
- HttpEndpointRequestConfiguration
public static interface HttpEndpointRequestConfiguration.Builder extends SdkPojo, CopyableBuilder<HttpEndpointRequestConfiguration.Builder,HttpEndpointRequestConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpEndpointRequestConfiguration.BuildercommonAttributes(Collection<HttpEndpointCommonAttribute> commonAttributes)Describes the metadata sent to the HTTP endpoint destination.HttpEndpointRequestConfiguration.BuildercommonAttributes(Consumer<HttpEndpointCommonAttribute.Builder>... commonAttributes)Describes the metadata sent to the HTTP endpoint destination.HttpEndpointRequestConfiguration.BuildercommonAttributes(HttpEndpointCommonAttribute... commonAttributes)Describes the metadata sent to the HTTP endpoint destination.HttpEndpointRequestConfiguration.BuildercontentEncoding(String contentEncoding)Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination.HttpEndpointRequestConfiguration.BuildercontentEncoding(ContentEncoding contentEncoding)Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
contentEncoding
HttpEndpointRequestConfiguration.Builder contentEncoding(String contentEncoding)
Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination. For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.
- Parameters:
contentEncoding- Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination. For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContentEncoding,ContentEncoding
-
contentEncoding
HttpEndpointRequestConfiguration.Builder contentEncoding(ContentEncoding contentEncoding)
Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination. For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.
- Parameters:
contentEncoding- Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination. For more information, see Content-Encoding in MDN Web Docs, the official Mozilla documentation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContentEncoding,ContentEncoding
-
commonAttributes
HttpEndpointRequestConfiguration.Builder commonAttributes(Collection<HttpEndpointCommonAttribute> commonAttributes)
Describes the metadata sent to the HTTP endpoint destination.
- Parameters:
commonAttributes- Describes the metadata sent to the HTTP endpoint destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
commonAttributes
HttpEndpointRequestConfiguration.Builder commonAttributes(HttpEndpointCommonAttribute... commonAttributes)
Describes the metadata sent to the HTTP endpoint destination.
- Parameters:
commonAttributes- Describes the metadata sent to the HTTP endpoint destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
commonAttributes
HttpEndpointRequestConfiguration.Builder commonAttributes(Consumer<HttpEndpointCommonAttribute.Builder>... commonAttributes)
Describes the metadata sent to the HTTP endpoint destination.
This is a convenience method that creates an instance of theHttpEndpointCommonAttribute.Builderavoiding the need to create one manually viaHttpEndpointCommonAttribute.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#commonAttributes(List.) - Parameters:
commonAttributes- a consumer that will call methods onHttpEndpointCommonAttribute.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#commonAttributes(java.util.Collection)
-
-