Interface HttpEndpointConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<HttpEndpointConfiguration.Builder,HttpEndpointConfiguration>
,SdkBuilder<HttpEndpointConfiguration.Builder,HttpEndpointConfiguration>
,SdkPojo
- Enclosing class:
- HttpEndpointConfiguration
public static interface HttpEndpointConfiguration.Builder extends SdkPojo, CopyableBuilder<HttpEndpointConfiguration.Builder,HttpEndpointConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpEndpointConfiguration.Builder
accessKey(String accessKey)
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.HttpEndpointConfiguration.Builder
name(String name)
The name of the HTTP endpoint selected as the destination.HttpEndpointConfiguration.Builder
url(String url)
The URL of the HTTP endpoint selected as 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
-
url
HttpEndpointConfiguration.Builder url(String url)
The URL of the HTTP endpoint selected as the destination.
If you choose an HTTP endpoint as your destination, review and follow the instructions in the Appendix - HTTP Endpoint Delivery Request and Response Specifications.
- Parameters:
url
- The URL of the HTTP endpoint selected as the destination.If you choose an HTTP endpoint as your destination, review and follow the instructions in the Appendix - HTTP Endpoint Delivery Request and Response Specifications.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
HttpEndpointConfiguration.Builder name(String name)
The name of the HTTP endpoint selected as the destination.
- Parameters:
name
- The name of the HTTP endpoint selected as the destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessKey
HttpEndpointConfiguration.Builder accessKey(String accessKey)
The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.
- Parameters:
accessKey
- The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-