Interface AllowedCapabilities.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AllowedCapabilities.Builder,AllowedCapabilities>,SdkBuilder<AllowedCapabilities.Builder,AllowedCapabilities>,SdkPojo
- Enclosing class:
- AllowedCapabilities
public static interface AllowedCapabilities.Builder extends SdkPojo, CopyableBuilder<AllowedCapabilities.Builder,AllowedCapabilities>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AllowedCapabilities.Builderagent(Consumer<ParticipantCapabilities.Builder> agent)Information about the agent's video sharing capabilities.AllowedCapabilities.Builderagent(ParticipantCapabilities agent)Information about the agent's video sharing capabilities.default AllowedCapabilities.Buildercustomer(Consumer<ParticipantCapabilities.Builder> customer)Information about the customer's video sharing capabilities.AllowedCapabilities.Buildercustomer(ParticipantCapabilities customer)Information about the customer's video sharing capabilities.-
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
-
customer
AllowedCapabilities.Builder customer(ParticipantCapabilities customer)
Information about the customer's video sharing capabilities.
- Parameters:
customer- Information about the customer's video sharing capabilities.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customer
default AllowedCapabilities.Builder customer(Consumer<ParticipantCapabilities.Builder> customer)
Information about the customer's video sharing capabilities.
This is a convenience method that creates an instance of theParticipantCapabilities.Builderavoiding the need to create one manually viaParticipantCapabilities.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocustomer(ParticipantCapabilities).- Parameters:
customer- a consumer that will call methods onParticipantCapabilities.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
customer(ParticipantCapabilities)
-
agent
AllowedCapabilities.Builder agent(ParticipantCapabilities agent)
Information about the agent's video sharing capabilities.
- Parameters:
agent- Information about the agent's video sharing capabilities.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agent
default AllowedCapabilities.Builder agent(Consumer<ParticipantCapabilities.Builder> agent)
Information about the agent's video sharing capabilities.
This is a convenience method that creates an instance of theParticipantCapabilities.Builderavoiding the need to create one manually viaParticipantCapabilities.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toagent(ParticipantCapabilities).- Parameters:
agent- a consumer that will call methods onParticipantCapabilities.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
agent(ParticipantCapabilities)
-
-