repo_name
stringlengths
1
52
repo_creator
stringclasses
6 values
programming_language
stringclasses
4 values
code
stringlengths
0
9.68M
num_lines
int64
1
234k
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-message.html /// </summary> public class CognitoCustomMessageRequest : CognitoTriggerReque...
39
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-message.html /// </summary> public class CognitoCustomMessageResponse : CognitoTriggerResponse { /// <summary> ...
38
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-sms-sender.html /// </summary> public class CognitoCustomSmsSenderEvent : CognitoTriggerEvent<CognitoCustomSmsSenderRequest, CognitoCustomSmsSenderResponse> ...
10
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-sms-sender.html /// </summary> public class CognitoCustomSmsSenderRequest : CognitoTriggerRequest { /// <summary...
29
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-custom-sms-sender.html /// </summary> public class CognitoCustomSmsSenderResponse : CognitoTriggerResponse { } }
10
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-define-auth-challenge.html /// </summary> public class CognitoDefineAuthChallengeEvent : CognitoTriggerEvent<CognitoDefineAuthChallengeRequest, CognitoDefineAuthChallen...
10
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-define-auth-challenge.html /// </summary> public class CognitoDefineAuthChallengeRequest : Cognit...
39
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-define-auth-challenge.html /// </summary> public class CognitoDefineAuthChallengeResponse : CognitoTriggerResponse { //...
38
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.CognitoEvents { using System; using System.Collections.Generic; /// <summary> /// AWS Cognito event /// http://docs.aws.amazon.com/cognito/latest/developerguide/cognito-events.html /// http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html#eventsources-cognito-syn...
72
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-migrate-user.html /// </summary> public class CognitoMigrateUserEvent : CognitoTriggerEvent<CognitoMigrateUserRequest, CognitoMigrate...
12
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-migrate-user.html /// </summary> public class CognitoMigrateUserRequest : CognitoTriggerRequest ...
48
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-migrate-user.html /// </summary> public class CognitoMigrateUserResponse : CognitoTriggerResponse...
57
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-post-authentication.html /// </summary> [DataContract] public class CognitoPostAuthenticationEvent : CognitoTriggerEvent<Cognit...
13
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-post-authentication.html /// </summary> [DataContract] public class CognitoPostAuthentication...
40
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-post-authentication.html /// </summary> [DataContract] public class CognitoPostAuthenticationResponse : CognitoTriggerResponse ...
13
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-post-confirmation.html /// </summary> [DataContract] public class CognitoPostConfirmationEvent : CognitoTriggerEvent<CognitoPos...
13
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-post-confirmation.html /// </summary> [DataContract] public class CognitoPostConfirmationRequ...
22
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-post-confirmation.html /// </summary> [DataContract] public class CognitoPostConfirmationResponse : CognitoTriggerResponse ...
13
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-authentication.html /// </summary> [DataContract] public class CognitoPreAuthenticationEvent : CognitoTriggerEvent<CognitoP...
13
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-authentication.html /// </summary> [DataContract] public class CognitoPreAuthenticationRe...
31
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-authentication.html /// </summary> [DataContract] public class CognitoPreAuthenticationResponse : CognitoTriggerResponse ...
13
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-sign-up.html /// </summary> [DataContract] public class CognitoPreSignupEvent : CognitoTriggerEvent<CognitoPreSignupRequest...
13
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-sign-up.html /// </summary> [DataContract] public class CognitoPreSignupRequest : Cognito...
31
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-sign-up.html /// </summary> [DataContract] public class CognitoPreSignupResponse : CognitoTriggerResponse { ///...
39
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-token-generation.html /// </summary> public class CognitoPreTokenGenerationEvent : CognitoTriggerEvent<CognitoPreTokenGenerationRequest, CognitoPreTokenGenerationRe...
10
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-token-generation.html /// </summary> public class CognitoPreTokenGenerationRequest : CognitoT...
30
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-token-generation.html /// </summary> public class CognitoPreTokenGenerationResponse : CognitoTriggerResponse { /// ...
20
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html#cognito-user-pools-lambda-trigger-syntax-shared /// </summary> [DataContract] ...
31
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// AWS Cognito Trigger Common Parameters /// https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html#cognito-us...
87
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html#cognito-user-pools-lambda-trigger-syntax-shared /// ...
22
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html#cognito-user-pools-lambda-trigger-syntax-shared /// </summary> [DataContract] ...
13
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-verify-auth-challenge-response.html /// </summary> public class CognitoVerifyAuthChallengeEvent : CognitoTriggerEvent<CognitoVerifyAuthChallengeRequest, CognitoVerifyAu...
10
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-verify-auth-challenge-response.html /// </summary> public class CognitoVerifyAuthChallengeRequest...
48
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-verify-auth-challenge-response.html /// </summary> public class CognitoVerifyAuthChallengeResponse : CognitoTriggerResponse { ...
20
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.CognitoEvents { /// <summary> /// https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-lambda-pre-token-generation.html /// </summary> [DataContract] public class GroupConfiguration {...
40
aws-lambda-dotnet
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Amazon.Lambda.CognitoEvents")] [assembly: AssemblyDescription("Lambda event interfaces for Cognito event source.")] [assembly: AssemblyProduct("Amazon Web Services Lambda Interface for .NET")...
13
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.ConfigEvents { using System; /// <summary> /// AWS Config event /// http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_develop-rules.html /// http://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_develop-rules_example-events.html //...
75
aws-lambda-dotnet
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Amazon.Lambda.ConfigEvents")] [assembly: AssemblyDescription("Lambda event interfaces for Config event source.")] [assembly: AssemblyProduct("Amazon Web Services Lambda Interface for .NET")] ...
13
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.ConnectEvents { /// <summary> /// This class represents the input event from Amazon Connect ContactFlow. It is used as the input parameter /// for Lambda functions. /// https://docs.aws.amazon...
130
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { /// <summary> /// Information about the client application that invoked the Lambda function. /// </summary> public interface IClientApplication { /// <summary> /// The application's package name. /// </summary> string AppPackageName { g...
33
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { using System.Collections.Generic; /// <summary> /// Information about client configuration and execution environment. /// </summary> public interface IClientContext { /// <summary> /// Environment information provided by mobile SDK. /// </...
25
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { /// <summary> /// Information related to Amazon Congnito identities. /// </summary> public interface ICognitoIdentity { /// <summary> /// The Amazon Cognito identity ID. /// </summary> string IdentityId { get; } /// <summary> ...
18
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { using System; /// <summary> /// Object that allows you to access useful information available within /// the Lambda execution environment. /// </summary> public interface ILambdaContext { /// <summary> /// The AWS request ID associated with the...
88
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { #if NET6_0_OR_GREATER /// <summary> /// Log Level for logging messages /// </summary> public enum LogLevel { /// <summary> /// Trace level logging /// </summary> Trace = 0, /// <summary> /// Debug level logging /...
148
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { using System.IO; /// <summary> /// Interface that must be implemented by custom serializers that /// may need to be called during execution. /// </summary> public interface ILambdaSerializer { /// <summary> /// This method is called to deserial...
31
aws-lambda-dotnet
aws
C#
using System; namespace Amazon.Lambda.Core { /// <summary> /// Static class which sends a message to AWS CloudWatch Logs. /// When used outside of a Lambda environment, logs are written to /// Console.Out. /// </summary> public static class LambdaLogger { // Logging action, logs ...
34
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.Core { using System; /// <summary> /// This attribute is required for serialization of input/output parameters of /// a Lambda function if your Lambda function uses types other than string or /// System.IO.Stream as input/output parameters. /// /// This attribute ca...
33
aws-lambda-dotnet
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Amazon.Lambda.Core")] [assembly: AssemblyDescription("Core interfaces for Lambda.")] [assembly: AssemblyProduct("Amazon Web Services Lambda Interface for .NET")] [assembly: AssemblyCompany("A...
13
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.DynamoDBEvents { using Amazon.DynamoDBv2.Model; using System; using System.Collections.Generic; /// <summary> /// AWS DynamoDB event /// http://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html /// http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html#events...
33
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.DynamoDBEvents { using System.Collections.Generic; using System.Runtime.Serialization; /// <summary> /// This class is used as the return type for AWS Lambda functions that are invoked by DynamoDB to report batch item failures. /// https://docs.aws.amazon.com/lambda/lates...
38
aws-lambda-dotnet
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Amazon.Lambda.DynamoDBEvents")] [assembly: AssemblyDescription("Lambda event interfaces for DynamoDB event source.")] [assembly: AssemblyProduct("Amazon Web Services Lambda Interface for .NET...
13
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.KafkaEvents { using System.Collections.Generic; using System.IO; /// <summary> /// Apache Kafka event /// https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html /// https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html /// </summary> public class Ka...
80
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.KinesisAnalyticsEvents { /// <summary> /// This class represents the event from Kinesis Analytics application to preprocess Kinesis Firehose data. /// </summary> [DataContract] public clas...
134
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.KinesisAnalyticsEvents { /// <summary> /// This class represents the response from Lambda function for Kinesis Analytics input preprocessing. /// </summary> [DataContract] public class Kin...
94
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.KinesisAnalyticsEvents { /// <summary> /// This class represents the event from Kinesis Analytics application output. /// </summary> [DataContract] public class KinesisAnalyticsOutputDeliv...
104
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.KinesisAnalyticsEvents { /// <summary> /// This class represents the response from Lambda function for Kinesis Analytics output delivery. /// </summary> [DataContract] public class Kinesis...
68
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.KinesisAnalyticsEvents { /// <summary> /// This class represents the event from Kinesis Analytics application to preprocess Kinesis stream data. /// </summary> [DataContract] public class ...
160
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.KinesisEvents { using System; using System.Collections.Generic; /// <summary> /// AWS Kinesis stream event /// http://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html /// http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html#eventsources-kinesis-streams ...
77
aws-lambda-dotnet
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Amazon.Lambda.KinesisEvents")] [assembly: AssemblyDescription("Lambda event interfaces for Kinesis event source.")] [assembly: AssemblyProduct("Amazon Web Services Lambda Interface for .NET")...
13
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace Amazon.Lambda.KinesisFirehoseEvents { /// <summary> /// This class represents the input event from Amazon Kinesis Firehose. It used as the input parameter /// for Lambda fu...
97
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace Amazon.Lambda.KinesisFirehoseEvents { /// <summary> /// The response for the Lambda functions handling Kinesis Firehose transformations. /// </summary> [DataContract] ...
133
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexEvents { /// <summary> /// One or more contexts that are active during this turn of a conversation with the user. /// </summary> [DataContract] public class LexActiveContext { /// <summar...
64
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexEvents { /// <summary> /// This class represents the input event from Amazon Lex. It used as the input parameter /// for Lambda functions. /// http://docs.aws.amazon.com/lex/latest/dg/lambd...
187
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexEvents { /// <summary> /// The class recent intent summary view. /// </summary> [DataContract] public class LexRecentIntentSummaryViewType { /// <summary> /// Gets and sets the In...
76
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.LexEvents { using System; using System.Collections.Generic; using System.Runtime.Serialization; /// <summary> /// This class is used as the return for AWS Lambda functions that are invoked by Lex to handle Bot interactions. /// http://docs.aws.amazon.com/lex/latest/dg...
260
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; namespace Amazon.Lambda.LexV2Events { /// <summary> /// A class that represents Kendra Response /// https://docs.aws.amazon.com/kendra/latest/dg/API_Query.html#API_Query_ResponseSyntax /// </summary> public class KendraResponse { /// <...
369
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// Contains information about the contexts that a user is using in a session. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_ActiveContext.html /// </summary> [...
57
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class identifies the Lex V2 bot that is invoking the Lambda function. /// </summary> public class LexV2Bot { /// <summary> /// The unique identifier assigned to the bot. /// </summary> public string Id { g...
34
aws-lambda-dotnet
aws
C#
using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class that represents the next action that Amazon Lex V2 should take. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_DialogAction.html /// </summary> [DataContract] public class LexV2...
34
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// This class represents the input event from Amazon Lex V2. It used as the input parameter /// for Lambda functions. /// https://docs.aws.amazon.com/lexv2/latest/...
80
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class that represents the current intent that Amazon Lex V2 is attempting to fulfill. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_Intent.html /// </summar...
49
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.LexV2Events { /// <summary> /// An intent that Amazon Lex V2 determined might satisfy the user's utterance. The intents are ordered by the confidence score. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_Interpretation.html /// </summary> public class LexV2Int...
73
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class that represents the container for text that is returned to the customer. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_Message.html /// </summary> ...
93
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.LexV2Events { /// <summary> /// Contains information about the next action that the bot will take if the Lambda function sets the dialogAction to Delegate. /// https://docs.aws.amazon.com/lexv2/latest/dg/lambda.html#request-proposednextstate /// </summary> public class Lex...
20
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// This class represents response from the Lambda function. /// https://docs.aws.amazon.com/lexv2/latest/dg/lambda.html#lambda-response-format /// </summary> [...
37
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class that represents the state of the user's session with Amazon Lex V2. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_SessionState.html /// </summary> ...
102
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; using System.Runtime.Serialization; namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class that represents a value that Amazon Lex V2 uses to fulfill an intent. /// https://docs.aws.amazon.com/lexv2/latest/dg/API_runtime_Slot.html /// </summary> [Data...
65
aws-lambda-dotnet
aws
C#
using System.Collections.Generic; namespace Amazon.Lambda.LexV2Events { /// <summary> /// The class that represents the Amazon Lex V2 Transcription that possibly matches to the user's audio utterance. /// https://docs.aws.amazon.com/lexv2/latest/dg/using-transcript-confidence-scores.html /// </summa...
44
aws-lambda-dotnet
aws
C#
using Microsoft.Extensions.Logging; using System; // Same namespace as IConfiguration, to make these extensions appear // without the user needing to including our namespace first. namespace Microsoft.Extensions.Configuration { /// <summary> /// IConfiguration extensions /// </summary> public static...
53
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Text; using Microsoft.Extensions.Configuration; // Same namespace as ILoggingBuilder, to make these extensions appear // without the user needing to including our namespace first. namespace Microsoft.Extensions.Logging { /// <summary> /// ILogging...
81
aws-lambda-dotnet
aws
C#
using Microsoft.Extensions.Configuration; using System; // Same namespace as ILoggerFactory, to make these extensions appear // without the user needing to including our namespace first. namespace Microsoft.Extensions.Logging { /// <summary> /// ILoggerFactory extensions /// </summary> public static...
104
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; namespace Microsoft.Extensions.Logging { internal class LambdaILogger : ILogger { // Private fields private readonly string _categoryName; private readonly LambdaLoggerOptions _options; internal IExternalScopeProvider ScopeProvider { get; set; } // Cons...
110
aws-lambda-dotnet
aws
C#
using Amazon.Lambda.Logging.AspNetCore; using System; using System.Collections.Concurrent; namespace Microsoft.Extensions.Logging { /// <summary> /// The ILoggerProvider implementation that is added to the ASP.NET Core logging system to create loggers /// that will send the messages to the CloudWatch Lo...
71
aws-lambda-dotnet
aws
C#
using Microsoft.Extensions.Configuration; using System; using System.Collections.Generic; using System.Linq; namespace Microsoft.Extensions.Logging { /// <summary> /// Options that can be used to configure Lambda logging. /// </summary> public class LambdaLoggerOptions { // Default confi...
262
aws-lambda-dotnet
aws
C#
using Microsoft.Extensions.Logging; using System; namespace Amazon.Lambda.Logging.AspNetCore { /// <summary> /// Scope provider that does nothing. /// </summary> internal class NullExternalScopeProvider : IExternalScopeProvider { private NullExternalScopeProvider() { } ...
45
aws-lambda-dotnet
aws
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Amazon.Lambda.Logging.AspNetCore")] [assembly: AssemblyDescription("ASP.NET Core logging support for Lambda.")] [assembly: AssemblyProduct("Amazon Web Services Lambda Interface for .NET")] [a...
13
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.MQEvents { using System; using System.Collections.Generic; /// <summary> /// Apache ActiveMQ event /// https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html /// </summary> public class ActiveMQEvent { /// <summary> /// The source of the eve...
100
aws-lambda-dotnet
aws
C#
namespace Amazon.Lambda.MQEvents { using System; using System.Collections.Generic; /// <summary> /// RabbitMQ event /// https://docs.aws.amazon.com/lambda/latest/dg/with-mq.html /// </summary> public class RabbitMQEvent { /// <summary> /// The source of the event. ...
131
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Reflection; using System.Reflection.Emit; using System.Management.Automation; using System.Globalization; namespace Amazon.Lambda.PowerShellHost { /// <summary> /// Handles converting the errors coming from PowerShell to .NET Exceptions /// <...
242
aws-lambda-dotnet
aws
C#
using System; using System.Collections.Generic; using System.Text; namespace Amazon.Lambda.PowerShellHost { /// <summary> /// Exceptions thrown from errors running the PowerShell script /// </summary> public class LambdaPowerShellException : Exception { /// <summary> /// Exceptio...
35
aws-lambda-dotnet
aws
C#
using Amazon.Lambda.Core; using System; using System.IO; using System.Linq; using System.Management.Automation; using System.Management.Automation.Runspaces; using System.Reflection; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace Amazon.Lambda.PowerShellHost { /...
379
aws-lambda-dotnet
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
37
aws-lambda-dotnet
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
65
aws-lambda-dotnet
aws
C#
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" ...
44
aws-lambda-dotnet
aws
C#
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licens...
742
aws-lambda-dotnet
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
392
aws-lambda-dotnet
aws
C#
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licens...
275
aws-lambda-dotnet
aws
C#
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licens...
463
aws-lambda-dotnet
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
205
aws-lambda-dotnet
aws
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
50