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::FIS; use Moose; sub service { 'fis' } sub signing_name { 'fis' } sub version { '2020-12-01' } sub flattened_arrays { 0 } has max_attempts => (is => 'ro', isa => 'Int', default => 5); has retry => (is => 'ro', isa => 'HashRef', default => sub { { base => 'rand', type => 'exponential', growth_factor => 2 } }); has retriables => (is => 'ro', isa => 'ArrayRef', default => sub { [ ] }); with 'Paws::API::Caller', 'Paws::API::EndpointResolver', 'Paws::Net::V4Signature', 'Paws::Net::RestJsonCaller'; sub CreateExperimentTemplate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::CreateExperimentTemplate', @_); return $self->caller->do_call($self, $call_object); } sub DeleteExperimentTemplate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::DeleteExperimentTemplate', @_); return $self->caller->do_call($self, $call_object); } sub GetAction { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::GetAction', @_); return $self->caller->do_call($self, $call_object); } sub GetExperiment { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::GetExperiment', @_); return $self->caller->do_call($self, $call_object); } sub GetExperimentTemplate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::GetExperimentTemplate', @_); return $self->caller->do_call($self, $call_object); } sub ListActions { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::ListActions', @_); return $self->caller->do_call($self, $call_object); } sub ListExperiments { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::ListExperiments', @_); return $self->caller->do_call($self, $call_object); } sub ListExperimentTemplates { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::ListExperimentTemplates', @_); return $self->caller->do_call($self, $call_object); } sub ListTagsForResource { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::ListTagsForResource', @_); return $self->caller->do_call($self, $call_object); } sub StartExperiment { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::StartExperiment', @_); return $self->caller->do_call($self, $call_object); } sub StopExperiment { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::StopExperiment', @_); return $self->caller->do_call($self, $call_object); } sub TagResource { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::TagResource', @_); return $self->caller->do_call($self, $call_object); } sub UntagResource { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::UntagResource', @_); return $self->caller->do_call($self, $call_object); } sub UpdateExperimentTemplate { my $self = shift; my $call_object = $self->new_with_coercions('Paws::FIS::UpdateExperimentTemplate', @_); return $self->caller->do_call($self, $call_object); } sub operations { qw/CreateExperimentTemplate DeleteExperimentTemplate GetAction GetExperiment GetExperimentTemplate ListActions ListExperiments ListExperimentTemplates ListTagsForResource StartExperiment StopExperiment TagResource UntagResource UpdateExperimentTemplate / } 1; ### main pod documentation begin ### =head1 NAME Paws::FIS - Perl Interface to AWS AWS Fault Injection Simulator =head1 SYNOPSIS use Paws; my $obj = Paws->service('FIS'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); =head1 DESCRIPTION AWS Fault Injection Simulator is a managed service that enables you to perform fault injection experiments on your AWS workloads. For more information, see the AWS Fault Injection Simulator User Guide (https://docs.aws.amazon.com/fis/latest/userguide/). For the AWS API documentation, see L =head1 METHODS =head2 CreateExperimentTemplate =over =item Actions => L =item ClientToken => Str =item Description => Str =item RoleArn => Str =item StopConditions => ArrayRef[L] =item [Tags => L] =item [Targets => L] =back Each argument is described in detail in: L Returns: a L instance Creates an experiment template. To create a template, specify the following information: =over =item * B: A target can be a specific resource in your AWS environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags. =item * B: The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment. =item * B: If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm. =back For more information, see the AWS Fault Injection Simulator User Guide (https://docs.aws.amazon.com/fis/latest/userguide/). =head2 DeleteExperimentTemplate =over =item Id => Str =back Each argument is described in detail in: L Returns: a L instance Deletes the specified experiment template. =head2 GetAction =over =item Id => Str =back Each argument is described in detail in: L Returns: a L instance Gets information about the specified AWS FIS action. =head2 GetExperiment =over =item Id => Str =back Each argument is described in detail in: L Returns: a L instance Gets information about the specified experiment. =head2 GetExperimentTemplate =over =item Id => Str =back Each argument is described in detail in: L Returns: a L instance Gets information about the specified experiment template. =head2 ListActions =over =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance Lists the available AWS FIS actions. =head2 ListExperiments =over =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance Lists your experiments. =head2 ListExperimentTemplates =over =item [MaxResults => Int] =item [NextToken => Str] =back Each argument is described in detail in: L Returns: a L instance Lists your experiment templates. =head2 ListTagsForResource =over =item ResourceArn => Str =back Each argument is described in detail in: L Returns: a L instance Lists the tags for the specified resource. =head2 StartExperiment =over =item ClientToken => Str =item ExperimentTemplateId => Str =item [Tags => L] =back Each argument is described in detail in: L Returns: a L instance Starts running an experiment from the specified experiment template. =head2 StopExperiment =over =item Id => Str =back Each argument is described in detail in: L Returns: a L instance Stops the specified experiment. =head2 TagResource =over =item ResourceArn => Str =item Tags => L =back Each argument is described in detail in: L Returns: a L instance Applies the specified tags to the specified resource. =head2 UntagResource =over =item ResourceArn => Str =item [TagKeys => ArrayRef[Str|Undef]] =back Each argument is described in detail in: L Returns: a L instance Removes the specified tags from the specified resource. =head2 UpdateExperimentTemplate =over =item Id => Str =item [Actions => L] =item [Description => Str] =item [RoleArn => Str] =item [StopConditions => ArrayRef[L]] =item [Targets => L] =back Each argument is described in detail in: L Returns: a L instance Updates the specified experiment template. =head1 PAGINATORS Paginator methods are helpers that repetively call methods that return partial results =head1 SEE ALSO This service class forms part of L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut