Class ScheduleActivityTaskDecisionAttributes
- java.lang.Object
-
- software.amazon.awssdk.services.swf.model.ScheduleActivityTaskDecisionAttributes
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<ScheduleActivityTaskDecisionAttributes.Builder,ScheduleActivityTaskDecisionAttributes>
@Generated("software.amazon.awssdk:codegen") public final class ScheduleActivityTaskDecisionAttributes extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ScheduleActivityTaskDecisionAttributes.Builder,ScheduleActivityTaskDecisionAttributes>
Provides the details of the
ScheduleActivityTaskdecision.Access Control
You can use IAM policies to control this decision's access to Amazon SWF resources as follows:
-
Use a
Resourceelement with the domain name to limit the action to only specified domains. -
Use an
Actionelement to allow or deny permission to call this action. -
Constrain the following parameters by using a
Conditionelement with the appropriate keys.-
activityType.name– String constraint. The key isswf:activityType.name. -
activityType.version– String constraint. The key isswf:activityType.version. -
taskList– String constraint. The key isswf:taskList.name.
-
If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's
causeparameter is set toOPERATION_NOT_PERMITTED. For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer Guide.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceScheduleActivityTaskDecisionAttributes.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringactivityId()TheactivityIdof the activity task.ActivityTypeactivityType()The type of the activity task to schedule.static ScheduleActivityTaskDecisionAttributes.Builderbuilder()Stringcontrol()Data attached to the event that can be used by the decider in subsequent workflow tasks.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()StringheartbeatTimeout()If set, specifies the maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat.Stringinput()The input provided to the activity task.StringscheduleToCloseTimeout()The maximum duration for this activity task.StringscheduleToStartTimeout()If set, specifies the maximum duration the activity task can wait to be assigned to a worker.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends ScheduleActivityTaskDecisionAttributes.Builder>serializableBuilderClass()StringstartToCloseTimeout()If set, specifies the maximum duration a worker may take to process this activity task.TaskListtaskList()If set, specifies the name of the task list in which to schedule the activity task.StringtaskPriority()If set, specifies the priority with which the activity task is to be assigned to a worker.ScheduleActivityTaskDecisionAttributes.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
activityType
public final ActivityType activityType()
The type of the activity task to schedule.
- Returns:
- The type of the activity task to schedule.
-
activityId
public final String activityId()
The
activityIdof the activity task.The specified string must not contain a
:(colon),/(slash),|(vertical bar), or any control characters (
-
-