Interface ExperiencesSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ExperiencesSummary.Builder,ExperiencesSummary>,SdkBuilder<ExperiencesSummary.Builder,ExperiencesSummary>,SdkPojo
- Enclosing class:
- ExperiencesSummary
public static interface ExperiencesSummary.Builder extends SdkPojo, CopyableBuilder<ExperiencesSummary.Builder,ExperiencesSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExperiencesSummary.BuildercreatedAt(Instant createdAt)The Unix timestamp when your Amazon Kendra experience was created.ExperiencesSummary.Builderendpoints(Collection<ExperienceEndpoint> endpoints)The endpoint URLs for your Amazon Kendra experiences.ExperiencesSummary.Builderendpoints(Consumer<ExperienceEndpoint.Builder>... endpoints)The endpoint URLs for your Amazon Kendra experiences.ExperiencesSummary.Builderendpoints(ExperienceEndpoint... endpoints)The endpoint URLs for your Amazon Kendra experiences.ExperiencesSummary.Builderid(String id)The identifier of your Amazon Kendra experience.ExperiencesSummary.Buildername(String name)The name of your Amazon Kendra experience.ExperiencesSummary.Builderstatus(String status)The processing status of your Amazon Kendra experience.ExperiencesSummary.Builderstatus(ExperienceStatus status)The processing status of your Amazon Kendra experience.-
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
-
name
ExperiencesSummary.Builder name(String name)
The name of your Amazon Kendra experience.
- Parameters:
name- The name of your Amazon Kendra experience.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
ExperiencesSummary.Builder id(String id)
The identifier of your Amazon Kendra experience.
- Parameters:
id- The identifier of your Amazon Kendra experience.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
ExperiencesSummary.Builder createdAt(Instant createdAt)
The Unix timestamp when your Amazon Kendra experience was created.
- Parameters:
createdAt- The Unix timestamp when your Amazon Kendra experience was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ExperiencesSummary.Builder status(String status)
The processing status of your Amazon Kendra experience.
- Parameters:
status- The processing status of your Amazon Kendra experience.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExperienceStatus,ExperienceStatus
-
status
ExperiencesSummary.Builder status(ExperienceStatus status)
The processing status of your Amazon Kendra experience.
- Parameters:
status- The processing status of your Amazon Kendra experience.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExperienceStatus,ExperienceStatus
-
endpoints
ExperiencesSummary.Builder endpoints(Collection<ExperienceEndpoint> endpoints)
The endpoint URLs for your Amazon Kendra experiences. The URLs are unique and fully hosted by Amazon Web Services.
- Parameters:
endpoints- The endpoint URLs for your Amazon Kendra experiences. The URLs are unique and fully hosted by Amazon Web Services.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpoints
ExperiencesSummary.Builder endpoints(ExperienceEndpoint... endpoints)
The endpoint URLs for your Amazon Kendra experiences. The URLs are unique and fully hosted by Amazon Web Services.
- Parameters:
endpoints- The endpoint URLs for your Amazon Kendra experiences. The URLs are unique and fully hosted by Amazon Web Services.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpoints
ExperiencesSummary.Builder endpoints(Consumer<ExperienceEndpoint.Builder>... endpoints)
The endpoint URLs for your Amazon Kendra experiences. The URLs are unique and fully hosted by Amazon Web Services.
This is a convenience method that creates an instance of theExperienceEndpoint.Builderavoiding the need to create one manually viaExperienceEndpoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#endpoints(List.) - Parameters:
endpoints- a consumer that will call methods onExperienceEndpoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#endpoints(java.util.Collection)
-
-