Interface UpdateApplicationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateApplicationRequest.Builder,UpdateApplicationRequest>
,OpenSearchRequest.Builder
,SdkBuilder<UpdateApplicationRequest.Builder,UpdateApplicationRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- UpdateApplicationRequest
public static interface UpdateApplicationRequest.Builder extends OpenSearchRequest.Builder, SdkPojo, CopyableBuilder<UpdateApplicationRequest.Builder,UpdateApplicationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateApplicationRequest.Builder
appConfigs(Collection<AppConfig> appConfigs)
Configurations to be changed for the OpenSearch Application.UpdateApplicationRequest.Builder
appConfigs(Consumer<AppConfig.Builder>... appConfigs)
Configurations to be changed for the OpenSearch Application.UpdateApplicationRequest.Builder
appConfigs(AppConfig... appConfigs)
Configurations to be changed for the OpenSearch Application.UpdateApplicationRequest.Builder
dataSources(Collection<DataSource> dataSources)
Data sources to be associated with the OpenSearch Application.UpdateApplicationRequest.Builder
dataSources(Consumer<DataSource.Builder>... dataSources)
Data sources to be associated with the OpenSearch Application.UpdateApplicationRequest.Builder
dataSources(DataSource... dataSources)
Data sources to be associated with the OpenSearch Application.UpdateApplicationRequest.Builder
id(String id)
Unique identifier of the OpenSearch Application to be updated.UpdateApplicationRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
UpdateApplicationRequest.Builder
overrideConfiguration(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.opensearch.model.OpenSearchRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
UpdateApplicationRequest.Builder id(String id)
Unique identifier of the OpenSearch Application to be updated.
- Parameters:
id
- Unique identifier of the OpenSearch Application to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSources
UpdateApplicationRequest.Builder dataSources(Collection<DataSource> dataSources)
Data sources to be associated with the OpenSearch Application.
- Parameters:
dataSources
- Data sources to be associated with the OpenSearch Application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSources
UpdateApplicationRequest.Builder dataSources(DataSource... dataSources)
Data sources to be associated with the OpenSearch Application.
- Parameters:
dataSources
- Data sources to be associated with the OpenSearch Application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataSources
UpdateApplicationRequest.Builder dataSources(Consumer<DataSource.Builder>... dataSources)
Data sources to be associated with the OpenSearch Application.
This is a convenience method that creates an instance of theDataSource.Builder
avoiding the need to create one manually viaDataSource.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#dataSources(List
.) - Parameters:
dataSources
- a consumer that will call methods onDataSource.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#dataSources(java.util.Collection
)
-
appConfigs
UpdateApplicationRequest.Builder appConfigs(Collection<AppConfig> appConfigs)
Configurations to be changed for the OpenSearch Application.
- Parameters:
appConfigs
- Configurations to be changed for the OpenSearch Application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appConfigs
UpdateApplicationRequest.Builder appConfigs(AppConfig... appConfigs)
Configurations to be changed for the OpenSearch Application.
- Parameters:
appConfigs
- Configurations to be changed for the OpenSearch Application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appConfigs
UpdateApplicationRequest.Builder appConfigs(Consumer<AppConfig.Builder>... appConfigs)
Configurations to be changed for the OpenSearch Application.
This is a convenience method that creates an instance of theAppConfig.Builder
avoiding the need to create one manually viaAppConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#appConfigs(List
.) - Parameters:
appConfigs
- a consumer that will call methods onAppConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#appConfigs(java.util.Collection
)
-
overrideConfiguration
UpdateApplicationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateApplicationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-