Interface GetIntegrationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudWatchLogsResponse.Builder,CopyableBuilder<GetIntegrationResponse.Builder,GetIntegrationResponse>,SdkBuilder<GetIntegrationResponse.Builder,GetIntegrationResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetIntegrationResponse
public static interface GetIntegrationResponse.Builder extends CloudWatchLogsResponse.Builder, SdkPojo, CopyableBuilder<GetIntegrationResponse.Builder,GetIntegrationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetIntegrationResponse.BuilderintegrationDetails(Consumer<IntegrationDetails.Builder> integrationDetails)A structure that contains information about the integration configuration.GetIntegrationResponse.BuilderintegrationDetails(IntegrationDetails integrationDetails)A structure that contains information about the integration configuration.GetIntegrationResponse.BuilderintegrationName(String integrationName)The name of the integration.GetIntegrationResponse.BuilderintegrationStatus(String integrationStatus)The current status of this integration.GetIntegrationResponse.BuilderintegrationStatus(IntegrationStatus integrationStatus)The current status of this integration.GetIntegrationResponse.BuilderintegrationType(String integrationType)The type of integration.GetIntegrationResponse.BuilderintegrationType(IntegrationType integrationType)The type of integration.-
Methods inherited from interface software.amazon.awssdk.services.cloudwatchlogs.model.CloudWatchLogsResponse.Builder
build, responseMetadata, responseMetadata
-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
integrationName
GetIntegrationResponse.Builder integrationName(String integrationName)
The name of the integration.
- Parameters:
integrationName- The name of the integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integrationType
GetIntegrationResponse.Builder integrationType(String integrationType)
The type of integration. Integrations with OpenSearch Service have the type
OPENSEARCH.- Parameters:
integrationType- The type of integration. Integrations with OpenSearch Service have the typeOPENSEARCH.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntegrationType,IntegrationType
-
integrationType
GetIntegrationResponse.Builder integrationType(IntegrationType integrationType)
The type of integration. Integrations with OpenSearch Service have the type
OPENSEARCH.- Parameters:
integrationType- The type of integration. Integrations with OpenSearch Service have the typeOPENSEARCH.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntegrationType,IntegrationType
-
integrationStatus
GetIntegrationResponse.Builder integrationStatus(String integrationStatus)
The current status of this integration.
- Parameters:
integrationStatus- The current status of this integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntegrationStatus,IntegrationStatus
-
integrationStatus
GetIntegrationResponse.Builder integrationStatus(IntegrationStatus integrationStatus)
The current status of this integration.
- Parameters:
integrationStatus- The current status of this integration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IntegrationStatus,IntegrationStatus
-
integrationDetails
GetIntegrationResponse.Builder integrationDetails(IntegrationDetails integrationDetails)
A structure that contains information about the integration configuration. For an integration with OpenSearch Service, this includes information about OpenSearch Service resources such as the collection, the workspace, and policies.
- Parameters:
integrationDetails- A structure that contains information about the integration configuration. For an integration with OpenSearch Service, this includes information about OpenSearch Service resources such as the collection, the workspace, and policies.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
integrationDetails
default GetIntegrationResponse.Builder integrationDetails(Consumer<IntegrationDetails.Builder> integrationDetails)
A structure that contains information about the integration configuration. For an integration with OpenSearch Service, this includes information about OpenSearch Service resources such as the collection, the workspace, and policies.
This is a convenience method that creates an instance of theIntegrationDetails.Builderavoiding the need to create one manually viaIntegrationDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tointegrationDetails(IntegrationDetails).- Parameters:
integrationDetails- a consumer that will call methods onIntegrationDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
integrationDetails(IntegrationDetails)
-
-