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::CognitoIdp::SetRiskConfiguration; use Moose; has AccountTakeoverRiskConfiguration => (is => 'ro', isa => 'Paws::CognitoIdp::AccountTakeoverRiskConfigurationType'); has ClientId => (is => 'ro', isa => 'Str'); has CompromisedCredentialsRiskConfiguration => (is => 'ro', isa => 'Paws::CognitoIdp::CompromisedCredentialsRiskConfigurationType'); has RiskExceptionConfiguration => (is => 'ro', isa => 'Paws::CognitoIdp::RiskExceptionConfigurationType'); has UserPoolId => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'SetRiskConfiguration'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CognitoIdp::SetRiskConfigurationResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::CognitoIdp::SetRiskConfiguration - Arguments for method SetRiskConfiguration on L =head1 DESCRIPTION This class represents the parameters used for calling the method SetRiskConfiguration on the L service. Use the attributes of this class as arguments to method SetRiskConfiguration. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SetRiskConfiguration. =head1 SYNOPSIS my $cognito-idp = Paws->service('CognitoIdp'); my $SetRiskConfigurationResponse = $cognito -idp->SetRiskConfiguration( UserPoolId => 'MyUserPoolIdType', AccountTakeoverRiskConfiguration => { Actions => { HighAction => { EventAction => 'BLOCK' , # values: BLOCK, MFA_IF_CONFIGURED, MFA_REQUIRED, NO_ACTION Notify => 1, }, # OPTIONAL LowAction => { EventAction => 'BLOCK' , # values: BLOCK, MFA_IF_CONFIGURED, MFA_REQUIRED, NO_ACTION Notify => 1, }, # OPTIONAL MediumAction => { EventAction => 'BLOCK' , # values: BLOCK, MFA_IF_CONFIGURED, MFA_REQUIRED, NO_ACTION Notify => 1, }, # OPTIONAL }, NotifyConfiguration => { SourceArn => 'MyArnType', # min: 20, max: 2048 BlockEmail => { Subject => 'MyEmailNotificationSubjectType', # min: 1, max: 140 HtmlBody => 'MyEmailNotificationBodyType', # min: 6, max: 20000; OPTIONAL TextBody => 'MyEmailNotificationBodyType', # min: 6, max: 20000; OPTIONAL }, # OPTIONAL From => 'MyStringType', # OPTIONAL MfaEmail => { Subject => 'MyEmailNotificationSubjectType', # min: 1, max: 140 HtmlBody => 'MyEmailNotificationBodyType', # min: 6, max: 20000; OPTIONAL TextBody => 'MyEmailNotificationBodyType', # min: 6, max: 20000; OPTIONAL }, # OPTIONAL NoActionEmail => { Subject => 'MyEmailNotificationSubjectType', # min: 1, max: 140 HtmlBody => 'MyEmailNotificationBodyType', # min: 6, max: 20000; OPTIONAL TextBody => 'MyEmailNotificationBodyType', # min: 6, max: 20000; OPTIONAL }, # OPTIONAL ReplyTo => 'MyStringType', # OPTIONAL }, # OPTIONAL }, # OPTIONAL ClientId => 'MyClientIdType', # OPTIONAL CompromisedCredentialsRiskConfiguration => { Actions => { EventAction => 'BLOCK', # values: BLOCK, NO_ACTION }, EventFilter => [ 'SIGN_IN', ... # values: SIGN_IN, PASSWORD_CHANGE, SIGN_UP ], # OPTIONAL }, # OPTIONAL RiskExceptionConfiguration => { BlockedIPRangeList => [ 'MyStringType', ... # OPTIONAL ], # max: 20; OPTIONAL SkippedIPRangeList => [ 'MyStringType', ... # OPTIONAL ], # max: 20; OPTIONAL }, # OPTIONAL ); # Results: my $RiskConfiguration = $SetRiskConfigurationResponse->RiskConfiguration; # Returns a L object. 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 AccountTakeoverRiskConfiguration => L The account takeover risk configuration. =head2 ClientId => Str The app client ID. If C is null, then the risk configuration is mapped to C. When the client ID is null, the same risk configuration is applied to all the clients in the userPool. Otherwise, C is mapped to the client. When the client ID is not null, the user pool configuration is overridden and the risk configuration for the client is used instead. =head2 CompromisedCredentialsRiskConfiguration => L The compromised credentials risk configuration. =head2 RiskExceptionConfiguration => L The configuration to override the risk decision. =head2 B UserPoolId => Str The user pool ID. =head1 SEE ALSO This class forms part of L, documenting arguments for method SetRiskConfiguration in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut