1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Limits that are related to concurrency and storage. All file and storage sizes
// are in bytes.
type AccountLimit struct {
// The maximum size of a function's deployment package and layers when they're
// extracted.
CodeSizeUnzipped int64
// The maximum size of a deployment package when it's uploaded directly to Lambda.
// Use Amazon S3 for larger files.
CodeSizeZipped int64
// The maximum number of simultaneous function executions.
ConcurrentExecutions int32
// The amount of storage space that you can use for all deployment packages and
// layer archives.
TotalCodeSize int64
// The maximum number of simultaneous function executions, minus the capacity
// that's reserved for individual functions with PutFunctionConcurrency .
UnreservedConcurrentExecutions *int32
noSmithyDocumentSerde
}
// The number of functions and amount of storage in use.
type AccountUsage struct {
// The number of Lambda functions.
FunctionCount int64
// The amount of storage space, in bytes, that's being used by deployment packages
// and layer archives.
TotalCodeSize int64
noSmithyDocumentSerde
}
// Provides configuration information about a Lambda function alias (https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
// .
type AliasConfiguration struct {
// The Amazon Resource Name (ARN) of the alias.
AliasArn *string
// A description of the alias.
Description *string
// The function version that the alias invokes.
FunctionVersion *string
// The name of the alias.
Name *string
// A unique identifier that changes when you update the alias.
RevisionId *string
// The routing configuration (https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html)
// of the alias.
RoutingConfig *AliasRoutingConfiguration
noSmithyDocumentSerde
}
// The traffic-shifting (https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html)
// configuration of a Lambda function alias.
type AliasRoutingConfiguration struct {
// The second version, and the percentage of traffic that's routed to it.
AdditionalVersionWeights map[string]float64
noSmithyDocumentSerde
}
// List of signing profiles that can sign a code package.
type AllowedPublishers struct {
// The Amazon Resource Name (ARN) for each of the signing profiles. A signing
// profile defines a trusted user who can sign a code package.
//
// This member is required.
SigningProfileVersionArns []string
noSmithyDocumentSerde
}
// Specific configuration settings for an Amazon Managed Streaming for Apache
// Kafka (Amazon MSK) event source.
type AmazonManagedKafkaEventSourceConfig struct {
// The identifier for the Kafka consumer group to join. The consumer group ID must
// be unique among all your Kafka event sources. After creating a Kafka event
// source mapping with the consumer group ID specified, you cannot update this
// value. For more information, see Customizable consumer group ID (https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id)
// .
ConsumerGroupId *string
noSmithyDocumentSerde
}
// Details about a Code signing configuration (https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html)
// .
type CodeSigningConfig struct {
// List of allowed publishers.
//
// This member is required.
AllowedPublishers *AllowedPublishers
// The Amazon Resource Name (ARN) of the Code signing configuration.
//
// This member is required.
CodeSigningConfigArn *string
// Unique identifer for the Code signing configuration.
//
// This member is required.
CodeSigningConfigId *string
// The code signing policy controls the validation failure action for signature
// mismatch or expiry.
//
// This member is required.
CodeSigningPolicies *CodeSigningPolicies
// The date and time that the Code signing configuration was last modified, in
// ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).
//
// This member is required.
LastModified *string
// Code signing configuration description.
Description *string
noSmithyDocumentSerde
}
// Code signing configuration policies (https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html#config-codesigning-policies)
// specify the validation failure action for signature mismatch or expiry.
type CodeSigningPolicies struct {
// Code signing configuration policy for deployment validation failure. If you set
// the policy to Enforce , Lambda blocks the deployment request if signature
// validation checks fail. If you set the policy to Warn , Lambda allows the
// deployment and creates a CloudWatch log. Default value: Warn
UntrustedArtifactOnDeployment CodeSigningPolicy
noSmithyDocumentSerde
}
type Concurrency struct {
// The number of concurrent executions that are reserved for this function. For
// more information, see Managing Lambda reserved concurrency (https://docs.aws.amazon.com/lambda/latest/dg/configuration-concurrency.html)
// .
ReservedConcurrentExecutions *int32
noSmithyDocumentSerde
}
// The cross-origin resource sharing (CORS) (https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)
// settings for your Lambda function URL. Use CORS to grant access to your function
// URL from any origin. You can also use CORS to control access for specific HTTP
// headers and methods in requests to your function URL.
type Cors struct {
// Whether to allow cookies or other credentials in requests to your function URL.
// The default is false .
AllowCredentials *bool
// The HTTP headers that origins can include in requests to your function URL. For
// example: Date , Keep-Alive , X-Custom-Header .
AllowHeaders []string
// The HTTP methods that are allowed when calling your function URL. For example:
// GET , POST , DELETE , or the wildcard character ( * ).
AllowMethods []string
// The origins that can access your function URL. You can list any number of
// specific origins, separated by a comma. For example: https://www.example.com ,
// http://localhost:60905 . Alternatively, you can grant access to all origins
// using the wildcard character ( * ).
AllowOrigins []string
// The HTTP headers in your function response that you want to expose to origins
// that call your function URL. For example: Date , Keep-Alive , X-Custom-Header .
ExposeHeaders []string
// The maximum amount of time, in seconds, that web browsers can cache results of
// a preflight request. By default, this is set to 0 , which means that the browser
// doesn't cache results.
MaxAge *int32
noSmithyDocumentSerde
}
// The dead-letter queue (https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq)
// for failed asynchronous invocations.
type DeadLetterConfig struct {
// The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
TargetArn *string
noSmithyDocumentSerde
}
// A configuration object that specifies the destination of an event after Lambda
// processes it.
type DestinationConfig struct {
// The destination configuration for failed invocations.
OnFailure *OnFailure
// The destination configuration for successful invocations.
OnSuccess *OnSuccess
noSmithyDocumentSerde
}
// Specific configuration settings for a DocumentDB event source.
type DocumentDBEventSourceConfig struct {
// The name of the collection to consume within the database. If you do not
// specify a collection, Lambda consumes all collections.
CollectionName *string
// The name of the database to consume within the DocumentDB cluster.
DatabaseName *string
// Determines what DocumentDB sends to your event stream during document update
// operations. If set to UpdateLookup, DocumentDB sends a delta describing the
// changes, along with a copy of the entire document. Otherwise, DocumentDB sends
// only a partial document that contains the changes.
FullDocument FullDocument
noSmithyDocumentSerde
}
// A function's environment variable settings. You can use environment variables
// to adjust your function's behavior without updating code. An environment
// variable is a pair of strings that are stored in a function's version-specific
// configuration.
type Environment struct {
// Environment variable key-value pairs. For more information, see Using Lambda
// environment variables (https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html)
// .
Variables map[string]string
noSmithyDocumentSerde
}
// Error messages for environment variables that couldn't be applied.
type EnvironmentError struct {
// The error code.
ErrorCode *string
// The error message.
Message *string
noSmithyDocumentSerde
}
// The results of an operation to update or read environment variables. If the
// operation succeeds, the response contains the environment variables. If it
// fails, the response contains details about the error.
type EnvironmentResponse struct {
// Error messages for environment variables that couldn't be applied.
Error *EnvironmentError
// Environment variable key-value pairs. Omitted from CloudTrail logs.
Variables map[string]string
noSmithyDocumentSerde
}
// The size of the function's /tmp directory in MB. The default value is 512, but
// it can be any whole number between 512 and 10,240 MB.
type EphemeralStorage struct {
// The size of the function's /tmp directory.
//
// This member is required.
Size *int32
noSmithyDocumentSerde
}
// A mapping between an Amazon Web Services resource and a Lambda function. For
// details, see CreateEventSourceMapping .
type EventSourceMappingConfiguration struct {
// Specific configuration settings for an Amazon Managed Streaming for Apache
// Kafka (Amazon MSK) event source.
AmazonManagedKafkaEventSourceConfig *AmazonManagedKafkaEventSourceConfig
// The maximum number of records in each batch that Lambda pulls from your stream
// or queue and sends to your function. Lambda passes all of the records in the
// batch to the function in a single call, up to the payload limit for synchronous
// invocation (6 MB). Default value: Varies by service. For Amazon SQS, the default
// is 10. For all other services, the default is 100. Related setting: When you set
// BatchSize to a value greater than 10, you must set
// MaximumBatchingWindowInSeconds to at least 1.
BatchSize *int32
// (Kinesis and DynamoDB Streams only) If the function returns an error, split the
// batch in two and retry. The default value is false.
BisectBatchOnFunctionError *bool
// (Kinesis and DynamoDB Streams only) An Amazon SQS queue or Amazon SNS topic
// destination for discarded records.
DestinationConfig *DestinationConfig
// Specific configuration settings for a DocumentDB event source.
DocumentDBEventSourceConfig *DocumentDBEventSourceConfig
// The Amazon Resource Name (ARN) of the event source.
EventSourceArn *string
// An object that defines the filter criteria that determine whether Lambda should
// process an event. For more information, see Lambda event filtering (https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html)
// .
FilterCriteria *FilterCriteria
// The ARN of the Lambda function.
FunctionArn *string
// (Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response type
// enums applied to the event source mapping.
FunctionResponseTypes []FunctionResponseType
// The date that the event source mapping was last updated or that its state
// changed.
LastModified *time.Time
// The result of the last Lambda invocation of your function.
LastProcessingResult *string
// The maximum amount of time, in seconds, that Lambda spends gathering records
// before invoking the function. You can configure MaximumBatchingWindowInSeconds
// to any value from 0 seconds to 300 seconds in increments of seconds. For streams
// and Amazon SQS event sources, the default batching window is 0 seconds. For
// Amazon MSK, Self-managed Apache Kafka, Amazon MQ, and DocumentDB event sources,
// the default batching window is 500 ms. Note that because you can only change
// MaximumBatchingWindowInSeconds in increments of seconds, you cannot revert back
// to the 500 ms default batching window after you have changed it. To restore the
// default batching window, you must create a new event source mapping. Related
// setting: For streams and Amazon SQS event sources, when you set BatchSize to a
// value greater than 10, you must set MaximumBatchingWindowInSeconds to at least
// 1.
MaximumBatchingWindowInSeconds *int32
// (Kinesis and DynamoDB Streams only) Discard records older than the specified
// age. The default value is -1, which sets the maximum age to infinite. When the
// value is set to infinite, Lambda never discards old records. The minimum valid
// value for maximum record age is 60s. Although values less than 60 and greater
// than -1 fall within the parameter's absolute range, they are not allowed
MaximumRecordAgeInSeconds *int32
// (Kinesis and DynamoDB Streams only) Discard records after the specified number
// of retries. The default value is -1, which sets the maximum number of retries to
// infinite. When MaximumRetryAttempts is infinite, Lambda retries failed records
// until the record expires in the event source.
MaximumRetryAttempts *int32
// (Kinesis and DynamoDB Streams only) The number of batches to process
// concurrently from each shard. The default value is 1.
ParallelizationFactor *int32
// (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.
Queues []string
// (Amazon SQS only) The scaling configuration for the event source. For more
// information, see Configuring maximum concurrency for Amazon SQS event sources (https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency)
// .
ScalingConfig *ScalingConfig
// The self-managed Apache Kafka cluster for your event source.
SelfManagedEventSource *SelfManagedEventSource
// Specific configuration settings for a self-managed Apache Kafka event source.
SelfManagedKafkaEventSourceConfig *SelfManagedKafkaEventSourceConfig
// An array of the authentication protocol, VPC components, or virtual host to
// secure and define your event source.
SourceAccessConfigurations []SourceAccessConfiguration
// The position in a stream from which to start reading. Required for Amazon
// Kinesis and Amazon DynamoDB Stream event sources. AT_TIMESTAMP is supported
// only for Amazon Kinesis streams, Amazon DocumentDB, Amazon MSK, and self-managed
// Apache Kafka.
StartingPosition EventSourcePosition
// With StartingPosition set to AT_TIMESTAMP , the time from which to start
// reading. StartingPositionTimestamp cannot be in the future.
StartingPositionTimestamp *time.Time
// The state of the event source mapping. It can be one of the following: Creating
// , Enabling , Enabled , Disabling , Disabled , Updating , or Deleting .
State *string
// Indicates whether a user or Lambda made the last change to the event source
// mapping.
StateTransitionReason *string
// The name of the Kafka topic.
Topics []string
// (Kinesis and DynamoDB Streams only) The duration in seconds of a processing
// window for DynamoDB and Kinesis Streams event sources. A value of 0 seconds
// indicates no tumbling window.
TumblingWindowInSeconds *int32
// The identifier of the event source mapping.
UUID *string
noSmithyDocumentSerde
}
// Details about the connection between a Lambda function and an Amazon EFS file
// system (https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html)
// .
type FileSystemConfig struct {
// The Amazon Resource Name (ARN) of the Amazon EFS access point that provides
// access to the file system.
//
// This member is required.
Arn *string
// The path where the function can access the file system, starting with /mnt/ .
//
// This member is required.
LocalMountPath *string
noSmithyDocumentSerde
}
// A structure within a FilterCriteria object that defines an event filtering
// pattern.
type Filter struct {
// A filter pattern. For more information on the syntax of a filter pattern, see
// Filter rule syntax (https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-syntax)
// .
Pattern *string
noSmithyDocumentSerde
}
// An object that contains the filters for an event source.
type FilterCriteria struct {
// A list of filters.
Filters []Filter
noSmithyDocumentSerde
}
// The code for the Lambda function. You can either specify an object in Amazon
// S3, upload a .zip file archive deployment package directly, or specify the URI
// of a container image.
type FunctionCode struct {
// URI of a container image (https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html)
// in the Amazon ECR registry.
ImageUri *string
// An Amazon S3 bucket in the same Amazon Web Services Region as your function.
// The bucket can be in a different Amazon Web Services account.
S3Bucket *string
// The Amazon S3 key of the deployment package.
S3Key *string
// For versioned objects, the version of the deployment package object to use.
S3ObjectVersion *string
// The base64-encoded contents of the deployment package. Amazon Web Services SDK
// and CLI clients handle the encoding for you.
ZipFile []byte
noSmithyDocumentSerde
}
// Details about a function's deployment package.
type FunctionCodeLocation struct {
// URI of a container image in the Amazon ECR registry.
ImageUri *string
// A presigned URL that you can use to download the deployment package.
Location *string
// The service that's hosting the file.
RepositoryType *string
// The resolved URI for the image.
ResolvedImageUri *string
noSmithyDocumentSerde
}
// Details about a function's configuration.
type FunctionConfiguration struct {
// The instruction set architecture that the function supports. Architecture is a
// string array with one of the valid values. The default architecture value is
// x86_64 .
Architectures []Architecture
// The SHA256 hash of the function's deployment package.
CodeSha256 *string
// The size of the function's deployment package, in bytes.
CodeSize int64
// The function's dead letter queue.
DeadLetterConfig *DeadLetterConfig
// The function's description.
Description *string
// The function's environment variables (https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html)
// . Omitted from CloudTrail logs.
Environment *EnvironmentResponse
// The size of the function’s /tmp directory in MB. The default value is 512, but
// it can be any whole number between 512 and 10,240 MB.
EphemeralStorage *EphemeralStorage
// Connection settings for an Amazon EFS file system (https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html)
// .
FileSystemConfigs []FileSystemConfig
// The function's Amazon Resource Name (ARN).
FunctionArn *string
// The name of the function.
FunctionName *string
// The function that Lambda calls to begin running your function.
Handler *string
// The function's image configuration values.
ImageConfigResponse *ImageConfigResponse
// The KMS key that's used to encrypt the function's environment variables (https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html#configuration-envvars-encryption)
// . When Lambda SnapStart (https://docs.aws.amazon.com/lambda/latest/dg/snapstart-security.html)
// is activated, this key is also used to encrypt the function's snapshot. This key
// is returned only if you've configured a customer managed key.
KMSKeyArn *string
// The date and time that the function was last updated, in ISO-8601 format (https://www.w3.org/TR/NOTE-datetime)
// (YYYY-MM-DDThh:mm:ss.sTZD).
LastModified *string
// The status of the last update that was performed on the function. This is first
// set to Successful after function creation completes.
LastUpdateStatus LastUpdateStatus
// The reason for the last update that was performed on the function.
LastUpdateStatusReason *string
// The reason code for the last update that was performed on the function.
LastUpdateStatusReasonCode LastUpdateStatusReasonCode
// The function's layers (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)
// .
Layers []Layer
// The function's Amazon CloudWatch Logs configuration settings.
LoggingConfig *LoggingConfig
// For Lambda@Edge functions, the ARN of the main function.
MasterArn *string
// The amount of memory available to the function at runtime.
MemorySize *int32
// The type of deployment package. Set to Image for container image and set Zip
// for .zip file archive.
PackageType PackageType
// The latest updated revision of the function or alias.
RevisionId *string
// The function's execution role.
Role *string
// The identifier of the function's runtime (https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html)
// . Runtime is required if the deployment package is a .zip file archive. The
// following list includes deprecated runtimes. For more information, see Runtime
// deprecation policy (https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy)
// .
Runtime Runtime
// The ARN of the runtime and any errors that occured.
RuntimeVersionConfig *RuntimeVersionConfig
// The ARN of the signing job.
SigningJobArn *string
// The ARN of the signing profile version.
SigningProfileVersionArn *string
// Set ApplyOn to PublishedVersions to create a snapshot of the initialized
// execution environment when you publish a function version. For more information,
// see Improving startup performance with Lambda SnapStart (https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html)
// .
SnapStart *SnapStartResponse
// The current state of the function. When the state is Inactive , you can
// reactivate the function by invoking it.
State State
// The reason for the function's current state.
StateReason *string
// The reason code for the function's current state. When the code is Creating ,
// you can't invoke or modify the function.
StateReasonCode StateReasonCode
// The amount of time in seconds that Lambda allows a function to run before
// stopping it.
Timeout *int32
// The function's X-Ray tracing configuration.
TracingConfig *TracingConfigResponse
// The version of the Lambda function.
Version *string
// The function's networking configuration.
VpcConfig *VpcConfigResponse
noSmithyDocumentSerde
}
type FunctionEventInvokeConfig struct {
// A destination for events after they have been sent to a function for
// processing. Destinations
// - Function - The Amazon Resource Name (ARN) of a Lambda function.
// - Queue - The ARN of a standard SQS queue.
// - Topic - The ARN of a standard SNS topic.
// - Event Bus - The ARN of an Amazon EventBridge event bus.
DestinationConfig *DestinationConfig
// The Amazon Resource Name (ARN) of the function.
FunctionArn *string
// The date and time that the configuration was last updated.
LastModified *time.Time
// The maximum age of a request that Lambda sends to a function for processing.
MaximumEventAgeInSeconds *int32
// The maximum number of times to retry when the function returns an error.
MaximumRetryAttempts *int32
noSmithyDocumentSerde
}
// Details about a Lambda function URL.
type FunctionUrlConfig struct {
// The type of authentication that your function URL uses. Set to AWS_IAM if you
// want to restrict access to authenticated users only. Set to NONE if you want to
// bypass IAM authentication to create a public endpoint. For more information, see
// Security and auth model for Lambda function URLs (https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html)
// .
//
// This member is required.
AuthType FunctionUrlAuthType
// When the function URL was created, in ISO-8601 format (https://www.w3.org/TR/NOTE-datetime)
// (YYYY-MM-DDThh:mm:ss.sTZD).
//
// This member is required.
CreationTime *string
// The Amazon Resource Name (ARN) of your function.
//
// This member is required.
FunctionArn *string
// The HTTP URL endpoint for your function.
//
// This member is required.
FunctionUrl *string
// When the function URL configuration was last updated, in ISO-8601 format (https://www.w3.org/TR/NOTE-datetime)
// (YYYY-MM-DDThh:mm:ss.sTZD).
//
// This member is required.
LastModifiedTime *string
// The cross-origin resource sharing (CORS) (https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)
// settings for your function URL.
Cors *Cors
// Use one of the following options:
// - BUFFERED – This is the default option. Lambda invokes your function using
// the Invoke API operation. Invocation results are available when the payload is
// complete. The maximum payload size is 6 MB.
// - RESPONSE_STREAM – Your function streams payload results as they become
// available. Lambda invokes your function using the InvokeWithResponseStream API
// operation. The maximum response payload size is 20 MB, however, you can
// request a quota increase (https://docs.aws.amazon.com/servicequotas/latest/userguide/request-quota-increase.html)
// .
InvokeMode InvokeMode
noSmithyDocumentSerde
}
// Configuration values that override the container image Dockerfile settings. For
// more information, see Container image settings (https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms)
// .
type ImageConfig struct {
// Specifies parameters that you want to pass in with ENTRYPOINT.
Command []string
// Specifies the entry point to their application, which is typically the location
// of the runtime executable.
EntryPoint []string
// Specifies the working directory.
WorkingDirectory *string
noSmithyDocumentSerde
}
// Error response to GetFunctionConfiguration .
type ImageConfigError struct {
// Error code.
ErrorCode *string
// Error message.
Message *string
noSmithyDocumentSerde
}
// Response to a GetFunctionConfiguration request.
type ImageConfigResponse struct {
// Error response to GetFunctionConfiguration .
Error *ImageConfigError
// Configuration values that override the container image Dockerfile.
ImageConfig *ImageConfig
noSmithyDocumentSerde
}
// A chunk of the streamed response payload.
type InvokeResponseStreamUpdate struct {
// Data returned by your Lambda function.
Payload []byte
noSmithyDocumentSerde
}
// A response confirming that the event stream is complete.
type InvokeWithResponseStreamCompleteEvent struct {
// An error code.
ErrorCode *string
// The details of any returned error.
ErrorDetails *string
// The last 4 KB of the execution log, which is base64-encoded.
LogResult *string
noSmithyDocumentSerde
}
// An object that includes a chunk of the response payload. When the stream has
// ended, Lambda includes a InvokeComplete object.
//
// The following types satisfy this interface:
//
// InvokeWithResponseStreamResponseEventMemberInvokeComplete
// InvokeWithResponseStreamResponseEventMemberPayloadChunk
type InvokeWithResponseStreamResponseEvent interface {
isInvokeWithResponseStreamResponseEvent()
}
// An object that's returned when the stream has ended and all the payload chunks
// have been returned.
type InvokeWithResponseStreamResponseEventMemberInvokeComplete struct {
Value InvokeWithResponseStreamCompleteEvent
noSmithyDocumentSerde
}
func (*InvokeWithResponseStreamResponseEventMemberInvokeComplete) isInvokeWithResponseStreamResponseEvent() {
}
// A chunk of the streamed response payload.
type InvokeWithResponseStreamResponseEventMemberPayloadChunk struct {
Value InvokeResponseStreamUpdate
noSmithyDocumentSerde
}
func (*InvokeWithResponseStreamResponseEventMemberPayloadChunk) isInvokeWithResponseStreamResponseEvent() {
}
// An Lambda layer (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)
// .
type Layer struct {
// The Amazon Resource Name (ARN) of the function layer.
Arn *string
// The size of the layer archive in bytes.
CodeSize int64
// The Amazon Resource Name (ARN) of a signing job.
SigningJobArn *string
// The Amazon Resource Name (ARN) for a signing profile version.
SigningProfileVersionArn *string
noSmithyDocumentSerde
}
// Details about an Lambda layer (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)
// .
type LayersListItem struct {
// The newest version of the layer.
LatestMatchingVersion *LayerVersionsListItem
// The Amazon Resource Name (ARN) of the function layer.
LayerArn *string
// The name of the layer.
LayerName *string
noSmithyDocumentSerde
}
// A ZIP archive that contains the contents of an Lambda layer (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)
// . You can specify either an Amazon S3 location, or upload a layer archive
// directly.
type LayerVersionContentInput struct {
// The Amazon S3 bucket of the layer archive.
S3Bucket *string
// The Amazon S3 key of the layer archive.
S3Key *string
// For versioned objects, the version of the layer archive object to use.
S3ObjectVersion *string
// The base64-encoded contents of the layer archive. Amazon Web Services SDK and
// Amazon Web Services CLI clients handle the encoding for you.
ZipFile []byte
noSmithyDocumentSerde
}
// Details about a version of an Lambda layer (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)
// .
type LayerVersionContentOutput struct {
// The SHA-256 hash of the layer archive.
CodeSha256 *string
// The size of the layer archive in bytes.
CodeSize int64
// A link to the layer archive in Amazon S3 that is valid for 10 minutes.
Location *string
// The Amazon Resource Name (ARN) of a signing job.
SigningJobArn *string
// The Amazon Resource Name (ARN) for a signing profile version.
SigningProfileVersionArn *string
noSmithyDocumentSerde
}
// Details about a version of an Lambda layer (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html)
// .
type LayerVersionsListItem struct {
// A list of compatible instruction set architectures (https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html)
// .
CompatibleArchitectures []Architecture
// The layer's compatible runtimes. The following list includes deprecated
// runtimes. For more information, see Runtime deprecation policy (https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy)
// .
CompatibleRuntimes []Runtime
// The date that the version was created, in ISO 8601 format. For example,
// 2018-11-27T15:10:45.123+0000 .
CreatedDate *string
// The description of the version.
Description *string
// The ARN of the layer version.
LayerVersionArn *string
// The layer's open-source license.
LicenseInfo *string
// The version number.
Version int64
noSmithyDocumentSerde
}
// The function's Amazon CloudWatch Logs configuration settings.
type LoggingConfig struct {
// Set this property to filter the application logs for your function that Lambda
// sends to CloudWatch. Lambda only sends application logs at the selected level
// and lower.
ApplicationLogLevel ApplicationLogLevel
// The format in which Lambda sends your function's application and system logs to
// CloudWatch. Select between plain text and structured JSON.
LogFormat LogFormat
// The name of the Amazon CloudWatch log group the function sends logs to. By
// default, Lambda functions send logs to a default log group named /aws/lambda/ .
// To use a different log group, enter an existing log group or enter a new log
// group name.
LogGroup *string
// Set this property to filter the system logs for your function that Lambda sends
// to CloudWatch. Lambda only sends system logs at the selected level and lower.
SystemLogLevel SystemLogLevel
noSmithyDocumentSerde
}
// A destination for events that failed processing.
type OnFailure struct {
// The Amazon Resource Name (ARN) of the destination resource.
Destination *string
noSmithyDocumentSerde
}
// A destination for events that were processed successfully.
type OnSuccess struct {
// The Amazon Resource Name (ARN) of the destination resource.
Destination *string
noSmithyDocumentSerde
}
// Details about the provisioned concurrency configuration for a function alias or
// version.
type ProvisionedConcurrencyConfigListItem struct {
// The amount of provisioned concurrency allocated. When a weighted alias is used
// during linear and canary deployments, this value fluctuates depending on the
// amount of concurrency that is provisioned for the function versions.
AllocatedProvisionedConcurrentExecutions *int32
// The amount of provisioned concurrency available.
AvailableProvisionedConcurrentExecutions *int32
// The Amazon Resource Name (ARN) of the alias or version.
FunctionArn *string
// The date and time that a user last updated the configuration, in ISO 8601 format (https://www.iso.org/iso-8601-date-and-time-format.html)
// .
LastModified *string
// The amount of provisioned concurrency requested.
RequestedProvisionedConcurrentExecutions *int32
// The status of the allocation process.
Status ProvisionedConcurrencyStatusEnum
// For failed allocations, the reason that provisioned concurrency could not be
// allocated.
StatusReason *string
noSmithyDocumentSerde
}
// The ARN of the runtime and any errors that occured.
type RuntimeVersionConfig struct {
// Error response when Lambda is unable to retrieve the runtime version for a
// function.
Error *RuntimeVersionError
// The ARN of the runtime version you want the function to use.
RuntimeVersionArn *string
noSmithyDocumentSerde
}
// Any error returned when the runtime version information for the function could
// not be retrieved.
type RuntimeVersionError struct {
// The error code.
ErrorCode *string
// The error message.
Message *string
noSmithyDocumentSerde
}
// (Amazon SQS only) The scaling configuration for the event source. To remove the
// configuration, pass an empty value.
type ScalingConfig struct {
// Limits the number of concurrent instances that the Amazon SQS event source can
// invoke.
MaximumConcurrency *int32
noSmithyDocumentSerde
}
// The self-managed Apache Kafka cluster for your event source.
type SelfManagedEventSource struct {
// The list of bootstrap servers for your Kafka brokers in the following format:
// "KAFKA_BOOTSTRAP_SERVERS": ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"] .
Endpoints map[string][]string
noSmithyDocumentSerde
}
// Specific configuration settings for a self-managed Apache Kafka event source.
type SelfManagedKafkaEventSourceConfig struct {
// The identifier for the Kafka consumer group to join. The consumer group ID must
// be unique among all your Kafka event sources. After creating a Kafka event
// source mapping with the consumer group ID specified, you cannot update this
// value. For more information, see Customizable consumer group ID (https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id)
// .
ConsumerGroupId *string
noSmithyDocumentSerde
}
// The function's Lambda SnapStart (https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html)
// setting. Set ApplyOn to PublishedVersions to create a snapshot of the
// initialized execution environment when you publish a function version.
type SnapStart struct {
// Set to PublishedVersions to create a snapshot of the initialized execution
// environment when you publish a function version.
ApplyOn SnapStartApplyOn
noSmithyDocumentSerde
}
// The function's SnapStart (https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html)
// setting.
type SnapStartResponse struct {
// When set to PublishedVersions , Lambda creates a snapshot of the execution
// environment when you publish a function version.
ApplyOn SnapStartApplyOn
// When you provide a qualified Amazon Resource Name (ARN) (https://docs.aws.amazon.com/lambda/latest/dg/configuration-versions.html#versioning-versions-using)
// , this response element indicates whether SnapStart is activated for the
// specified function version.
OptimizationStatus SnapStartOptimizationStatus
noSmithyDocumentSerde
}
// To secure and define access to your event source, you can specify the
// authentication protocol, VPC components, or virtual host.
type SourceAccessConfiguration struct {
// The type of authentication protocol, VPC components, or virtual host for your
// event source. For example: "Type":"SASL_SCRAM_512_AUTH" .
// - BASIC_AUTH – (Amazon MQ) The Secrets Manager secret that stores your broker
// credentials.
// - BASIC_AUTH – (Self-managed Apache Kafka) The Secrets Manager ARN of your
// secret key used for SASL/PLAIN authentication of your Apache Kafka brokers.
// - VPC_SUBNET – (Self-managed Apache Kafka) The subnets associated with your
// VPC. Lambda connects to these subnets to fetch data from your self-managed
// Apache Kafka cluster.
// - VPC_SECURITY_GROUP – (Self-managed Apache Kafka) The VPC security group used
// to manage access to your self-managed Apache Kafka brokers.
// - SASL_SCRAM_256_AUTH – (Self-managed Apache Kafka) The Secrets Manager ARN of
// your secret key used for SASL SCRAM-256 authentication of your self-managed
// Apache Kafka brokers.
// - SASL_SCRAM_512_AUTH – (Amazon MSK, Self-managed Apache Kafka) The Secrets
// Manager ARN of your secret key used for SASL SCRAM-512 authentication of your
// self-managed Apache Kafka brokers.
// - VIRTUAL_HOST –- (RabbitMQ) The name of the virtual host in your RabbitMQ
// broker. Lambda uses this RabbitMQ host as the event source. This property cannot
// be specified in an UpdateEventSourceMapping API call.
// - CLIENT_CERTIFICATE_TLS_AUTH – (Amazon MSK, self-managed Apache Kafka) The
// Secrets Manager ARN of your secret key containing the certificate chain (X.509
// PEM), private key (PKCS#8 PEM), and private key password (optional) used for
// mutual TLS authentication of your MSK/Apache Kafka brokers.
// - SERVER_ROOT_CA_CERTIFICATE – (Self-managed Apache Kafka) The Secrets Manager
// ARN of your secret key containing the root CA certificate (X.509 PEM) used for
// TLS encryption of your Apache Kafka brokers.
Type SourceAccessType
// The value for your chosen configuration in Type . For example: "URI":
// "arn:aws:secretsmanager:us-east-1:01234567890:secret:MyBrokerSecretName" .
URI *string
noSmithyDocumentSerde
}
// The function's X-Ray (https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html)
// tracing configuration. To sample and record incoming requests, set Mode to
// Active .
type TracingConfig struct {
// The tracing mode.
Mode TracingMode
noSmithyDocumentSerde
}
// The function's X-Ray tracing configuration.
type TracingConfigResponse struct {
// The tracing mode.
Mode TracingMode
noSmithyDocumentSerde
}
// The VPC security groups and subnets that are attached to a Lambda function. For
// more information, see Configuring a Lambda function to access resources in a VPC (https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html)
// .
type VpcConfig struct {
// Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack
// subnets.
Ipv6AllowedForDualStack *bool
// A list of VPC security group IDs.
SecurityGroupIds []string
// A list of VPC subnet IDs.
SubnetIds []string
noSmithyDocumentSerde
}
// The VPC security groups and subnets that are attached to a Lambda function.
type VpcConfigResponse struct {
// Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack
// subnets.
Ipv6AllowedForDualStack *bool
// A list of VPC security group IDs.
SecurityGroupIds []string
// A list of VPC subnet IDs.
SubnetIds []string
// The ID of the VPC.
VpcId *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
// UnknownUnionMember is returned when a union member is returned over the wire,
// but has an unknown tag.
type UnknownUnionMember struct {
Tag string
Value []byte
noSmithyDocumentSerde
}
func (*UnknownUnionMember) isInvokeWithResponseStreamResponseEvent() {}
|