Interface PutEventsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutEventsRequest.Builder,PutEventsRequest>,EventBridgeRequest.Builder,SdkBuilder<PutEventsRequest.Builder,PutEventsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutEventsRequest
public static interface PutEventsRequest.Builder extends EventBridgeRequest.Builder, SdkPojo, CopyableBuilder<PutEventsRequest.Builder,PutEventsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutEventsRequest.BuilderendpointId(String endpointId)The URL subdomain of the endpoint.PutEventsRequest.Builderentries(Collection<PutEventsRequestEntry> entries)The entry that defines an event in your system.PutEventsRequest.Builderentries(Consumer<PutEventsRequestEntry.Builder>... entries)The entry that defines an event in your system.PutEventsRequest.Builderentries(PutEventsRequestEntry... entries)The entry that defines an event in your system.PutEventsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutEventsRequest.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
-
entries
PutEventsRequest.Builder entries(Collection<PutEventsRequestEntry> entries)
The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.
- Parameters:
entries- The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
PutEventsRequest.Builder entries(PutEventsRequestEntry... entries)
The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.
- Parameters:
entries- The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
PutEventsRequest.Builder entries(Consumer<PutEventsRequestEntry.Builder>... entries)
The entry that defines an event in your system. You can specify several parameters for the entry such as the source and type of the event, resources associated with the event, and so on.
This is a convenience method that creates an instance of thePutEventsRequestEntry.Builderavoiding the need to create one manually viaPutEventsRequestEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entries(List.) - Parameters:
entries- a consumer that will call methods onPutEventsRequestEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
endpointId
PutEventsRequest.Builder endpointId(String endpointId)
The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is
abcde.veo.When using Java, you must include
auth-crton the class path.- Parameters:
endpointId- The URL subdomain of the endpoint. For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId isabcde.veo.When using Java, you must include
auth-crton the class path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
PutEventsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutEventsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-