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 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Describes the current status of an account within an Amazon Web Services
// Organization, including service-linked roles (SLRs).
type AccountStatus struct {
// The ID of an account within the Amazon Web Services Organization.
AccountId *string
// The status of SLR deployment for the account.
SLRDeploymentStatus *string
noSmithyDocumentSerde
}
// Describes a core network attachment.
type Attachment struct {
// The ID of the attachment.
AttachmentId *string
// The policy rule number associated with the attachment.
AttachmentPolicyRuleNumber *int32
// The type of attachment.
AttachmentType AttachmentType
// The ARN of a core network.
CoreNetworkArn *string
// The ID of a core network.
CoreNetworkId *string
// The timestamp when the attachment was created.
CreatedAt *time.Time
// The Region where the edge is located.
EdgeLocation *string
// The ID of the attachment account owner.
OwnerAccountId *string
// The attachment to move from one segment to another.
ProposedSegmentChange *ProposedSegmentChange
// The attachment resource ARN.
ResourceArn *string
// The name of the segment attachment.
SegmentName *string
// The state of the attachment.
State AttachmentState
// The tags associated with the attachment.
Tags []Tag
// The timestamp when the attachment was last updated.
UpdatedAt *time.Time
noSmithyDocumentSerde
}
// Specifies a location in Amazon Web Services.
type AWSLocation struct {
// The Amazon Resource Name (ARN) of the subnet that the device is located in.
SubnetArn *string
// The Zone that the device is located in. Specify the ID of an Availability Zone,
// Local Zone, Wavelength Zone, or an Outpost.
Zone *string
noSmithyDocumentSerde
}
// Describes bandwidth information.
type Bandwidth struct {
// Download speed in Mbps.
DownloadSpeed *int32
// Upload speed in Mbps.
UploadSpeed *int32
noSmithyDocumentSerde
}
// Describes the BGP options.
type BgpOptions struct {
// The Peer ASN of the BGP.
PeerAsn *int64
noSmithyDocumentSerde
}
// Describes a core network Connect attachment.
type ConnectAttachment struct {
// The attachment details.
Attachment *Attachment
// Options for connecting an attachment.
Options *ConnectAttachmentOptions
// The ID of the transport attachment.
TransportAttachmentId *string
noSmithyDocumentSerde
}
// Describes a core network Connect attachment options.
type ConnectAttachmentOptions struct {
// The protocol used for the attachment connection.
Protocol TunnelProtocol
noSmithyDocumentSerde
}
// Describes a connection.
type Connection struct {
// The ID of the second device in the connection.
ConnectedDeviceId *string
// The ID of the link for the second device in the connection.
ConnectedLinkId *string
// The Amazon Resource Name (ARN) of the connection.
ConnectionArn *string
// The ID of the connection.
ConnectionId *string
// The date and time that the connection was created.
CreatedAt *time.Time
// The description of the connection.
Description *string
// The ID of the first device in the connection.
DeviceId *string
// The ID of the global network.
GlobalNetworkId *string
// The ID of the link for the first device in the connection.
LinkId *string
// The state of the connection.
State ConnectionState
// The tags for the connection.
Tags []Tag
noSmithyDocumentSerde
}
// Describes connection health.
type ConnectionHealth struct {
// The connection status.
Status ConnectionStatus
// The time the status was last updated.
Timestamp *time.Time
// The connection type.
Type ConnectionType
noSmithyDocumentSerde
}
// Describes a core network Connect peer.
type ConnectPeer struct {
// The configuration of the Connect peer.
Configuration *ConnectPeerConfiguration
// The ID of the attachment to connect.
ConnectAttachmentId *string
// The ID of the Connect peer.
ConnectPeerId *string
// The ID of a core network.
CoreNetworkId *string
// The timestamp when the Connect peer was created.
CreatedAt *time.Time
// The Connect peer Regions where edges are located.
EdgeLocation *string
// The state of the Connect peer.
State ConnectPeerState
// The subnet ARN for the Connect peer.
SubnetArn *string
// The list of key-value tags associated with the Connect peer.
Tags []Tag
noSmithyDocumentSerde
}
// Describes a core network Connect peer association.
type ConnectPeerAssociation struct {
// The ID of the Connect peer.
ConnectPeerId *string
// The ID of the device to connect to.
DeviceId *string
// The ID of the global network.
GlobalNetworkId *string
// The ID of the link.
LinkId *string
// The state of the Connect peer association.
State ConnectPeerAssociationState
noSmithyDocumentSerde
}
// Describes a core network BGP configuration.
type ConnectPeerBgpConfiguration struct {
// The address of a core network.
CoreNetworkAddress *string
// The ASN of the Coret Network.
CoreNetworkAsn *int64
// The address of a core network Connect peer.
PeerAddress *string
// The ASN of the Connect peer.
PeerAsn *int64
noSmithyDocumentSerde
}
// Describes a core network Connect peer configuration.
type ConnectPeerConfiguration struct {
// The Connect peer BGP configurations.
BgpConfigurations []ConnectPeerBgpConfiguration
// The IP address of a core network.
CoreNetworkAddress *string
// The inside IP addresses used for a Connect peer configuration.
InsideCidrBlocks []string
// The IP address of the Connect peer.
PeerAddress *string
// The protocol used for a Connect peer configuration.
Protocol TunnelProtocol
noSmithyDocumentSerde
}
// Summary description of a Connect peer.
type ConnectPeerSummary struct {
// The ID of a Connect peer attachment.
ConnectAttachmentId *string
// The ID of a Connect peer.
ConnectPeerId *string
// The state of a Connect peer.
ConnectPeerState ConnectPeerState
// The ID of a core network.
CoreNetworkId *string
// The timestamp when a Connect peer was created.
CreatedAt *time.Time
// The Region where the edge is located.
EdgeLocation *string
// The subnet ARN for the Connect peer summary.
SubnetArn *string
// The list of key-value tags associated with the Connect peer summary.
Tags []Tag
noSmithyDocumentSerde
}
// Describes a core network.
type CoreNetwork struct {
// The ARN of a core network.
CoreNetworkArn *string
// The ID of a core network.
CoreNetworkId *string
// The timestamp when a core network was created.
CreatedAt *time.Time
// The description of a core network.
Description *string
// The edges within a core network.
Edges []CoreNetworkEdge
// The ID of the global network that your core network is a part of.
GlobalNetworkId *string
// The segments within a core network.
Segments []CoreNetworkSegment
// The current state of a core network.
State CoreNetworkState
// The list of key-value tags associated with a core network.
Tags []Tag
noSmithyDocumentSerde
}
// Details describing a core network change.
type CoreNetworkChange struct {
// The action to take for a core network.
Action ChangeAction
// The resource identifier.
Identifier *string
// Uniquely identifies the path for a change within the changeset. For example,
// the IdentifierPath for a core network segment change might be
// "CORE_NETWORK_SEGMENT/us-east-1/devsegment" .
IdentifierPath *string
// The new value for a core network
NewValues *CoreNetworkChangeValues
// The previous values for a core network.
PreviousValues *CoreNetworkChangeValues
// The type of change.
Type ChangeType
noSmithyDocumentSerde
}
// Describes a core network change event. This can be a change to a segment,
// attachment, route, etc.
type CoreNetworkChangeEvent struct {
// The action taken for the change event.
Action ChangeAction
// The timestamp for an event change in status.
EventTime *time.Time
// Uniquely identifies the path for a change within the changeset. For example,
// the IdentifierPath for a core network segment change might be
// "CORE_NETWORK_SEGMENT/us-east-1/devsegment" .
IdentifierPath *string
// The status of the core network change event.
Status ChangeStatus
// Describes the type of change event.
Type ChangeType
// Details of the change event.
Values *CoreNetworkChangeEventValues
noSmithyDocumentSerde
}
// Describes a core network change event.
type CoreNetworkChangeEventValues struct {
// The ID of the attachment if the change event is associated with an attachment.
AttachmentId *string
// For a STATIC_ROUTE event, this is the IP address.
Cidr *string
// The edge location for the core network change event.
EdgeLocation *string
// The segment name if the change event is associated with a segment.
SegmentName *string
noSmithyDocumentSerde
}
// Describes a core network change.
type CoreNetworkChangeValues struct {
// The ASN of a core network.
Asn *int64
// The IP addresses used for a core network.
Cidr *string
// The ID of the destination.
DestinationIdentifier *string
// The Regions where edges are located in a core network.
EdgeLocations []string
// The inside IP addresses used for core network change values.
InsideCidrBlocks []string
// The names of the segments in a core network.
SegmentName *string
// The shared segments for a core network change value.
SharedSegments []string
noSmithyDocumentSerde
}
// Describes a core network edge.
type CoreNetworkEdge struct {
// The ASN of a core network edge.
Asn *int64
// The Region where a core network edge is located.
EdgeLocation *string
// The inside IP addresses used for core network edges.
InsideCidrBlocks []string
noSmithyDocumentSerde
}
// Describes a core network policy. You can have only one LIVE Core Policy.
type CoreNetworkPolicy struct {
// Whether a core network policy is the current LIVE policy or the most recently
// submitted policy.
Alias CoreNetworkPolicyAlias
// The state of a core network policy.
ChangeSetState ChangeSetState
// The ID of a core network.
CoreNetworkId *string
// The timestamp when a core network policy was created.
CreatedAt *time.Time
// The description of a core network policy.
Description *string
// Describes a core network policy.
//
// This value conforms to the media type: application/json
PolicyDocument *string
// Describes any errors in a core network policy.
PolicyErrors []CoreNetworkPolicyError
// The ID of the policy version.
PolicyVersionId *int32
noSmithyDocumentSerde
}
// Provides details about an error in a core network policy.
type CoreNetworkPolicyError struct {
// The error code associated with a core network policy error.
//
// This member is required.
ErrorCode *string
// The message associated with a core network policy error code.
//
// This member is required.
Message *string
// The JSON path where the error was discovered in the policy document.
Path *string
noSmithyDocumentSerde
}
// Describes a core network policy version.
type CoreNetworkPolicyVersion struct {
// Whether a core network policy is the current policy or the most recently
// submitted policy.
Alias CoreNetworkPolicyAlias
// The status of the policy version change set.
ChangeSetState ChangeSetState
// The ID of a core network.
CoreNetworkId *string
// The timestamp when a core network policy version was created.
CreatedAt *time.Time
// The description of a core network policy version.
Description *string
// The ID of the policy version.
PolicyVersionId *int32
noSmithyDocumentSerde
}
// Describes a core network segment, which are dedicated routes. Only attachments
// within this segment can communicate with each other.
type CoreNetworkSegment struct {
// The Regions where the edges are located.
EdgeLocations []string
// The name of a core network segment.
Name *string
// The shared segments of a core network.
SharedSegments []string
noSmithyDocumentSerde
}
// Returns details about a core network edge.
type CoreNetworkSegmentEdgeIdentifier struct {
// The ID of a core network.
CoreNetworkId *string
// The Region where the segment edge is located.
EdgeLocation *string
// The name of the segment edge.
SegmentName *string
noSmithyDocumentSerde
}
// Returns summary information about a core network.
type CoreNetworkSummary struct {
// a core network ARN.
CoreNetworkArn *string
// The ID of a core network.
CoreNetworkId *string
// The description of a core network.
Description *string
// The global network ID.
GlobalNetworkId *string
// The ID of the account owner.
OwnerAccountId *string
// The state of a core network.
State CoreNetworkState
// The key-value tags associated with a core network summary.
Tags []Tag
noSmithyDocumentSerde
}
// Describes the association between a customer gateway, a device, and a link.
type CustomerGatewayAssociation struct {
// The Amazon Resource Name (ARN) of the customer gateway.
CustomerGatewayArn *string
// The ID of the device.
DeviceId *string
// The ID of the global network.
GlobalNetworkId *string
// The ID of the link.
LinkId *string
// The association state.
State CustomerGatewayAssociationState
noSmithyDocumentSerde
}
// Describes a device.
type Device struct {
// The Amazon Web Services location of the device.
AWSLocation *AWSLocation
// The date and time that the site was created.
CreatedAt *time.Time
// The description of the device.
Description *string
// The Amazon Resource Name (ARN) of the device.
DeviceArn *string
// The ID of the device.
DeviceId *string
// The ID of the global network.
GlobalNetworkId *string
// The site location.
Location *Location
// The device model.
Model *string
// The device serial number.
SerialNumber *string
// The site ID.
SiteId *string
// The device state.
State DeviceState
// The tags for the device.
Tags []Tag
// The device type.
Type *string
// The device vendor.
Vendor *string
noSmithyDocumentSerde
}
// Describes a global network. This is a single private network acting as a
// high-level container for your network objects, including an Amazon Web
// Services-managed Core Network.
type GlobalNetwork struct {
// The date and time that the global network was created.
CreatedAt *time.Time
// The description of the global network.
Description *string
// The Amazon Resource Name (ARN) of the global network.
GlobalNetworkArn *string
// The ID of the global network.
GlobalNetworkId *string
// The state of the global network.
State GlobalNetworkState
// The tags for the global network.
Tags []Tag
noSmithyDocumentSerde
}
// Describes a link.
type Link struct {
// The bandwidth for the link.
Bandwidth *Bandwidth
// The date and time that the link was created.
CreatedAt *time.Time
// The description of the link.
Description *string
// The ID of the global network.
GlobalNetworkId *string
// The Amazon Resource Name (ARN) of the link.
LinkArn *string
// The ID of the link.
LinkId *string
// The provider of the link.
Provider *string
// The ID of the site.
SiteId *string
// The state of the link.
State LinkState
// The tags for the link.
Tags []Tag
// The type of the link.
Type *string
noSmithyDocumentSerde
}
// Describes the association between a device and a link.
type LinkAssociation struct {
// The device ID for the link association.
DeviceId *string
// The ID of the global network.
GlobalNetworkId *string
// The state of the association.
LinkAssociationState LinkAssociationState
// The ID of the link.
LinkId *string
noSmithyDocumentSerde
}
// Describes a location.
type Location struct {
// The physical address.
Address *string
// The latitude.
Latitude *string
// The longitude.
Longitude *string
noSmithyDocumentSerde
}
// Describes a network resource.
type NetworkResource struct {
// The Amazon Web Services account ID.
AccountId *string
// The Amazon Web Services Region.
AwsRegion *string
// The ID of a core network.
CoreNetworkId *string
// Information about the resource, in JSON format. Network Manager gets this
// information by describing the resource using its Describe API call.
Definition *string
// The time that the resource definition was retrieved.
DefinitionTimestamp *time.Time
// The resource metadata.
Metadata map[string]string
// The ARN of the gateway.
RegisteredGatewayArn *string
// The ARN of the resource.
ResourceArn *string
// The ID of the resource.
ResourceId *string
// The resource type. The following are the supported resource types for Direct
// Connect:
// - dxcon
// - dx-gateway
// - dx-vif
// The following are the supported resource types for Network Manager:
// - connection
// - device
// - link
// - site
// The following are the supported resource types for Amazon VPC:
// - customer-gateway
// - transit-gateway
// - transit-gateway-attachment
// - transit-gateway-connect-peer
// - transit-gateway-route-table
// - vpn-connection
ResourceType *string
// The tags.
Tags []Tag
noSmithyDocumentSerde
}
// Describes a resource count.
type NetworkResourceCount struct {
// The resource count.
Count *int32
// The resource type.
ResourceType *string
noSmithyDocumentSerde
}
// Describes a network resource.
type NetworkResourceSummary struct {
// Information about the resource, in JSON format. Network Manager gets this
// information by describing the resource using its Describe API call.
Definition *string
// Indicates whether this is a middlebox appliance.
IsMiddlebox bool
// The value for the Name tag.
NameTag *string
// The ARN of the gateway.
RegisteredGatewayArn *string
// The ARN of the resource.
ResourceArn *string
// The resource type.
ResourceType *string
noSmithyDocumentSerde
}
// Describes a network route.
type NetworkRoute struct {
// A unique identifier for the route, such as a CIDR block.
DestinationCidrBlock *string
// The destinations.
Destinations []NetworkRouteDestination
// The ID of the prefix list.
PrefixListId *string
// The route state. The possible values are active and blackhole .
State RouteState
// The route type. The possible values are propagated and static .
Type RouteType
noSmithyDocumentSerde
}
// Describes the destination of a network route.
type NetworkRouteDestination struct {
// The ID of a core network attachment.
CoreNetworkAttachmentId *string
// The edge location for the network destination.
EdgeLocation *string
// The ID of the resource.
ResourceId *string
// The resource type.
ResourceType *string
// The name of the segment.
SegmentName *string
// The ID of the transit gateway attachment.
TransitGatewayAttachmentId *string
noSmithyDocumentSerde
}
// Describes the telemetry information for a resource.
type NetworkTelemetry struct {
// The Amazon Web Services account ID.
AccountId *string
// The address.
Address *string
// The Amazon Web Services Region.
AwsRegion *string
// The ID of a core network.
CoreNetworkId *string
// The connection health.
Health *ConnectionHealth
// The ARN of the gateway.
RegisteredGatewayArn *string
// The ARN of the resource.
ResourceArn *string
// The ID of the resource.
ResourceId *string
// The resource type.
ResourceType *string
noSmithyDocumentSerde
}
// The status of an Amazon Web Services Organization and the accounts within that
// organization.
type OrganizationStatus struct {
// The current service-linked role (SLR) deployment status for an Amazon Web
// Services Organization's accounts. This will be either SUCCEEDED or IN_PROGRESS .
AccountStatusList []AccountStatus
// The status of the organization's AWS service access. This will be ENABLED or
// DISABLED .
OrganizationAwsServiceAccessStatus *string
// The ID of an Amazon Web Services Organization.
OrganizationId *string
// The status of the SLR deployment for the account. This will be either SUCCEEDED
// or IN_PROGRESS .
SLRDeploymentStatus *string
noSmithyDocumentSerde
}
// Describes a path component.
type PathComponent struct {
// The destination CIDR block in the route table.
DestinationCidrBlock *string
// The resource.
Resource *NetworkResourceSummary
// The sequence number in the path. The destination is 0.
Sequence *int32
noSmithyDocumentSerde
}
// Describes a peering connection.
type Peering struct {
// The ARN of a core network.
CoreNetworkArn *string
// The ID of the core network for the peering request.
CoreNetworkId *string
// The timestamp when the attachment peer was created.
CreatedAt *time.Time
// The edge location for the peer.
EdgeLocation *string
// The ID of the account owner.
OwnerAccountId *string
// The ID of the peering attachment.
PeeringId *string
// The type of peering. This will be TRANSIT_GATEWAY .
PeeringType PeeringType
// The resource ARN of the peer.
ResourceArn *string
// The current state of the peering connection.
State PeeringState
// The list of key-value tags associated with the peering.
Tags []Tag
noSmithyDocumentSerde
}
// Describes a proposed segment change. In some cases, the segment change must
// first be evaluated and accepted.
type ProposedSegmentChange struct {
// The rule number in the policy document that applies to this change.
AttachmentPolicyRuleNumber *int32
// The name of the segment to change.
SegmentName *string
// The list of key-value tags that changed for the segment.
Tags []Tag
noSmithyDocumentSerde
}
// Describes a resource relationship.
type Relationship struct {
// The ARN of the resource.
From *string
// The ARN of the resource.
To *string
noSmithyDocumentSerde
}
// Describes a route analysis.
type RouteAnalysis struct {
// The destination.
Destination *RouteAnalysisEndpointOptions
// The forward path.
ForwardPath *RouteAnalysisPath
// The ID of the global network.
GlobalNetworkId *string
// Indicates whether to analyze the return path. The return path is not analyzed
// if the forward path analysis does not succeed.
IncludeReturnPath bool
// The ID of the AWS account that created the route analysis.
OwnerAccountId *string
// The return path.
ReturnPath *RouteAnalysisPath
// The ID of the route analysis.
RouteAnalysisId *string
// The source.
Source *RouteAnalysisEndpointOptions
// The time that the analysis started.
StartTimestamp *time.Time
// The status of the route analysis.
Status RouteAnalysisStatus
// Indicates whether to include the location of middlebox appliances in the route
// analysis.
UseMiddleboxes bool
noSmithyDocumentSerde
}
// Describes the status of an analysis at completion.
type RouteAnalysisCompletion struct {
// The reason code. Available only if a connection is not found.
// - BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND - Found a black hole route with the
// destination CIDR block.
// - CYCLIC_PATH_DETECTED - Found the same resource multiple times while
// traversing the path.
// - INACTIVE_ROUTE_FOR_DESTINATION_FOUND - Found an inactive route with the
// destination CIDR block.
// - MAX_HOPS_EXCEEDED - Analysis exceeded 64 hops without finding the
// destination.
// - ROUTE_NOT_FOUND - Cannot find a route table with the destination CIDR block.
// - TGW_ATTACH_ARN_NO_MATCH - Found an attachment, but not with the correct
// destination ARN.
// - TGW_ATTACH_NOT_FOUND - Cannot find an attachment.
// - TGW_ATTACH_NOT_IN_TGW - Found an attachment, but not to the correct transit
// gateway.
// - TGW_ATTACH_STABLE_ROUTE_TABLE_NOT_FOUND - The state of the route table
// association is not associated.
ReasonCode RouteAnalysisCompletionReasonCode
// Additional information about the path. Available only if a connection is not
// found.
ReasonContext map[string]string
// The result of the analysis. If the status is NOT_CONNECTED , check the reason
// code.
ResultCode RouteAnalysisCompletionResultCode
noSmithyDocumentSerde
}
// Describes a source or a destination.
type RouteAnalysisEndpointOptions struct {
// The IP address.
IpAddress *string
// The ARN of the transit gateway.
TransitGatewayArn *string
// The ARN of the transit gateway attachment.
TransitGatewayAttachmentArn *string
noSmithyDocumentSerde
}
// Describes a source or a destination.
type RouteAnalysisEndpointOptionsSpecification struct {
// The IP address.
IpAddress *string
// The ARN of the transit gateway attachment.
TransitGatewayAttachmentArn *string
noSmithyDocumentSerde
}
// Describes a route analysis path.
type RouteAnalysisPath struct {
// The status of the analysis at completion.
CompletionStatus *RouteAnalysisCompletion
// The route analysis path.
Path []PathComponent
noSmithyDocumentSerde
}
// Describes a route table.
type RouteTableIdentifier struct {
// The segment edge in a core network.
CoreNetworkSegmentEdge *CoreNetworkSegmentEdgeIdentifier
// The ARN of the transit gateway route table for the attachment request. For
// example, "TransitGatewayRouteTableArn":
// "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456"
// .
TransitGatewayRouteTableArn *string
noSmithyDocumentSerde
}
// Describes a site.
type Site struct {
// The date and time that the site was created.
CreatedAt *time.Time
// The description of the site.
Description *string
// The ID of the global network.
GlobalNetworkId *string
// The location of the site.
Location *Location
// The Amazon Resource Name (ARN) of the site.
SiteArn *string
// The ID of the site.
SiteId *string
// The state of the site.
State SiteState
// The tags for the site.
Tags []Tag
noSmithyDocumentSerde
}
// Creates a site-to-site VPN attachment.
type SiteToSiteVpnAttachment struct {
// Provides details about a site-to-site VPN attachment.
Attachment *Attachment
// The ARN of the site-to-site VPN attachment.
VpnConnectionArn *string
noSmithyDocumentSerde
}
// Describes a tag.
type Tag struct {
// The tag key. Constraints: Maximum length of 128 characters.
Key *string
// The tag value. Constraints: Maximum length of 256 characters.
Value *string
noSmithyDocumentSerde
}
// Describes a transit gateway Connect peer association.
type TransitGatewayConnectPeerAssociation struct {
// The ID of the device.
DeviceId *string
// The ID of the global network.
GlobalNetworkId *string
// The ID of the link.
LinkId *string
// The state of the association.
State TransitGatewayConnectPeerAssociationState
// The Amazon Resource Name (ARN) of the transit gateway Connect peer.
TransitGatewayConnectPeerArn *string
noSmithyDocumentSerde
}
// Describes a transit gateway peering attachment.
type TransitGatewayPeering struct {
// Describes a transit gateway peer connection.
Peering *Peering
// The ARN of the transit gateway.
TransitGatewayArn *string
// The ID of the transit gateway peering attachment.
TransitGatewayPeeringAttachmentId *string
noSmithyDocumentSerde
}
// Describes the registration of a transit gateway to a global network.
type TransitGatewayRegistration struct {
// The ID of the global network.
GlobalNetworkId *string
// The state of the transit gateway registration.
State *TransitGatewayRegistrationStateReason
// The Amazon Resource Name (ARN) of the transit gateway.
TransitGatewayArn *string
noSmithyDocumentSerde
}
// Describes the status of a transit gateway registration.
type TransitGatewayRegistrationStateReason struct {
// The code for the state reason.
Code TransitGatewayRegistrationState
// The message for the state reason.
Message *string
noSmithyDocumentSerde
}
// Describes a transit gateway route table attachment.
type TransitGatewayRouteTableAttachment struct {
// Describes a core network attachment.
Attachment *Attachment
// The ID of the peering attachment.
PeeringId *string
// The ARN of the transit gateway attachment route table. For example,
// "TransitGatewayRouteTableArn":
// "arn:aws:ec2:us-west-2:123456789012:transit-gateway-route-table/tgw-rtb-9876543210123456"
// .
TransitGatewayRouteTableArn *string
noSmithyDocumentSerde
}
// Describes a validation exception for a field.
type ValidationExceptionField struct {
// The message for the field.
//
// This member is required.
Message *string
// The name of the field.
//
// This member is required.
Name *string
noSmithyDocumentSerde
}
// Describes a VPC attachment.
type VpcAttachment struct {
// Provides details about the VPC attachment.
Attachment *Attachment
// Provides details about the VPC attachment.
Options *VpcOptions
// The subnet ARNs.
SubnetArns []string
noSmithyDocumentSerde
}
// Describes the VPC options.
type VpcOptions struct {
// Indicates whether appliance mode is supported. If enabled, traffic flow between
// a source and destination use the same Availability Zone for the VPC attachment
// for the lifetime of that flow. The default value is false .
ApplianceModeSupport bool
// Indicates whether IPv6 is supported.
Ipv6Support bool
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|