Show / Hide Table of Contents

Interface VoiceIdEvaluateSessionAction.ISession

(experimental) Type definition for Session.

Namespace: Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface VoiceIdEvaluateSessionAction.ISession
Syntax (vb)
Public Interface VoiceIdEvaluateSessionAction.ISession
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.VoiceID.Events;

             var session = new Session {
                 AuthenticationResult = new AuthenticationResult {
                     AudioAggregationEndedAt = new [] { "audioAggregationEndedAt" },
                     AudioAggregationStartedAt = new [] { "audioAggregationStartedAt" },
                     AuthenticationResultId = new [] { "authenticationResultId" },
                     Configuration = new ConfigurationAuthentication {
                         AcceptanceThreshold = new [] { "acceptanceThreshold" }
                     },
                     Decision = new [] { "decision" },
                     Score = new [] { "score" }
                 },
                 FraudDetectionResult = new FraudDetectionResult {
                     AudioAggregationEndedAt = new [] { "audioAggregationEndedAt" },
                     AudioAggregationStartedAt = new [] { "audioAggregationStartedAt" },
                     Configuration = new ConfigurationFraud {
                         RiskThreshold = new [] { "riskThreshold" },
                         WatchlistId = new [] { "watchlistId" }
                     },
                     Decision = new [] { "decision" },
                     FraudDetectionResultId = new [] { "fraudDetectionResultId" },
                     Reasons = new [] { "reasons" },
                     RiskDetails = new RiskDetails {
                         KnownFraudsterRisk = new KnownFraudsterRisk {
                             GeneratedFraudsterId = new [] { "generatedFraudsterId" },
                             RiskScore = new [] { "riskScore" }
                         },
                         VoiceSpoofingRisk = new VoiceSpoofingRisk {
                             RiskScore = new [] { "riskScore" }
                         }
                     }
                 },
                 GeneratedSpeakerId = new [] { "generatedSpeakerId" },
                 SessionId = new [] { "sessionId" },
                 SessionName = new [] { "sessionName" },
                 StreamingStatus = new [] { "streamingStatus" }
             };

Synopsis

Properties

AuthenticationResult

(experimental) authenticationResult property.

FraudDetectionResult

(experimental) fraudDetectionResult property.

GeneratedSpeakerId

(experimental) generatedSpeakerId property.

SessionId

(experimental) sessionId property.

SessionName

(experimental) sessionName property.

StreamingStatus

(experimental) streamingStatus property.

Properties

AuthenticationResult

(experimental) authenticationResult property.

VoiceIdEvaluateSessionAction.IAuthenticationResult? AuthenticationResult { get; }
Property Value

VoiceIdEvaluateSessionAction.IAuthenticationResult

Remarks

Specify an array of string values to match this event if the actual value of authenticationResult is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

FraudDetectionResult

(experimental) fraudDetectionResult property.

VoiceIdEvaluateSessionAction.IFraudDetectionResult? FraudDetectionResult { get; }
Property Value

VoiceIdEvaluateSessionAction.IFraudDetectionResult

Remarks

Specify an array of string values to match this event if the actual value of fraudDetectionResult is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

GeneratedSpeakerId

(experimental) generatedSpeakerId property.

string[]? GeneratedSpeakerId { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of generatedSpeakerId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

SessionId

(experimental) sessionId property.

string[]? SessionId { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of sessionId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

SessionName

(experimental) sessionName property.

string[]? SessionName { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of sessionName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

StreamingStatus

(experimental) streamingStatus property.

string[]? StreamingStatus { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of streamingStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Back to top Generated by DocFX