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 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Contains details about an API destination.
type ApiDestination struct {
// The ARN of the API destination.
ApiDestinationArn *string
// The state of the API destination.
ApiDestinationState ApiDestinationState
// The ARN of the connection specified for the API destination.
ConnectionArn *string
// A time stamp for the time that the API destination was created.
CreationTime *time.Time
// The method to use to connect to the HTTP endpoint.
HttpMethod ApiDestinationHttpMethod
// The URL to the endpoint for the API destination.
InvocationEndpoint *string
// The maximum number of invocations per second to send to the HTTP endpoint.
InvocationRateLimitPerSecond *int32
// A time stamp for the time that the API destination was last modified.
LastModifiedTime *time.Time
// The name of the API destination.
Name *string
noSmithyDocumentSerde
}
// An Archive object that contains details about an archive.
type Archive struct {
// The name of the archive.
ArchiveName *string
// The time stamp for the time that the archive was created.
CreationTime *time.Time
// The number of events in the archive.
EventCount int64
// The ARN of the event bus associated with the archive. Only events from this
// event bus are sent to the archive.
EventSourceArn *string
// The number of days to retain events in the archive before they are deleted.
RetentionDays *int32
// The size of the archive, in bytes.
SizeBytes int64
// The current state of the archive.
State ArchiveState
// A description for the reason that the archive is in the current state.
StateReason *string
noSmithyDocumentSerde
}
// This structure specifies the VPC subnets and security groups for the task, and
// whether a public IP address is to be used. This structure is relevant only for
// ECS tasks that use the awsvpc network mode.
type AwsVpcConfiguration struct {
// Specifies the subnets associated with the task. These subnets must all be in
// the same VPC. You can specify as many as 16 subnets.
//
// This member is required.
Subnets []string
// Specifies whether the task's elastic network interface receives a public IP
// address. You can specify ENABLED only when LaunchType in EcsParameters is set
// to FARGATE .
AssignPublicIp AssignPublicIp
// Specifies the security groups associated with the task. These security groups
// must all be in the same VPC. You can specify as many as five security groups. If
// you do not specify a security group, the default security group for the VPC is
// used.
SecurityGroups []string
noSmithyDocumentSerde
}
// The array properties for the submitted job, such as the size of the array. The
// array size can be between 2 and 10,000. If you specify array properties for a
// job, it becomes an array job. This parameter is used only if the target is an
// Batch job.
type BatchArrayProperties struct {
// The size of the array, if this is an array batch job. Valid values are integers
// between 2 and 10,000.
Size int32
noSmithyDocumentSerde
}
// The custom parameters to be used when the target is an Batch job.
type BatchParameters struct {
// The ARN or name of the job definition to use if the event target is an Batch
// job. This job definition must already exist.
//
// This member is required.
JobDefinition *string
// The name to use for this execution of the job, if the target is an Batch job.
//
// This member is required.
JobName *string
// The array properties for the submitted job, such as the size of the array. The
// array size can be between 2 and 10,000. If you specify array properties for a
// job, it becomes an array job. This parameter is used only if the target is an
// Batch job.
ArrayProperties *BatchArrayProperties
// The retry strategy to use for failed jobs, if the target is an Batch job. The
// retry strategy is the number of times to retry the failed job execution. Valid
// values are 1–10. When you specify a retry strategy here, it overrides the retry
// strategy defined in the job definition.
RetryStrategy *BatchRetryStrategy
noSmithyDocumentSerde
}
// The retry strategy to use for failed jobs, if the target is an Batch job. If
// you specify a retry strategy here, it overrides the retry strategy defined in
// the job definition.
type BatchRetryStrategy struct {
// The number of times to attempt to retry, if the job fails. Valid values are
// 1–10.
Attempts int32
noSmithyDocumentSerde
}
// The details of a capacity provider strategy. To learn more, see
// CapacityProviderStrategyItem (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CapacityProviderStrategyItem.html)
// in the Amazon ECS API Reference.
type CapacityProviderStrategyItem struct {
// The short name of the capacity provider.
//
// This member is required.
CapacityProvider *string
// The base value designates how many tasks, at a minimum, to run on the specified
// capacity provider. Only one capacity provider in a capacity provider strategy
// can have a base defined. If no value is specified, the default value of 0 is
// used.
Base int32
// The weight value designates the relative percentage of the total number of
// tasks launched that should use the specified capacity provider. The weight value
// is taken into consideration after the base value, if defined, is satisfied.
Weight int32
noSmithyDocumentSerde
}
// A JSON string which you can use to limit the event bus permissions you are
// granting to only accounts that fulfill the condition. Currently, the only
// supported condition is membership in a certain Amazon Web Services organization.
// The string must contain Type , Key , and Value fields. The Value field
// specifies the ID of the Amazon Web Services organization. Following is an
// example value for Condition : '{"Type" : "StringEquals", "Key":
// "aws:PrincipalOrgID", "Value": "o-1234567890"}'
type Condition struct {
// Specifies the key for the condition. Currently the only supported key is
// aws:PrincipalOrgID .
//
// This member is required.
Key *string
// Specifies the type of condition. Currently the only supported value is
// StringEquals .
//
// This member is required.
Type *string
// Specifies the value for the key. Currently, this must be the ID of the
// organization.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// Contains information about a connection.
type Connection struct {
// The authorization type specified for the connection.
AuthorizationType ConnectionAuthorizationType
// The ARN of the connection.
ConnectionArn *string
// The state of the connection.
ConnectionState ConnectionState
// A time stamp for the time that the connection was created.
CreationTime *time.Time
// A time stamp for the time that the connection was last authorized.
LastAuthorizedTime *time.Time
// A time stamp for the time that the connection was last modified.
LastModifiedTime *time.Time
// The name of the connection.
Name *string
// The reason that the connection is in the connection state.
StateReason *string
noSmithyDocumentSerde
}
// Contains the authorization parameters for the connection if API Key is
// specified as the authorization type.
type ConnectionApiKeyAuthResponseParameters struct {
// The name of the header to use for the APIKeyValue used for authorization.
ApiKeyName *string
noSmithyDocumentSerde
}
// Contains the authorization parameters to use for the connection.
type ConnectionAuthResponseParameters struct {
// The API Key parameters to use for authorization.
ApiKeyAuthParameters *ConnectionApiKeyAuthResponseParameters
// The authorization parameters for Basic authorization.
BasicAuthParameters *ConnectionBasicAuthResponseParameters
// Additional parameters for the connection that are passed through with every
// invocation to the HTTP endpoint.
InvocationHttpParameters *ConnectionHttpParameters
// The OAuth parameters to use for authorization.
OAuthParameters *ConnectionOAuthResponseParameters
noSmithyDocumentSerde
}
// Contains the authorization parameters for the connection if Basic is specified
// as the authorization type.
type ConnectionBasicAuthResponseParameters struct {
// The user name to use for Basic authorization.
Username *string
noSmithyDocumentSerde
}
// Additional parameter included in the body. You can include up to 100 additional
// body parameters per request. An event payload cannot exceed 64 KB.
type ConnectionBodyParameter struct {
// Specified whether the value is secret.
IsValueSecret bool
// The key for the parameter.
Key *string
// The value associated with the key.
Value *string
noSmithyDocumentSerde
}
// Additional parameter included in the header. You can include up to 100
// additional header parameters per request. An event payload cannot exceed 64 KB.
type ConnectionHeaderParameter struct {
// Specified whether the value is a secret.
IsValueSecret bool
// The key for the parameter.
Key *string
// The value associated with the key.
Value *string
noSmithyDocumentSerde
}
// Contains additional parameters for the connection.
type ConnectionHttpParameters struct {
// Contains additional body string parameters for the connection.
BodyParameters []ConnectionBodyParameter
// Contains additional header parameters for the connection.
HeaderParameters []ConnectionHeaderParameter
// Contains additional query string parameters for the connection.
QueryStringParameters []ConnectionQueryStringParameter
noSmithyDocumentSerde
}
// Contains the client response parameters for the connection when OAuth is
// specified as the authorization type.
type ConnectionOAuthClientResponseParameters struct {
// The client ID associated with the response to the connection request.
ClientID *string
noSmithyDocumentSerde
}
// Contains the response parameters when OAuth is specified as the authorization
// type.
type ConnectionOAuthResponseParameters struct {
// The URL to the HTTP endpoint that authorized the request.
AuthorizationEndpoint *string
// A ConnectionOAuthClientResponseParameters object that contains details about
// the client parameters returned when OAuth is specified as the authorization
// type.
ClientParameters *ConnectionOAuthClientResponseParameters
// The method used to connect to the HTTP endpoint.
HttpMethod ConnectionOAuthHttpMethod
// The additional HTTP parameters used for the OAuth authorization request.
OAuthHttpParameters *ConnectionHttpParameters
noSmithyDocumentSerde
}
// Additional query string parameter for the connection. You can include up to 100
// additional query string parameters per request. Each additional parameter counts
// towards the event payload size, which cannot exceed 64 KB.
type ConnectionQueryStringParameter struct {
// Specifies whether the value is secret.
IsValueSecret bool
// The key for a query string parameter.
Key *string
// The value associated with the key for the query string parameter.
Value *string
noSmithyDocumentSerde
}
// Contains the API key authorization parameters for the connection.
type CreateConnectionApiKeyAuthRequestParameters struct {
// The name of the API key to use for authorization.
//
// This member is required.
ApiKeyName *string
// The value for the API key to use for authorization.
//
// This member is required.
ApiKeyValue *string
noSmithyDocumentSerde
}
// Contains the authorization parameters for the connection.
type CreateConnectionAuthRequestParameters struct {
// A CreateConnectionApiKeyAuthRequestParameters object that contains the API key
// authorization parameters to use for the connection.
ApiKeyAuthParameters *CreateConnectionApiKeyAuthRequestParameters
// A CreateConnectionBasicAuthRequestParameters object that contains the Basic
// authorization parameters to use for the connection.
BasicAuthParameters *CreateConnectionBasicAuthRequestParameters
// A ConnectionHttpParameters object that contains the API key authorization
// parameters to use for the connection. Note that if you include additional
// parameters for the target of a rule via HttpParameters , including query
// strings, the parameters added for the connection take precedence.
InvocationHttpParameters *ConnectionHttpParameters
// A CreateConnectionOAuthRequestParameters object that contains the OAuth
// authorization parameters to use for the connection.
OAuthParameters *CreateConnectionOAuthRequestParameters
noSmithyDocumentSerde
}
// Contains the Basic authorization parameters to use for the connection.
type CreateConnectionBasicAuthRequestParameters struct {
// The password associated with the user name to use for Basic authorization.
//
// This member is required.
Password *string
// The user name to use for Basic authorization.
//
// This member is required.
Username *string
noSmithyDocumentSerde
}
// Contains the Basic authorization parameters to use for the connection.
type CreateConnectionOAuthClientRequestParameters struct {
// The client ID to use for OAuth authorization for the connection.
//
// This member is required.
ClientID *string
// The client secret associated with the client ID to use for OAuth authorization
// for the connection.
//
// This member is required.
ClientSecret *string
noSmithyDocumentSerde
}
// Contains the OAuth authorization parameters to use for the connection.
type CreateConnectionOAuthRequestParameters struct {
// The URL to the authorization endpoint when OAuth is specified as the
// authorization type.
//
// This member is required.
AuthorizationEndpoint *string
// A CreateConnectionOAuthClientRequestParameters object that contains the client
// parameters for OAuth authorization.
//
// This member is required.
ClientParameters *CreateConnectionOAuthClientRequestParameters
// The method to use for the authorization request.
//
// This member is required.
HttpMethod ConnectionOAuthHttpMethod
// A ConnectionHttpParameters object that contains details about the additional
// parameters to use for the connection.
OAuthHttpParameters *ConnectionHttpParameters
noSmithyDocumentSerde
}
// A DeadLetterConfig object that contains information about a dead-letter queue
// configuration.
type DeadLetterConfig struct {
// The ARN of the SQS queue specified as the target for the dead-letter queue.
Arn *string
noSmithyDocumentSerde
}
// The custom parameters to be used when the target is an Amazon ECS task.
type EcsParameters struct {
// The ARN of the task definition to use if the event target is an Amazon ECS task.
//
// This member is required.
TaskDefinitionArn *string
// The capacity provider strategy to use for the task. If a
// capacityProviderStrategy is specified, the launchType parameter must be
// omitted. If no capacityProviderStrategy or launchType is specified, the
// defaultCapacityProviderStrategy for the cluster is used.
CapacityProviderStrategy []CapacityProviderStrategyItem
// Specifies whether to enable Amazon ECS managed tags for the task. For more
// information, see Tagging Your Amazon ECS Resources (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html)
// in the Amazon Elastic Container Service Developer Guide.
EnableECSManagedTags bool
// Whether or not to enable the execute command functionality for the containers
// in this task. If true, this enables execute command functionality on all
// containers in the task.
EnableExecuteCommand bool
// Specifies an ECS task group for the task. The maximum length is 255 characters.
Group *string
// Specifies the launch type on which your task is running. The launch type that
// you specify here must match one of the launch type (compatibilities) of the
// target task. The FARGATE value is supported only in the Regions where Fargate
// witt Amazon ECS is supported. For more information, see Fargate on Amazon ECS (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/AWS-Fargate.html)
// in the Amazon Elastic Container Service Developer Guide.
LaunchType LaunchType
// Use this structure if the Amazon ECS task uses the awsvpc network mode. This
// structure specifies the VPC subnets and security groups associated with the
// task, and whether a public IP address is to be used. This structure is required
// if LaunchType is FARGATE because the awsvpc mode is required for Fargate tasks.
// If you specify NetworkConfiguration when the target ECS task does not use the
// awsvpc network mode, the task fails.
NetworkConfiguration *NetworkConfiguration
// An array of placement constraint objects to use for the task. You can specify
// up to 10 constraints per task (including constraints in the task definition and
// those specified at runtime).
PlacementConstraints []PlacementConstraint
// The placement strategy objects to use for the task. You can specify a maximum
// of five strategy rules per task.
PlacementStrategy []PlacementStrategy
// Specifies the platform version for the task. Specify only the numeric portion
// of the platform version, such as 1.1.0 . This structure is used only if
// LaunchType is FARGATE . For more information about valid platform versions, see
// Fargate Platform Versions (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/platform_versions.html)
// in the Amazon Elastic Container Service Developer Guide.
PlatformVersion *string
// Specifies whether to propagate the tags from the task definition to the task.
// If no value is specified, the tags are not propagated. Tags can only be
// propagated to the task during task creation. To add tags to a task after task
// creation, use the TagResource API action.
PropagateTags PropagateTags
// The reference ID to use for the task.
ReferenceId *string
// The metadata that you apply to the task to help you categorize and organize
// them. Each tag consists of a key and an optional value, both of which you
// define. To learn more, see RunTask (https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html#ECS-RunTask-request-tags)
// in the Amazon ECS API Reference.
Tags []Tag
// The number of tasks to create based on TaskDefinition . The default is 1.
TaskCount *int32
noSmithyDocumentSerde
}
// An event bus receives events from a source and routes them to rules associated
// with that event bus. Your account's default event bus receives events from
// Amazon Web Services services. A custom event bus can receive events from your
// custom applications and services. A partner event bus receives events from an
// event source created by an SaaS partner. These events come from the partners
// services or applications.
type EventBus struct {
// The ARN of the event bus.
Arn *string
// The name of the event bus.
Name *string
// The permissions policy of the event bus, describing which other Amazon Web
// Services accounts can write events to this event bus.
Policy *string
noSmithyDocumentSerde
}
// A partner event source is created by an SaaS partner. If a customer creates a
// partner event bus that matches this event source, that Amazon Web Services
// account can receive events from the partner's applications or services.
type EventSource struct {
// The ARN of the event source.
Arn *string
// The name of the partner that created the event source.
CreatedBy *string
// The date and time the event source was created.
CreationTime *time.Time
// The date and time that the event source will expire, if the Amazon Web Services
// account doesn't create a matching event bus for it.
ExpirationTime *time.Time
// The name of the event source.
Name *string
// The state of the event source. If it is ACTIVE, you have already created a
// matching event bus for this event source, and that event bus is active. If it is
// PENDING, either you haven't yet created a matching event bus, or that event bus
// is deactivated. If it is DELETED, you have created a matching event bus, but the
// event source has since been deleted.
State EventSourceState
noSmithyDocumentSerde
}
// These are custom parameter to be used when the target is an API Gateway REST
// APIs or EventBridge ApiDestinations. In the latter case, these are merged with
// any InvocationParameters specified on the Connection, with any values from the
// Connection taking precedence.
type HttpParameters struct {
// The headers that need to be sent as part of request invoking the API Gateway
// REST API or EventBridge ApiDestination.
HeaderParameters map[string]string
// The path parameter values to be used to populate API Gateway REST API or
// EventBridge ApiDestination path wildcards ("*").
PathParameterValues []string
// The query string keys/values that need to be sent as part of request invoking
// the API Gateway REST API or EventBridge ApiDestination.
QueryStringParameters map[string]string
noSmithyDocumentSerde
}
// Contains the parameters needed for you to provide custom input to a target
// based on one or more pieces of data extracted from the event.
type InputTransformer struct {
// Input template where you specify placeholders that will be filled with the
// values of the keys from InputPathsMap to customize the data sent to the target.
// Enclose each InputPathsMaps value in brackets: <value> The InputTemplate must
// be valid JSON. If InputTemplate is a JSON object (surrounded by curly braces),
// the following restrictions apply:
// - The placeholder cannot be used as an object key.
// The following example shows the syntax for using InputPathsMap and InputTemplate
// . "InputTransformer":
// {
//
// "InputPathsMap": {"instance": "$.detail.instance","status":
// "$.detail.status"},
//
// "InputTemplate": " is in state "
// } To have the InputTemplate include quote marks within a JSON string, escape
// each quote marks with a slash, as in the following example: "InputTransformer":
// {
//
// "InputPathsMap": {"instance": "$.detail.instance","status":
// "$.detail.status"},
//
// "InputTemplate": " is in state \"\""
// } The InputTemplate can also be valid JSON with varibles in quotes or out, as
// in the following example: "InputTransformer":
// {
//
// "InputPathsMap": {"instance": "$.detail.instance","status":
// "$.detail.status"},
//
// "InputTemplate": '{"myInstance": ,"myStatus": " is in state \"\""}'
//
// }
//
// This member is required.
InputTemplate *string
// Map of JSON paths to be extracted from the event. You can then insert these in
// the template in InputTemplate to produce the output you want to be sent to the
// target. InputPathsMap is an array key-value pairs, where each value is a valid
// JSON path. You can have as many as 100 key-value pairs. You must use JSON dot
// notation, not bracket notation. The keys cannot start with "Amazon Web
// Services."
InputPathsMap map[string]string
noSmithyDocumentSerde
}
// This object enables you to specify a JSON path to extract from the event and
// use as the partition key for the Amazon Kinesis data stream, so that you can
// control the shard to which the event goes. If you do not include this parameter,
// the default is to use the eventId as the partition key.
type KinesisParameters struct {
// The JSON path to be extracted from the event and used as the partition key. For
// more information, see Amazon Kinesis Streams Key Concepts (https://docs.aws.amazon.com/streams/latest/dev/key-concepts.html#partition-key)
// in the Amazon Kinesis Streams Developer Guide.
//
// This member is required.
PartitionKeyPath *string
noSmithyDocumentSerde
}
// This structure specifies the network configuration for an ECS task.
type NetworkConfiguration struct {
// Use this structure to specify the VPC subnets and security groups for the task,
// and whether a public IP address is to be used. This structure is relevant only
// for ECS tasks that use the awsvpc network mode.
AwsvpcConfiguration *AwsVpcConfiguration
noSmithyDocumentSerde
}
// A partner event source is created by an SaaS partner. If a customer creates a
// partner event bus that matches this event source, that Amazon Web Services
// account can receive events from the partner's applications or services.
type PartnerEventSource struct {
// The ARN of the partner event source.
Arn *string
// The name of the partner event source.
Name *string
noSmithyDocumentSerde
}
// The Amazon Web Services account that a partner event source has been offered to.
type PartnerEventSourceAccount struct {
// The Amazon Web Services account ID that the partner event source was offered to.
Account *string
// The date and time the event source was created.
CreationTime *time.Time
// The date and time that the event source will expire, if the Amazon Web Services
// account doesn't create a matching event bus for it.
ExpirationTime *time.Time
// The state of the event source. If it is ACTIVE, you have already created a
// matching event bus for this event source, and that event bus is active. If it is
// PENDING, either you haven't yet created a matching event bus, or that event bus
// is deactivated. If it is DELETED, you have created a matching event bus, but the
// event source has since been deleted.
State EventSourceState
noSmithyDocumentSerde
}
// An object representing a constraint on task placement. To learn more, see Task
// Placement Constraints (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html)
// in the Amazon Elastic Container Service Developer Guide.
type PlacementConstraint struct {
// A cluster query language expression to apply to the constraint. You cannot
// specify an expression if the constraint type is distinctInstance . To learn
// more, see Cluster Query Language (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html)
// in the Amazon Elastic Container Service Developer Guide.
Expression *string
// The type of constraint. Use distinctInstance to ensure that each task in a
// particular group is running on a different container instance. Use memberOf to
// restrict the selection to a group of valid candidates.
Type PlacementConstraintType
noSmithyDocumentSerde
}
// The task placement strategy for a task or service. To learn more, see Task
// Placement Strategies (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html)
// in the Amazon Elastic Container Service Service Developer Guide.
type PlacementStrategy struct {
// The field to apply the placement strategy against. For the spread placement
// strategy, valid values are instanceId (or host, which has the same effect), or
// any platform or custom attribute that is applied to a container instance, such
// as attribute:ecs.availability-zone. For the binpack placement strategy, valid
// values are cpu and memory. For the random placement strategy, this field is not
// used.
Field *string
// The type of placement strategy. The random placement strategy randomly places
// tasks on available candidates. The spread placement strategy spreads placement
// across available candidates evenly based on the field parameter. The binpack
// strategy places tasks on available candidates that have the least available
// amount of the resource that is specified with the field parameter. For example,
// if you binpack on memory, a task is placed on the instance with the least amount
// of remaining memory (but still enough to run the task).
Type PlacementStrategyType
noSmithyDocumentSerde
}
// Represents an event to be submitted.
type PutEventsRequestEntry struct {
// A valid JSON string. There is no other schema imposed. The JSON string may
// contain fields and nested subobjects.
Detail *string
// Free-form string used to decide what fields to expect in the event detail.
DetailType *string
// The name or ARN of the event bus to receive the event. Only the rules that are
// associated with this event bus are used to match the event. If you omit this,
// the default event bus is used.
EventBusName *string
// Amazon Web Services resources, identified by Amazon Resource Name (ARN), which
// the event primarily concerns. Any number, including zero, may be present.
Resources []string
// The source of the event.
Source *string
// The time stamp of the event, per RFC3339 (https://www.rfc-editor.org/rfc/rfc3339.txt)
// . If no time stamp is provided, the time stamp of the PutEvents (https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html)
// call is used.
Time *time.Time
// An X-Ray trade header, which is an http header (X-Amzn-Trace-Id) that contains
// the trace-id associated with the event. To learn more about X-Ray trace headers,
// see Tracing header (https://docs.aws.amazon.com/xray/latest/devguide/xray-concepts.html#xray-concepts-tracingheader)
// in the X-Ray Developer Guide.
TraceHeader *string
noSmithyDocumentSerde
}
// Represents an event that failed to be submitted.
type PutEventsResultEntry struct {
// The error code that indicates why the event submission failed.
ErrorCode *string
// The error message that explains why the event submission failed.
ErrorMessage *string
// The ID of the event.
EventId *string
noSmithyDocumentSerde
}
// The details about an event generated by an SaaS partner.
type PutPartnerEventsRequestEntry struct {
// A valid JSON string. There is no other schema imposed. The JSON string may
// contain fields and nested subobjects.
Detail *string
// A free-form string used to decide what fields to expect in the event detail.
DetailType *string
// Amazon Web Services resources, identified by Amazon Resource Name (ARN), which
// the event primarily concerns. Any number, including zero, may be present.
Resources []string
// The event source that is generating the entry.
Source *string
// The date and time of the event.
Time *time.Time
noSmithyDocumentSerde
}
// Represents an event that a partner tried to generate, but failed.
type PutPartnerEventsResultEntry struct {
// The error code that indicates why the event submission failed.
ErrorCode *string
// The error message that explains why the event submission failed.
ErrorMessage *string
// The ID of the event.
EventId *string
noSmithyDocumentSerde
}
// Represents a target that failed to be added to a rule.
type PutTargetsResultEntry struct {
// The error code that indicates why the target addition failed. If the value is
// ConcurrentModificationException , too many requests were made at the same time.
ErrorCode *string
// The error message that explains why the target addition failed.
ErrorMessage *string
// The ID of the target.
TargetId *string
noSmithyDocumentSerde
}
// These are custom parameters to be used when the target is a Amazon Redshift
// cluster to invoke the Amazon Redshift Data API ExecuteStatement based on
// EventBridge events.
type RedshiftDataParameters struct {
// The name of the database. Required when authenticating using temporary
// credentials.
//
// This member is required.
Database *string
// The SQL statement text to run.
//
// This member is required.
Sql *string
// The database user name. Required when authenticating using temporary
// credentials.
DbUser *string
// The name or ARN of the secret that enables access to the database. Required
// when authenticating using Amazon Web Services Secrets Manager.
SecretManagerArn *string
// The name of the SQL statement. You can name the SQL statement when you create
// it to identify the query.
StatementName *string
// Indicates whether to send an event back to EventBridge after the SQL statement
// runs.
WithEvent bool
noSmithyDocumentSerde
}
// Represents a target that failed to be removed from a rule.
type RemoveTargetsResultEntry struct {
// The error code that indicates why the target removal failed. If the value is
// ConcurrentModificationException , too many requests were made at the same time.
ErrorCode *string
// The error message that explains why the target removal failed.
ErrorMessage *string
// The ID of the target.
TargetId *string
noSmithyDocumentSerde
}
// A Replay object that contains details about a replay.
type Replay struct {
// A time stamp for the time to start replaying events. Any event with a creation
// time prior to the EventEndTime specified is replayed.
EventEndTime *time.Time
// A time stamp for the time that the last event was replayed.
EventLastReplayedTime *time.Time
// The ARN of the archive to replay event from.
EventSourceArn *string
// A time stamp for the time to start replaying events. This is determined by the
// time in the event as described in Time (https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEventsRequestEntry.html#eventbridge-Type-PutEventsRequestEntry-Time)
// .
EventStartTime *time.Time
// A time stamp for the time that the replay completed.
ReplayEndTime *time.Time
// The name of the replay.
ReplayName *string
// A time stamp for the time that the replay started.
ReplayStartTime *time.Time
// The current state of the replay.
State ReplayState
// A description of why the replay is in the current state.
StateReason *string
noSmithyDocumentSerde
}
// A ReplayDestination object that contains details about a replay.
type ReplayDestination struct {
// The ARN of the event bus to replay event to. You can replay events only to the
// event bus specified to create the archive.
//
// This member is required.
Arn *string
// A list of ARNs for rules to replay events to.
FilterArns []string
noSmithyDocumentSerde
}
// A RetryPolicy object that includes information about the retry policy settings.
type RetryPolicy struct {
// The maximum amount of time, in seconds, to continue to make retry attempts.
MaximumEventAgeInSeconds *int32
// The maximum number of retry attempts to make before the request fails. Retry
// attempts continue until either the maximum number of attempts is made or until
// the duration of the MaximumEventAgeInSeconds is met.
MaximumRetryAttempts *int32
noSmithyDocumentSerde
}
// Contains information about a rule in Amazon EventBridge.
type Rule struct {
// The Amazon Resource Name (ARN) of the rule.
Arn *string
// The description of the rule.
Description *string
// The name or ARN of the event bus associated with the rule. If you omit this,
// the default event bus is used.
EventBusName *string
// The event pattern of the rule. For more information, see Events and Event
// Patterns (https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html)
// in the Amazon EventBridge User Guide.
EventPattern *string
// If the rule was created on behalf of your account by an Amazon Web Services
// service, this field displays the principal name of the service that created the
// rule.
ManagedBy *string
// The name of the rule.
Name *string
// The Amazon Resource Name (ARN) of the role that is used for target invocation.
// If you're setting an event bus in another account as the target and that account
// granted permission to your account through an organization instead of directly
// by the account ID, you must specify a RoleArn with proper permissions in the
// Target structure, instead of here in this parameter.
RoleArn *string
// The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5
// minutes)". For more information, see Creating an Amazon EventBridge rule that
// runs on a schedule (https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-create-rule-schedule.html)
// .
ScheduleExpression *string
// The state of the rule.
State RuleState
noSmithyDocumentSerde
}
// This parameter contains the criteria (either InstanceIds or a tag) used to
// specify which EC2 instances are to be sent the command.
type RunCommandParameters struct {
// Currently, we support including only one RunCommandTarget block, which
// specifies either an array of InstanceIds or a tag.
//
// This member is required.
RunCommandTargets []RunCommandTarget
noSmithyDocumentSerde
}
// Information about the EC2 instances that are to be sent the command, specified
// as key-value pairs. Each RunCommandTarget block can include only one key, but
// this key may specify multiple values.
type RunCommandTarget struct {
// Can be either tag: tag-key or InstanceIds .
//
// This member is required.
Key *string
// If Key is tag: tag-key, Values is a list of tag values. If Key is InstanceIds ,
// Values is a list of Amazon EC2 instance IDs.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// Name/Value pair of a parameter to start execution of a SageMaker Model Building
// Pipeline.
type SageMakerPipelineParameter struct {
// Name of parameter to start execution of a SageMaker Model Building Pipeline.
//
// This member is required.
Name *string
// Value of parameter to start execution of a SageMaker Model Building Pipeline.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// These are custom parameters to use when the target is a SageMaker Model
// Building Pipeline that starts based on EventBridge events.
type SageMakerPipelineParameters struct {
// List of Parameter names and values for SageMaker Model Building Pipeline
// execution.
PipelineParameterList []SageMakerPipelineParameter
noSmithyDocumentSerde
}
// This structure includes the custom parameter to be used when the target is an
// SQS FIFO queue.
type SqsParameters struct {
// The FIFO message group ID to use as the target.
MessageGroupId *string
noSmithyDocumentSerde
}
// A key-value pair associated with an Amazon Web Services resource. In
// EventBridge, rules and event buses support tagging.
type Tag struct {
// A string you can use to assign a value. The combination of tag keys and values
// can help you organize and categorize your resources.
//
// This member is required.
Key *string
// The value for the specified tag key.
//
// This member is required.
Value *string
noSmithyDocumentSerde
}
// Targets are the resources to be invoked when a rule is triggered. For a
// complete list of services and resources that can be set as a target, see
// PutTargets (https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutTargets.html)
// . If you are setting the event bus of another account as the target, and that
// account granted permission to your account through an organization instead of
// directly by the account ID, then you must specify a RoleArn with proper
// permissions in the Target structure. For more information, see Sending and
// Receiving Events Between Amazon Web Services Accounts (https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-cross-account-event-delivery.html)
// in the Amazon EventBridge User Guide.
type Target struct {
// The Amazon Resource Name (ARN) of the target.
//
// This member is required.
Arn *string
// The ID of the target. We recommend using a memorable and unique string.
//
// This member is required.
Id *string
// If the event target is an Batch job, this contains the job definition, job
// name, and other parameters. For more information, see Jobs (https://docs.aws.amazon.com/batch/latest/userguide/jobs.html)
// in the Batch User Guide.
BatchParameters *BatchParameters
// The DeadLetterConfig that defines the target queue to send dead-letter queue
// events to.
DeadLetterConfig *DeadLetterConfig
// Contains the Amazon ECS task definition and task count to be used, if the event
// target is an Amazon ECS task. For more information about Amazon ECS tasks, see
// Task Definitions (https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html)
// in the Amazon EC2 Container Service Developer Guide.
EcsParameters *EcsParameters
// Contains the HTTP parameters to use when the target is a API Gateway REST
// endpoint or EventBridge ApiDestination. If you specify an API Gateway REST API
// or EventBridge ApiDestination as a target, you can use this parameter to specify
// headers, path parameters, and query string keys/values as part of your target
// invoking request. If you're using ApiDestinations, the corresponding Connection
// can also have these values configured. In case of any conflicting keys, values
// from the Connection take precedence.
HttpParameters *HttpParameters
// Valid JSON text passed to the target. In this case, nothing from the event
// itself is passed to the target. For more information, see The JavaScript Object
// Notation (JSON) Data Interchange Format (http://www.rfc-editor.org/rfc/rfc7159.txt)
// .
Input *string
// The value of the JSONPath that is used for extracting part of the matched event
// when passing it to the target. You must use JSON dot notation, not bracket
// notation. For more information about JSON paths, see JSONPath (http://goessner.net/articles/JsonPath/)
// .
InputPath *string
// Settings to enable you to provide custom input to a target based on certain
// event data. You can extract one or more key-value pairs from the event and then
// use that data to send customized input to the target.
InputTransformer *InputTransformer
// The custom parameter you can use to control the shard assignment, when the
// target is a Kinesis data stream. If you do not include this parameter, the
// default is to use the eventId as the partition key.
KinesisParameters *KinesisParameters
// Contains the Amazon Redshift Data API parameters to use when the target is a
// Amazon Redshift cluster. If you specify a Amazon Redshift Cluster as a Target,
// you can use this to specify parameters to invoke the Amazon Redshift Data API
// ExecuteStatement based on EventBridge events.
RedshiftDataParameters *RedshiftDataParameters
// The RetryPolicy object that contains the retry policy configuration to use for
// the dead-letter queue.
RetryPolicy *RetryPolicy
// The Amazon Resource Name (ARN) of the IAM role to be used for this target when
// the rule is triggered. If one rule triggers multiple targets, you can use a
// different IAM role for each target.
RoleArn *string
// Parameters used when you are using the rule to invoke Amazon EC2 Run Command.
RunCommandParameters *RunCommandParameters
// Contains the SageMaker Model Building Pipeline parameters to start execution of
// a SageMaker Model Building Pipeline. If you specify a SageMaker Model Building
// Pipeline as a target, you can use this to specify parameters to start a pipeline
// execution based on EventBridge events.
SageMakerPipelineParameters *SageMakerPipelineParameters
// Contains the message group ID to use when the target is a FIFO queue. If you
// specify an SQS FIFO queue as a target, the queue must have content-based
// deduplication enabled.
SqsParameters *SqsParameters
noSmithyDocumentSerde
}
// Contains the API key authorization parameters to use to update the connection.
type UpdateConnectionApiKeyAuthRequestParameters struct {
// The name of the API key to use for authorization.
ApiKeyName *string
// The value associated with teh API key to use for authorization.
ApiKeyValue *string
noSmithyDocumentSerde
}
// Contains the additional parameters to use for the connection.
type UpdateConnectionAuthRequestParameters struct {
// A UpdateConnectionApiKeyAuthRequestParameters object that contains the
// authorization parameters for API key authorization.
ApiKeyAuthParameters *UpdateConnectionApiKeyAuthRequestParameters
// A UpdateConnectionBasicAuthRequestParameters object that contains the
// authorization parameters for Basic authorization.
BasicAuthParameters *UpdateConnectionBasicAuthRequestParameters
// A ConnectionHttpParameters object that contains the additional parameters to
// use for the connection.
InvocationHttpParameters *ConnectionHttpParameters
// A UpdateConnectionOAuthRequestParameters object that contains the authorization
// parameters for OAuth authorization.
OAuthParameters *UpdateConnectionOAuthRequestParameters
noSmithyDocumentSerde
}
// Contains the Basic authorization parameters for the connection.
type UpdateConnectionBasicAuthRequestParameters struct {
// The password associated with the user name to use for Basic authorization.
Password *string
// The user name to use for Basic authorization.
Username *string
noSmithyDocumentSerde
}
// Contains the OAuth authorization parameters to use for the connection.
type UpdateConnectionOAuthClientRequestParameters struct {
// The client ID to use for OAuth authorization.
ClientID *string
// The client secret assciated with the client ID to use for OAuth authorization.
ClientSecret *string
noSmithyDocumentSerde
}
// Contains the OAuth request parameters to use for the connection.
type UpdateConnectionOAuthRequestParameters struct {
// The URL to the authorization endpoint when OAuth is specified as the
// authorization type.
AuthorizationEndpoint *string
// A UpdateConnectionOAuthClientRequestParameters object that contains the client
// parameters to use for the connection when OAuth is specified as the
// authorization type.
ClientParameters *UpdateConnectionOAuthClientRequestParameters
// The method used to connect to the HTTP endpoint.
HttpMethod ConnectionOAuthHttpMethod
// The additional HTTP parameters used for the OAuth authorization request.
OAuthHttpParameters *ConnectionHttpParameters
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|