Interface CreateApiDestinationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateApiDestinationRequest.Builder,CreateApiDestinationRequest>,EventBridgeRequest.Builder,SdkBuilder<CreateApiDestinationRequest.Builder,CreateApiDestinationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateApiDestinationRequest
public static interface CreateApiDestinationRequest.Builder extends EventBridgeRequest.Builder, SdkPojo, CopyableBuilder<CreateApiDestinationRequest.Builder,CreateApiDestinationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateApiDestinationRequest.BuilderconnectionArn(String connectionArn)The ARN of the connection to use for the API destination.CreateApiDestinationRequest.Builderdescription(String description)A description for the API destination to create.CreateApiDestinationRequest.BuilderhttpMethod(String httpMethod)The method to use for the request to the HTTP invocation endpoint.CreateApiDestinationRequest.BuilderhttpMethod(ApiDestinationHttpMethod httpMethod)The method to use for the request to the HTTP invocation endpoint.CreateApiDestinationRequest.BuilderinvocationEndpoint(String invocationEndpoint)The URL to the HTTP invocation endpoint for the API destination.CreateApiDestinationRequest.BuilderinvocationRateLimitPerSecond(Integer invocationRateLimitPerSecond)The maximum number of requests per second to send to the HTTP invocation endpoint.CreateApiDestinationRequest.Buildername(String name)The name for the API destination to create.CreateApiDestinationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateApiDestinationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.eventbridge.model.EventBridgeRequest.Builder
build
-
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
-
name
CreateApiDestinationRequest.Builder name(String name)
The name for the API destination to create.
- Parameters:
name- The name for the API destination to create.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateApiDestinationRequest.Builder description(String description)
A description for the API destination to create.
- Parameters:
description- A description for the API destination to create.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
connectionArn
CreateApiDestinationRequest.Builder connectionArn(String connectionArn)
The ARN of the connection to use for the API destination. The destination endpoint must support the authorization type specified for the connection.
- Parameters:
connectionArn- The ARN of the connection to use for the API destination. The destination endpoint must support the authorization type specified for the connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
invocationEndpoint
CreateApiDestinationRequest.Builder invocationEndpoint(String invocationEndpoint)
The URL to the HTTP invocation endpoint for the API destination.
- Parameters:
invocationEndpoint- The URL to the HTTP invocation endpoint for the API destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpMethod
CreateApiDestinationRequest.Builder httpMethod(String httpMethod)
The method to use for the request to the HTTP invocation endpoint.
- Parameters:
httpMethod- The method to use for the request to the HTTP invocation endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApiDestinationHttpMethod,ApiDestinationHttpMethod
-
httpMethod
CreateApiDestinationRequest.Builder httpMethod(ApiDestinationHttpMethod httpMethod)
The method to use for the request to the HTTP invocation endpoint.
- Parameters:
httpMethod- The method to use for the request to the HTTP invocation endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApiDestinationHttpMethod,ApiDestinationHttpMethod
-
invocationRateLimitPerSecond
CreateApiDestinationRequest.Builder invocationRateLimitPerSecond(Integer invocationRateLimitPerSecond)
The maximum number of requests per second to send to the HTTP invocation endpoint.
- Parameters:
invocationRateLimitPerSecond- The maximum number of requests per second to send to the HTTP invocation endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateApiDestinationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateApiDestinationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-