Interface UndeprecateActivityTypeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UndeprecateActivityTypeRequest.Builder,UndeprecateActivityTypeRequest>,SdkBuilder<UndeprecateActivityTypeRequest.Builder,UndeprecateActivityTypeRequest>,SdkPojo,SdkRequest.Builder,SwfRequest.Builder
- Enclosing class:
- UndeprecateActivityTypeRequest
public static interface UndeprecateActivityTypeRequest.Builder extends SwfRequest.Builder, SdkPojo, CopyableBuilder<UndeprecateActivityTypeRequest.Builder,UndeprecateActivityTypeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default UndeprecateActivityTypeRequest.BuilderactivityType(Consumer<ActivityType.Builder> activityType)The activity type to undeprecate.UndeprecateActivityTypeRequest.BuilderactivityType(ActivityType activityType)The activity type to undeprecate.UndeprecateActivityTypeRequest.Builderdomain(String domain)The name of the domain of the deprecated activity type.UndeprecateActivityTypeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UndeprecateActivityTypeRequest.BuilderoverrideConfiguration(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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.swf.model.SwfRequest.Builder
build
-
-
-
-
Method Detail
-
domain
UndeprecateActivityTypeRequest.Builder domain(String domain)
The name of the domain of the deprecated activity type.
- Parameters:
domain- The name of the domain of the deprecated activity type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activityType
UndeprecateActivityTypeRequest.Builder activityType(ActivityType activityType)
The activity type to undeprecate.
- Parameters:
activityType- The activity type to undeprecate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activityType
default UndeprecateActivityTypeRequest.Builder activityType(Consumer<ActivityType.Builder> activityType)
The activity type to undeprecate.
This is a convenience method that creates an instance of theActivityType.Builderavoiding the need to create one manually viaActivityType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toactivityType(ActivityType).- Parameters:
activityType- a consumer that will call methods onActivityType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
activityType(ActivityType)
-
overrideConfiguration
UndeprecateActivityTypeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UndeprecateActivityTypeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-