Package-level declarations

Types

Link copied to clipboard
class Detector : KotlinCustomResource

A resource schema for a Detector in Amazon Fraud Detector.

Link copied to clipboard
data class DetectorArgs(val associatedModels: Output<List<DetectorModelArgs>>? = null, val description: Output<String>? = null, val detectorId: Output<String>? = null, val detectorVersionStatus: Output<DetectorVersionStatus>? = null, val eventType: Output<DetectorEventTypeArgs>? = null, val ruleExecutionMode: Output<DetectorRuleExecutionMode>? = null, val rules: Output<List<DetectorRuleArgs>>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<DetectorArgs>

A resource schema for a Detector in Amazon Fraud Detector.

Link copied to clipboard
Link copied to clipboard
object DetectorMapper : ResourceMapper<Detector>
Link copied to clipboard
Link copied to clipboard
class EntityType : KotlinCustomResource

An entity type for fraud detector.

Link copied to clipboard
data class EntityTypeArgs(val description: Output<String>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<EntityTypeArgs>

An entity type for fraud detector.

Link copied to clipboard
Link copied to clipboard
object EntityTypeMapper : ResourceMapper<EntityType>
Link copied to clipboard
Link copied to clipboard
class EventType : KotlinCustomResource

A resource schema for an EventType in Amazon Fraud Detector.

Link copied to clipboard
data class EventTypeArgs(val description: Output<String>? = null, val entityTypes: Output<List<EventTypeEntityTypeArgs>>? = null, val eventVariables: Output<List<EventTypeEventVariableArgs>>? = null, val labels: Output<List<EventTypeLabelArgs>>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<EventTypeArgs>

A resource schema for an EventType in Amazon Fraud Detector.

Link copied to clipboard
Link copied to clipboard
object EventTypeMapper : ResourceMapper<EventType>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
class Label : KotlinCustomResource

An label for fraud detector.

Link copied to clipboard
data class LabelArgs(val description: Output<String>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<LabelArgs>

An label for fraud detector.

Link copied to clipboard

Builder for LabelArgs.

Link copied to clipboard
object LabelMapper : ResourceMapper<Label>
Link copied to clipboard

Builder for Label.

Link copied to clipboard
class List : KotlinCustomResource

A resource schema for a List in Amazon Fraud Detector.

Link copied to clipboard
data class ListArgs(val description: Output<String>? = null, val elements: Output<List<String>>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null, val variableType: Output<String>? = null) : ConvertibleToJava<ListArgs>

A resource schema for a List in Amazon Fraud Detector.

Link copied to clipboard

Builder for ListArgs.

Link copied to clipboard
object ListMapper : ResourceMapper<List>
Link copied to clipboard

Builder for List.

Link copied to clipboard
class Outcome : KotlinCustomResource

An outcome for rule evaluation.

Link copied to clipboard
data class OutcomeArgs(val description: Output<String>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<OutcomeArgs>

An outcome for rule evaluation.

Link copied to clipboard
Link copied to clipboard
object OutcomeMapper : ResourceMapper<Outcome>
Link copied to clipboard
Link copied to clipboard
class Variable : KotlinCustomResource

A resource schema for a Variable in Amazon Fraud Detector.

Link copied to clipboard
data class VariableArgs(val dataSource: Output<VariableDataSource>? = null, val dataType: Output<VariableDataType>? = null, val defaultValue: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val tags: Output<List<TagArgs>>? = null, val variableType: Output<VariableType>? = null) : ConvertibleToJava<VariableArgs>

A resource schema for a Variable in Amazon Fraud Detector.

Link copied to clipboard
Link copied to clipboard
object VariableMapper : ResourceMapper<Variable>
Link copied to clipboard

Functions

Link copied to clipboard
suspend fun detector(name: String, block: suspend DetectorResourceBuilder.() -> Unit): Detector
Link copied to clipboard
suspend fun entityType(name: String, block: suspend EntityTypeResourceBuilder.() -> Unit): EntityType
Link copied to clipboard
suspend fun eventType(name: String, block: suspend EventTypeResourceBuilder.() -> Unit): EventType
Link copied to clipboard
fun label(name: String): Label
suspend fun label(name: String, block: suspend LabelResourceBuilder.() -> Unit): Label
Link copied to clipboard
fun list(name: String): List
suspend fun list(name: String, block: suspend ListResourceBuilder.() -> Unit): List
Link copied to clipboard
fun outcome(name: String): Outcome
suspend fun outcome(name: String, block: suspend OutcomeResourceBuilder.() -> Unit): Outcome
Link copied to clipboard
suspend fun variable(name: String, block: suspend VariableResourceBuilder.() -> Unit): Variable