PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::SimpleWorkflow::RegisterActivityType; use Moose; has DefaultTaskHeartbeatTimeout => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultTaskHeartbeatTimeout' ); has DefaultTaskList => (is => 'ro', isa => 'Paws::SimpleWorkflow::TaskList', traits => ['NameInRequest'], request_name => 'defaultTaskList' ); has DefaultTaskPriority => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultTaskPriority' ); has DefaultTaskScheduleToCloseTimeout => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultTaskScheduleToCloseTimeout' ); has DefaultTaskScheduleToStartTimeout => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultTaskScheduleToStartTimeout' ); has DefaultTaskStartToCloseTimeout => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultTaskStartToCloseTimeout' ); has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description' ); has Domain => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domain' , required => 1); has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' , required => 1); has Version => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'version' , required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'RegisterActivityType'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::SimpleWorkflow::RegisterActivityType - Arguments for method RegisterActivityType on L =head1 DESCRIPTION This class represents the parameters used for calling the method RegisterActivityType on the L service. Use the attributes of this class as arguments to method RegisterActivityType. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to RegisterActivityType. =head1 SYNOPSIS my $swf = Paws->service('SimpleWorkflow'); $swf->RegisterActivityType( Domain => 'MyDomainName', Name => 'MyName', Version => 'MyVersion', DefaultTaskHeartbeatTimeout => 'MyDurationInSecondsOptional', # OPTIONAL DefaultTaskList => { Name => 'MyName', # min: 1, max: 256 }, # OPTIONAL DefaultTaskPriority => 'MyTaskPriority', # OPTIONAL DefaultTaskScheduleToCloseTimeout => 'MyDurationInSecondsOptional', # OPTIONAL DefaultTaskScheduleToStartTimeout => 'MyDurationInSecondsOptional', # OPTIONAL DefaultTaskStartToCloseTimeout => 'MyDurationInSecondsOptional', # OPTIONAL Description => 'MyDescription', # OPTIONAL ); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 DefaultTaskHeartbeatTimeout => Str If set, specifies the default maximum time before which a worker processing a task of this type must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. This default can be overridden when scheduling an activity task using the C Decision. If the activity worker subsequently attempts to record a heartbeat or returns a result, the activity worker receives an C fault. In this case, Amazon SWF no longer considers the activity task to be valid; the activity worker should clean up the activity task. The duration is specified in seconds, an integer greater than or equal to C<0>. You can use C to specify unlimited duration. =head2 DefaultTaskList => L If set, specifies the default task list to use for scheduling tasks of this activity type. This default task list is used if a task list isn't provided when a task is scheduled through the C Decision. =head2 DefaultTaskPriority => Str The default task priority to assign to the activity type. If not assigned, then C<0> is used. Valid values are integers that range from Java's C (-2147483648) to C (2147483647). Higher numbers indicate higher priority. For more information about setting task priority, see Setting Task Priority (https://docs.aws.amazon.com/amazonswf/latest/developerguide/programming-priority.html) in the I.>. =head2 DefaultTaskScheduleToCloseTimeout => Str If set, specifies the default maximum duration for a task of this activity type. This default can be overridden when scheduling an activity task using the C Decision. The duration is specified in seconds, an integer greater than or equal to C<0>. You can use C to specify unlimited duration. =head2 DefaultTaskScheduleToStartTimeout => Str If set, specifies the default maximum duration that a task of this activity type can wait before being assigned to a worker. This default can be overridden when scheduling an activity task using the C Decision. The duration is specified in seconds, an integer greater than or equal to C<0>. You can use C to specify unlimited duration. =head2 DefaultTaskStartToCloseTimeout => Str If set, specifies the default maximum duration that a worker can take to process tasks of this activity type. This default can be overridden when scheduling an activity task using the C Decision. The duration is specified in seconds, an integer greater than or equal to C<0>. You can use C to specify unlimited duration. =head2 Description => Str A textual description of the activity type. =head2 B Domain => Str The name of the domain in which this activity is to be registered. =head2 B Name => Str The name of the activity type within the domain. The specified string must not start or end with whitespace. It must not contain a C<:> (colon), C (slash), C<|> (vertical bar), or any control characters (C<\u0000-\u001f> | C<\u007f-\u009f>). Also, it must not I the literal string C. =head2 B Version => Str The version of the activity type. The activity type consists of the name and version, the combination of which must be unique within the domain. The specified string must not start or end with whitespace. It must not contain a C<:> (colon), C (slash), C<|> (vertical bar), or any control characters (C<\u0000-\u001f> | C<\u007f-\u009f>). Also, it must not I the literal string C. =head1 SEE ALSO This class forms part of L, documenting arguments for method RegisterActivityType in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut