Interface PartnerIntegrationInfo.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PartnerIntegrationInfo.Builder,PartnerIntegrationInfo>
,SdkBuilder<PartnerIntegrationInfo.Builder,PartnerIntegrationInfo>
,SdkPojo
- Enclosing class:
- PartnerIntegrationInfo
public static interface PartnerIntegrationInfo.Builder extends SdkPojo, CopyableBuilder<PartnerIntegrationInfo.Builder,PartnerIntegrationInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PartnerIntegrationInfo.Builder
createdAt(Instant createdAt)
The date (UTC) that the partner integration was created.PartnerIntegrationInfo.Builder
databaseName(String databaseName)
The name of the database that receives data from a partner.PartnerIntegrationInfo.Builder
partnerName(String partnerName)
The name of the partner.PartnerIntegrationInfo.Builder
status(String status)
The partner integration status.PartnerIntegrationInfo.Builder
status(PartnerIntegrationStatus status)
The partner integration status.PartnerIntegrationInfo.Builder
statusMessage(String statusMessage)
The status message provided by the partner.PartnerIntegrationInfo.Builder
updatedAt(Instant updatedAt)
The date (UTC) that the partner integration status was last updated by the partner.-
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
-
databaseName
PartnerIntegrationInfo.Builder databaseName(String databaseName)
The name of the database that receives data from a partner.
- Parameters:
databaseName
- The name of the database that receives data from a partner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
partnerName
PartnerIntegrationInfo.Builder partnerName(String partnerName)
The name of the partner.
- Parameters:
partnerName
- The name of the partner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
PartnerIntegrationInfo.Builder status(String status)
The partner integration status.
- Parameters:
status
- The partner integration status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PartnerIntegrationStatus
,PartnerIntegrationStatus
-
status
PartnerIntegrationInfo.Builder status(PartnerIntegrationStatus status)
The partner integration status.
- Parameters:
status
- The partner integration status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PartnerIntegrationStatus
,PartnerIntegrationStatus
-
statusMessage
PartnerIntegrationInfo.Builder statusMessage(String statusMessage)
The status message provided by the partner.
- Parameters:
statusMessage
- The status message provided by the partner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
PartnerIntegrationInfo.Builder createdAt(Instant createdAt)
The date (UTC) that the partner integration was created.
- Parameters:
createdAt
- The date (UTC) that the partner integration was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
PartnerIntegrationInfo.Builder updatedAt(Instant updatedAt)
The date (UTC) that the partner integration status was last updated by the partner.
- Parameters:
updatedAt
- The date (UTC) that the partner integration status was last updated by the partner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-