Class CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
Account takeover actions type.
public class CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty : CfnUserPoolRiskConfigurationAttachment.IAccountTakeoverActionsTypeProperty
- Inheritance
-
CfnUserPoolRiskConfigurationAttachment.AccountTakeoverActionsTypeProperty
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Cognito;
var accountTakeoverActionsTypeProperty = new AccountTakeoverActionsTypeProperty {
HighAction = new AccountTakeoverActionTypeProperty {
EventAction = "eventAction",
Notify = false
},
LowAction = new AccountTakeoverActionTypeProperty {
EventAction = "eventAction",
Notify = false
},
MediumAction = new AccountTakeoverActionTypeProperty {
EventAction = "eventAction",
Notify = false
}
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
AccountTakeoverActionsTypeProperty()
public AccountTakeoverActionsTypeProperty()
Properties
HighAction
Action to take for a high risk.
public object? HighAction { get; set; }
Property Value
Remarks
LowAction
Action to take for a low risk.
public object? LowAction { get; set; }
Property Value
Remarks
MediumAction
Action to take for a medium risk.
public object? MediumAction { get; set; }