Interface ActivityType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActivityType.Builder,ActivityType>,SdkBuilder<ActivityType.Builder,ActivityType>,SdkPojo
- Enclosing class:
- ActivityType
public static interface ActivityType.Builder extends SdkPojo, CopyableBuilder<ActivityType.Builder,ActivityType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivityType.Buildername(String name)The name of this activity.ActivityType.Builderversion(String version)The version of this activity.-
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
-
name
ActivityType.Builder name(String name)
The name of this activity.
The combination of activity type name and version must be unique within a domain.
- Parameters:
name- The name of this activity.The combination of activity type name and version must be unique within a domain.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
ActivityType.Builder version(String version)
The version of this activity.
The combination of activity type name and version must be unique with in a domain.
- Parameters:
version- The version of this activity.The combination of activity type name and version must be unique with in a domain.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-