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 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
import (
smithydocument "github.com/aws/smithy-go/document"
"time"
)
// Specifies an Availability Zone.
type AvailabilityZone struct {
// The name of the availability zone.
Name *string
noSmithyDocumentSerde
}
// Specifies a character set.
type CharacterSet struct {
// The description of the character set.
CharacterSetDescription *string
// The name of the character set.
CharacterSetName *string
noSmithyDocumentSerde
}
// The configuration setting for the log types to be enabled for export to
// CloudWatch Logs for a specific DB instance or DB cluster. The EnableLogTypes
// and DisableLogTypes arrays determine which logs will be exported (or not
// exported) to CloudWatch Logs. Valid log types are: audit (to publish audit
// logs) and slowquery (to publish slow-query logs). See Publishing Neptune logs
// to Amazon CloudWatch logs (https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html)
// .
type CloudwatchLogsExportConfiguration struct {
// The list of log types to disable.
DisableLogTypes []string
// The list of log types to enable.
EnableLogTypes []string
noSmithyDocumentSerde
}
// This data type is used as a response element in the ModifyDBCluster operation
// and contains changes that will be applied during the next maintenance window.
type ClusterPendingModifiedValues struct {
// The allocated storage size in gibibytes (GiB) for database engines. For
// Neptune, AllocatedStorage always returns 1, because Neptune DB cluster storage
// size isn't fixed, but instead automatically adjusts as needed.
AllocatedStorage *int32
// The number of days for which automatic DB snapshots are retained.
BackupRetentionPeriod *int32
// The DBClusterIdentifier value for the DB cluster.
DBClusterIdentifier *string
// The database engine version.
EngineVersion *string
// A value that indicates whether mapping of Amazon Web Services Identity and
// Access Management (IAM) accounts to database accounts is enabled.
IAMDatabaseAuthenticationEnabled *bool
// The Provisioned IOPS (I/O operations per second) value. This setting is only
// for non-Aurora Multi-AZ DB clusters.
Iops *int32
// This PendingCloudwatchLogsExports structure specifies pending changes to which
// CloudWatch logs are enabled and which are disabled.
PendingCloudwatchLogsExports *PendingCloudwatchLogsExports
// The storage type for the DB cluster.
StorageType *string
noSmithyDocumentSerde
}
// Contains the details of an Amazon Neptune DB cluster. This data type is used as
// a response element in the DescribeDBClusters .
type DBCluster struct {
// AllocatedStorage always returns 1, because Neptune DB cluster storage size is
// not fixed, but instead automatically adjusts as needed.
AllocatedStorage *int32
// Provides a list of the Amazon Identity and Access Management (IAM) roles that
// are associated with the DB cluster. IAM roles that are associated with a DB
// cluster grant permission for the DB cluster to access other Amazon services on
// your behalf.
AssociatedRoles []DBClusterRole
// Time at which the DB cluster will be automatically restarted.
AutomaticRestartTime *time.Time
// Provides the list of EC2 Availability Zones that instances in the DB cluster
// can be created in.
AvailabilityZones []string
// Specifies the number of days for which automatic DB snapshots are retained.
BackupRetentionPeriod *int32
// Not supported by Neptune.
CharacterSetName *string
// Identifies the clone group to which the DB cluster is associated.
CloneGroupId *string
// Specifies the time when the DB cluster was created, in Universal Coordinated
// Time (UTC).
ClusterCreateTime *time.Time
// If set to true , tags are copied to any snapshot of the DB cluster that is
// created.
CopyTagsToSnapshot *bool
// If set to true , the DB cluster can be cloned across accounts.
CrossAccountClone *bool
// The Amazon Resource Name (ARN) for the DB cluster.
DBClusterArn *string
// Contains a user-supplied DB cluster identifier. This identifier is the unique
// key that identifies a DB cluster.
DBClusterIdentifier *string
// Provides the list of instances that make up the DB cluster.
DBClusterMembers []DBClusterMember
// Not supported by Neptune.
DBClusterOptionGroupMemberships []DBClusterOptionGroupStatus
// Specifies the name of the DB cluster parameter group for the DB cluster.
DBClusterParameterGroup *string
// Specifies information on the subnet group associated with the DB cluster,
// including the name, description, and subnets in the subnet group.
DBSubnetGroup *string
// Contains the name of the initial database of this DB cluster that was provided
// at create time, if one was specified when the DB cluster was created. This same
// name is returned for the life of the DB cluster.
DatabaseName *string
// The Amazon Region-unique, immutable identifier for the DB cluster. This
// identifier is found in Amazon CloudTrail log entries whenever the Amazon KMS key
// for the DB cluster is accessed.
DbClusterResourceId *string
// Indicates whether or not the DB cluster has deletion protection enabled. The
// database can't be deleted when deletion protection is enabled.
DeletionProtection *bool
// Specifies the earliest time to which a database can be restored with
// point-in-time restore.
EarliestRestorableTime *time.Time
// A list of the log types that this DB cluster is configured to export to
// CloudWatch Logs. Valid log types are: audit (to publish audit logs to
// CloudWatch) and slowquery (to publish slow-query logs to CloudWatch). See
// Publishing Neptune logs to Amazon CloudWatch logs (https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html)
// .
EnabledCloudwatchLogsExports []string
// Specifies the connection endpoint for the primary instance of the DB cluster.
Endpoint *string
// Provides the name of the database engine to be used for this DB cluster.
Engine *string
// Indicates the database engine version.
EngineVersion *string
// Contains a user-supplied global database cluster identifier. This identifier is
// the unique key that identifies a global database.
GlobalClusterIdentifier *string
// Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
HostedZoneId *string
// True if mapping of Amazon Identity and Access Management (IAM) accounts to
// database accounts is enabled, and otherwise false.
IAMDatabaseAuthenticationEnabled *bool
// The next time you can modify the DB cluster to use the iopt1 storage type.
IOOptimizedNextAllowedModificationTime *time.Time
// If StorageEncrypted is true, the Amazon KMS key identifier for the encrypted DB
// cluster.
KmsKeyId *string
// Specifies the latest time to which a database can be restored with
// point-in-time restore.
LatestRestorableTime *time.Time
// Not supported by Neptune.
MasterUsername *string
// Specifies whether the DB cluster has instances in multiple Availability Zones.
MultiAZ *bool
// This data type is used as a response element in the ModifyDBCluster operation
// and contains changes that will be applied during the next maintenance window.
PendingModifiedValues *ClusterPendingModifiedValues
// Specifies the progress of the operation as a percentage.
PercentProgress *string
// Specifies the port that the database engine is listening on.
Port *int32
// Specifies the daily time range during which automated backups are created if
// automated backups are enabled, as determined by the BackupRetentionPeriod .
PreferredBackupWindow *string
// Specifies the weekly time range during which system maintenance can occur, in
// Universal Coordinated Time (UTC).
PreferredMaintenanceWindow *string
// Contains one or more identifiers of the Read Replicas associated with this DB
// cluster.
ReadReplicaIdentifiers []string
// The reader endpoint for the DB cluster. The reader endpoint for a DB cluster
// load-balances connections across the Read Replicas that are available in a DB
// cluster. As clients request new connections to the reader endpoint, Neptune
// distributes the connection requests among the Read Replicas in the DB cluster.
// This functionality can help balance your read workload across multiple Read
// Replicas in your DB cluster. If a failover occurs, and the Read Replica that you
// are connected to is promoted to be the primary instance, your connection is
// dropped. To continue sending your read workload to other Read Replicas in the
// cluster, you can then reconnect to the reader endpoint.
ReaderEndpoint *string
// Not supported by Neptune.
ReplicationSourceIdentifier *string
// Shows the scaling configuration for a Neptune Serverless DB cluster. For more
// information, see Using Amazon Neptune Serverless (https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html)
// in the Amazon Neptune User Guide.
ServerlessV2ScalingConfiguration *ServerlessV2ScalingConfigurationInfo
// Specifies the current state of this DB cluster.
Status *string
// Specifies whether the DB cluster is encrypted.
StorageEncrypted *bool
// The storage type associated with the DB cluster.
StorageType *string
// Provides a list of VPC security groups that the DB cluster belongs to.
VpcSecurityGroups []VpcSecurityGroupMembership
noSmithyDocumentSerde
}
// This data type represents the information you need to connect to an Amazon
// Neptune DB cluster. This data type is used as a response element in the
// following actions:
// - CreateDBClusterEndpoint
// - DescribeDBClusterEndpoints
// - ModifyDBClusterEndpoint
// - DeleteDBClusterEndpoint
//
// For the data structure that represents Amazon Neptune DB instance endpoints,
// see Endpoint .
type DBClusterEndpoint struct {
// The type associated with a custom endpoint. One of: READER , WRITER , ANY .
CustomEndpointType *string
// The Amazon Resource Name (ARN) for the endpoint.
DBClusterEndpointArn *string
// The identifier associated with the endpoint. This parameter is stored as a
// lowercase string.
DBClusterEndpointIdentifier *string
// A unique system-generated identifier for an endpoint. It remains the same for
// the whole life of the endpoint.
DBClusterEndpointResourceIdentifier *string
// The DB cluster identifier of the DB cluster associated with the endpoint. This
// parameter is stored as a lowercase string.
DBClusterIdentifier *string
// The DNS address of the endpoint.
Endpoint *string
// The type of the endpoint. One of: READER , WRITER , CUSTOM .
EndpointType *string
// List of DB instance identifiers that aren't part of the custom endpoint group.
// All other eligible instances are reachable through the custom endpoint. Only
// relevant if the list of static members is empty.
ExcludedMembers []string
// List of DB instance identifiers that are part of the custom endpoint group.
StaticMembers []string
// The current status of the endpoint. One of: creating , available , deleting ,
// inactive , modifying . The inactive state applies to an endpoint that cannot be
// used for a certain kind of cluster, such as a writer endpoint for a read-only
// secondary cluster in a global database.
Status *string
noSmithyDocumentSerde
}
// Contains information about an instance that is part of a DB cluster.
type DBClusterMember struct {
// Specifies the status of the DB cluster parameter group for this member of the
// DB cluster.
DBClusterParameterGroupStatus *string
// Specifies the instance identifier for this member of the DB cluster.
DBInstanceIdentifier *string
// Value that is true if the cluster member is the primary instance for the DB
// cluster and false otherwise.
IsClusterWriter *bool
// A value that specifies the order in which a Read Replica is promoted to the
// primary instance after a failure of the existing primary instance.
PromotionTier *int32
noSmithyDocumentSerde
}
// Not supported by Neptune.
type DBClusterOptionGroupStatus struct {
// Not supported by Neptune.
DBClusterOptionGroupName *string
// Not supported by Neptune.
Status *string
noSmithyDocumentSerde
}
// Contains the details of an Amazon Neptune DB cluster parameter group. This data
// type is used as a response element in the DescribeDBClusterParameterGroups
// action.
type DBClusterParameterGroup struct {
// The Amazon Resource Name (ARN) for the DB cluster parameter group.
DBClusterParameterGroupArn *string
// Provides the name of the DB cluster parameter group.
DBClusterParameterGroupName *string
// Provides the name of the DB parameter group family that this DB cluster
// parameter group is compatible with.
DBParameterGroupFamily *string
// Provides the customer-specified description for this DB cluster parameter group.
Description *string
noSmithyDocumentSerde
}
// Describes an Amazon Identity and Access Management (IAM) role that is
// associated with a DB cluster.
type DBClusterRole struct {
// The name of the feature associated with the Amazon Identity and Access
// Management (IAM) role. For the list of supported feature names, see
// DescribeDBEngineVersions .
FeatureName *string
// The Amazon Resource Name (ARN) of the IAM role that is associated with the DB
// cluster.
RoleArn *string
// Describes the state of association between the IAM role and the DB cluster. The
// Status property returns one of the following values:
// - ACTIVE - the IAM role ARN is associated with the DB cluster and can be used
// to access other Amazon services on your behalf.
// - PENDING - the IAM role ARN is being associated with the DB cluster.
// - INVALID - the IAM role ARN is associated with the DB cluster, but the DB
// cluster is unable to assume the IAM role in order to access other Amazon
// services on your behalf.
Status *string
noSmithyDocumentSerde
}
// Contains the details for an Amazon Neptune DB cluster snapshot This data type
// is used as a response element in the DescribeDBClusterSnapshots action.
type DBClusterSnapshot struct {
// Specifies the allocated storage size in gibibytes (GiB).
AllocatedStorage *int32
// Provides the list of EC2 Availability Zones that instances in the DB cluster
// snapshot can be restored in.
AvailabilityZones []string
// Specifies the time when the DB cluster was created, in Universal Coordinated
// Time (UTC).
ClusterCreateTime *time.Time
// Specifies the DB cluster identifier of the DB cluster that this DB cluster
// snapshot was created from.
DBClusterIdentifier *string
// The Amazon Resource Name (ARN) for the DB cluster snapshot.
DBClusterSnapshotArn *string
// Specifies the identifier for a DB cluster snapshot. Must match the identifier
// of an existing snapshot. After you restore a DB cluster using a
// DBClusterSnapshotIdentifier , you must specify the same
// DBClusterSnapshotIdentifier for any future updates to the DB cluster. When you
// specify this property for an update, the DB cluster is not restored from the
// snapshot again, and the data in the database is not changed. However, if you
// don't specify the DBClusterSnapshotIdentifier , an empty DB cluster is created,
// and the original DB cluster is deleted. If you specify a property that is
// different from the previous snapshot restore property, the DB cluster is
// restored from the snapshot specified by the DBClusterSnapshotIdentifier , and
// the original DB cluster is deleted.
DBClusterSnapshotIdentifier *string
// Specifies the name of the database engine.
Engine *string
// Provides the version of the database engine for this DB cluster snapshot.
EngineVersion *string
// True if mapping of Amazon Identity and Access Management (IAM) accounts to
// database accounts is enabled, and otherwise false.
IAMDatabaseAuthenticationEnabled *bool
// If StorageEncrypted is true, the Amazon KMS key identifier for the encrypted DB
// cluster snapshot.
KmsKeyId *string
// Provides the license model information for this DB cluster snapshot.
LicenseModel *string
// Not supported by Neptune.
MasterUsername *string
// Specifies the percentage of the estimated data that has been transferred.
PercentProgress *int32
// Specifies the port that the DB cluster was listening on at the time of the
// snapshot.
Port *int32
// Provides the time when the snapshot was taken, in Universal Coordinated Time
// (UTC).
SnapshotCreateTime *time.Time
// Provides the type of the DB cluster snapshot.
SnapshotType *string
// If the DB cluster snapshot was copied from a source DB cluster snapshot, the
// Amazon Resource Name (ARN) for the source DB cluster snapshot, otherwise, a null
// value.
SourceDBClusterSnapshotArn *string
// Specifies the status of this DB cluster snapshot.
Status *string
// Specifies whether the DB cluster snapshot is encrypted.
StorageEncrypted *bool
// The storage type associated with the DB cluster snapshot.
StorageType *string
// Provides the VPC ID associated with the DB cluster snapshot.
VpcId *string
noSmithyDocumentSerde
}
// Contains the name and values of a manual DB cluster snapshot attribute. Manual
// DB cluster snapshot attributes are used to authorize other Amazon accounts to
// restore a manual DB cluster snapshot. For more information, see the
// ModifyDBClusterSnapshotAttribute API action.
type DBClusterSnapshotAttribute struct {
// The name of the manual DB cluster snapshot attribute. The attribute named
// restore refers to the list of Amazon accounts that have permission to copy or
// restore the manual DB cluster snapshot. For more information, see the
// ModifyDBClusterSnapshotAttribute API action.
AttributeName *string
// The value(s) for the manual DB cluster snapshot attribute. If the AttributeName
// field is set to restore , then this element returns a list of IDs of the Amazon
// accounts that are authorized to copy or restore the manual DB cluster snapshot.
// If a value of all is in the list, then the manual DB cluster snapshot is public
// and available for any Amazon account to copy or restore.
AttributeValues []string
noSmithyDocumentSerde
}
// Contains the results of a successful call to the
// DescribeDBClusterSnapshotAttributes API action. Manual DB cluster snapshot
// attributes are used to authorize other Amazon accounts to copy or restore a
// manual DB cluster snapshot. For more information, see the
// ModifyDBClusterSnapshotAttribute API action.
type DBClusterSnapshotAttributesResult struct {
// The list of attributes and values for the manual DB cluster snapshot.
DBClusterSnapshotAttributes []DBClusterSnapshotAttribute
// The identifier of the manual DB cluster snapshot that the attributes apply to.
DBClusterSnapshotIdentifier *string
noSmithyDocumentSerde
}
// This data type is used as a response element in the action
// DescribeDBEngineVersions .
type DBEngineVersion struct {
// The description of the database engine.
DBEngineDescription *string
// The description of the database engine version.
DBEngineVersionDescription *string
// The name of the DB parameter group family for the database engine.
DBParameterGroupFamily *string
// (Not supported by Neptune)
DefaultCharacterSet *CharacterSet
// The name of the database engine.
Engine *string
// The version number of the database engine.
EngineVersion *string
// The types of logs that the database engine has available for export to
// CloudWatch Logs.
ExportableLogTypes []string
// (Not supported by Neptune)
SupportedCharacterSets []CharacterSet
// A list of the time zones supported by this engine for the Timezone parameter of
// the CreateDBInstance action.
SupportedTimezones []Timezone
// A value that indicates whether you can use Aurora global databases with a
// specific DB engine version.
SupportsGlobalDatabases *bool
// A value that indicates whether the engine version supports exporting the log
// types specified by ExportableLogTypes to CloudWatch Logs.
SupportsLogExportsToCloudwatchLogs *bool
// Indicates whether the database engine version supports read replicas.
SupportsReadReplica *bool
// A list of engine versions that this database engine version can be upgraded to.
ValidUpgradeTarget []UpgradeTarget
noSmithyDocumentSerde
}
// Contains the details of an Amazon Neptune DB instance. This data type is used
// as a response element in the DescribeDBInstances action.
type DBInstance struct {
// Not supported by Neptune.
AllocatedStorage *int32
// Indicates that minor version patches are applied automatically.
AutoMinorVersionUpgrade *bool
// Specifies the name of the Availability Zone the DB instance is located in.
AvailabilityZone *string
// Specifies the number of days for which automatic DB snapshots are retained.
BackupRetentionPeriod *int32
// The identifier of the CA certificate for this DB instance.
CACertificateIdentifier *string
// (Not supported by Neptune)
CharacterSetName *string
// Specifies whether tags are copied from the DB instance to snapshots of the DB
// instance.
CopyTagsToSnapshot *bool
// If the DB instance is a member of a DB cluster, contains the name of the DB
// cluster that the DB instance is a member of.
DBClusterIdentifier *string
// The Amazon Resource Name (ARN) for the DB instance.
DBInstanceArn *string
// Contains the name of the compute and memory capacity class of the DB instance.
DBInstanceClass *string
// Contains a user-supplied database identifier. This identifier is the unique key
// that identifies a DB instance.
DBInstanceIdentifier *string
// Specifies the current state of this database.
DBInstanceStatus *string
// The database name.
DBName *string
// Provides the list of DB parameter groups applied to this DB instance.
DBParameterGroups []DBParameterGroupStatus
// Provides List of DB security group elements containing only DBSecurityGroup.Name
// and DBSecurityGroup.Status subelements.
DBSecurityGroups []DBSecurityGroupMembership
// Specifies information on the subnet group associated with the DB instance,
// including the name, description, and subnets in the subnet group.
DBSubnetGroup *DBSubnetGroup
// Specifies the port that the DB instance listens on. If the DB instance is part
// of a DB cluster, this can be a different port than the DB cluster port.
DbInstancePort *int32
// The Amazon Region-unique, immutable identifier for the DB instance. This
// identifier is found in Amazon CloudTrail log entries whenever the Amazon KMS key
// for the DB instance is accessed.
DbiResourceId *string
// Indicates whether or not the DB instance has deletion protection enabled. The
// instance can't be deleted when deletion protection is enabled. See Deleting a
// DB Instance (https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html)
// .
DeletionProtection *bool
// Not supported
DomainMemberships []DomainMembership
// A list of log types that this DB instance is configured to export to CloudWatch
// Logs.
EnabledCloudwatchLogsExports []string
// Specifies the connection endpoint.
Endpoint *Endpoint
// Provides the name of the database engine to be used for this DB instance.
Engine *string
// Indicates the database engine version.
EngineVersion *string
// The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log stream that
// receives the Enhanced Monitoring metrics data for the DB instance.
EnhancedMonitoringResourceArn *string
// True if Amazon Identity and Access Management (IAM) authentication is enabled,
// and otherwise false.
IAMDatabaseAuthenticationEnabled *bool
// Provides the date and time the DB instance was created.
InstanceCreateTime *time.Time
// Specifies the Provisioned IOPS (I/O operations per second) value.
Iops *int32
// Not supported: The encryption for DB instances is managed by the DB cluster.
KmsKeyId *string
// Specifies the latest time to which a database can be restored with
// point-in-time restore.
LatestRestorableTime *time.Time
// License model information for this DB instance.
LicenseModel *string
// Not supported by Neptune.
MasterUsername *string
// The interval, in seconds, between points when Enhanced Monitoring metrics are
// collected for the DB instance.
MonitoringInterval *int32
// The ARN for the IAM role that permits Neptune to send Enhanced Monitoring
// metrics to Amazon CloudWatch Logs.
MonitoringRoleArn *string
// Specifies if the DB instance is a Multi-AZ deployment.
MultiAZ *bool
// (Not supported by Neptune)
OptionGroupMemberships []OptionGroupMembership
// Specifies that changes to the DB instance are pending. This element is only
// included when changes are pending. Specific changes are identified by
// subelements.
PendingModifiedValues *PendingModifiedValues
// (Not supported by Neptune)
PerformanceInsightsEnabled *bool
// (Not supported by Neptune)
PerformanceInsightsKMSKeyId *string
// Specifies the daily time range during which automated backups are created if
// automated backups are enabled, as determined by the BackupRetentionPeriod .
PreferredBackupWindow *string
// Specifies the weekly time range during which system maintenance can occur, in
// Universal Coordinated Time (UTC).
PreferredMaintenanceWindow *string
// A value that specifies the order in which a Read Replica is promoted to the
// primary instance after a failure of the existing primary instance.
PromotionTier *int32
// This flag should no longer be used.
//
// Deprecated: This member has been deprecated.
PubliclyAccessible *bool
// Contains one or more identifiers of DB clusters that are Read Replicas of this
// DB instance.
ReadReplicaDBClusterIdentifiers []string
// Contains one or more identifiers of the Read Replicas associated with this DB
// instance.
ReadReplicaDBInstanceIdentifiers []string
// Contains the identifier of the source DB instance if this DB instance is a Read
// Replica.
ReadReplicaSourceDBInstanceIdentifier *string
// If present, specifies the name of the secondary Availability Zone for a DB
// instance with multi-AZ support.
SecondaryAvailabilityZone *string
// The status of a Read Replica. If the instance is not a Read Replica, this is
// blank.
StatusInfos []DBInstanceStatusInfo
// Not supported: The encryption for DB instances is managed by the DB cluster.
StorageEncrypted *bool
// Specifies the storage type associated with DB instance.
StorageType *string
// The ARN from the key store with which the instance is associated for TDE
// encryption.
TdeCredentialArn *string
// Not supported.
Timezone *string
// Provides a list of VPC security group elements that the DB instance belongs to.
VpcSecurityGroups []VpcSecurityGroupMembership
noSmithyDocumentSerde
}
// Provides a list of status information for a DB instance.
type DBInstanceStatusInfo struct {
// Details of the error if there is an error for the instance. If the instance is
// not in an error state, this value is blank.
Message *string
// Boolean value that is true if the instance is operating normally, or false if
// the instance is in an error state.
Normal *bool
// Status of the DB instance. For a StatusType of read replica, the values can be
// replicating, error, stopped, or terminated.
Status *string
// This value is currently "read replication."
StatusType *string
noSmithyDocumentSerde
}
// Contains the details of an Amazon Neptune DB parameter group. This data type is
// used as a response element in the DescribeDBParameterGroups action.
type DBParameterGroup struct {
// The Amazon Resource Name (ARN) for the DB parameter group.
DBParameterGroupArn *string
// Provides the name of the DB parameter group family that this DB parameter group
// is compatible with.
DBParameterGroupFamily *string
// Provides the name of the DB parameter group.
DBParameterGroupName *string
// Provides the customer-specified description for this DB parameter group.
Description *string
noSmithyDocumentSerde
}
// The status of the DB parameter group. This data type is used as a response
// element in the following actions:
// - CreateDBInstance
// - DeleteDBInstance
// - ModifyDBInstance
// - RebootDBInstance
type DBParameterGroupStatus struct {
// The name of the DP parameter group.
DBParameterGroupName *string
// The status of parameter updates.
ParameterApplyStatus *string
noSmithyDocumentSerde
}
// Specifies membership in a designated DB security group.
type DBSecurityGroupMembership struct {
// The name of the DB security group.
DBSecurityGroupName *string
// The status of the DB security group.
Status *string
noSmithyDocumentSerde
}
// Contains the details of an Amazon Neptune DB subnet group. This data type is
// used as a response element in the DescribeDBSubnetGroups action.
type DBSubnetGroup struct {
// The Amazon Resource Name (ARN) for the DB subnet group.
DBSubnetGroupArn *string
// Provides the description of the DB subnet group.
DBSubnetGroupDescription *string
// The name of the DB subnet group.
DBSubnetGroupName *string
// Provides the status of the DB subnet group.
SubnetGroupStatus *string
// Contains a list of Subnet elements.
Subnets []Subnet
// Provides the VpcId of the DB subnet group.
VpcId *string
noSmithyDocumentSerde
}
// An Active Directory Domain membership record associated with a DB instance.
type DomainMembership struct {
// The identifier of the Active Directory Domain.
Domain *string
// The fully qualified domain name of the Active Directory Domain.
FQDN *string
// The name of the IAM role to be used when making API calls to the Directory
// Service.
IAMRoleName *string
// The status of the DB instance's Active Directory Domain membership, such as
// joined, pending-join, failed etc).
Status *string
noSmithyDocumentSerde
}
// A range of double values.
type DoubleRange struct {
// The minimum value in the range.
From *float64
// The maximum value in the range.
To *float64
noSmithyDocumentSerde
}
// Specifies a connection endpoint. For the data structure that represents Amazon
// Neptune DB cluster endpoints, see DBClusterEndpoint .
type Endpoint struct {
// Specifies the DNS address of the DB instance.
Address *string
// Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
HostedZoneId *string
// Specifies the port that the database engine is listening on.
Port *int32
noSmithyDocumentSerde
}
// Contains the result of a successful invocation of the
// DescribeEngineDefaultParameters action.
type EngineDefaults struct {
// Specifies the name of the DB parameter group family that the engine default
// parameters apply to.
DBParameterGroupFamily *string
// An optional pagination token provided by a previous EngineDefaults request. If
// this parameter is specified, the response includes only records beyond the
// marker, up to the value specified by MaxRecords .
Marker *string
// Contains a list of engine default parameters.
Parameters []Parameter
noSmithyDocumentSerde
}
// This data type is used as a response element in the DescribeEvents action.
type Event struct {
// Specifies the date and time of the event.
Date *time.Time
// Specifies the category for the event.
EventCategories []string
// Provides the text of this event.
Message *string
// The Amazon Resource Name (ARN) for the event.
SourceArn *string
// Provides the identifier for the source of the event.
SourceIdentifier *string
// Specifies the source type for this event.
SourceType SourceType
noSmithyDocumentSerde
}
// Contains the results of a successful invocation of the DescribeEventCategories
// action.
type EventCategoriesMap struct {
// The event categories for the specified source type
EventCategories []string
// The source type that the returned categories belong to
SourceType *string
noSmithyDocumentSerde
}
// Contains the results of a successful invocation of the
// DescribeEventSubscriptions action.
type EventSubscription struct {
// The event notification subscription Id.
CustSubscriptionId *string
// The Amazon customer account associated with the event notification subscription.
CustomerAwsId *string
// A Boolean value indicating if the subscription is enabled. True indicates the
// subscription is enabled.
Enabled *bool
// A list of event categories for the event notification subscription.
EventCategoriesList []string
// The Amazon Resource Name (ARN) for the event subscription.
EventSubscriptionArn *string
// The topic ARN of the event notification subscription.
SnsTopicArn *string
// A list of source IDs for the event notification subscription.
SourceIdsList []string
// The source type for the event notification subscription.
SourceType *string
// The status of the event notification subscription. Constraints: Can be one of
// the following: creating | modifying | deleting | active | no-permission |
// topic-not-exist The status "no-permission" indicates that Neptune no longer has
// permission to post to the SNS topic. The status "topic-not-exist" indicates that
// the topic was deleted after the subscription was created.
Status *string
// The time the event notification subscription was created.
SubscriptionCreationTime *string
noSmithyDocumentSerde
}
// This type is not currently supported.
type Filter struct {
// This parameter is not currently supported.
//
// This member is required.
Name *string
// This parameter is not currently supported.
//
// This member is required.
Values []string
noSmithyDocumentSerde
}
// Contains the details of an Amazon Neptune global database. This data type is
// used as a response element for the CreateGlobalCluster , DescribeGlobalClusters
// , ModifyGlobalCluster , DeleteGlobalCluster , FailoverGlobalCluster , and
// RemoveFromGlobalCluster actions.
type GlobalCluster struct {
// The deletion protection setting for the global database.
DeletionProtection *bool
// The Neptune database engine used by the global database ( "neptune" ).
Engine *string
// The Neptune engine version used by the global database.
EngineVersion *string
// The Amazon Resource Name (ARN) for the global database.
GlobalClusterArn *string
// Contains a user-supplied global database cluster identifier. This identifier is
// the unique key that identifies a global database.
GlobalClusterIdentifier *string
// A list of cluster ARNs and instance ARNs for all the DB clusters that are part
// of the global database.
GlobalClusterMembers []GlobalClusterMember
// An immutable identifier for the global database that is unique within in all
// regions. This identifier is found in CloudTrail log entries whenever the KMS key
// for the DB cluster is accessed.
GlobalClusterResourceId *string
// Specifies the current state of this global database.
Status *string
// The storage encryption setting for the global database.
StorageEncrypted *bool
noSmithyDocumentSerde
}
// A data structure with information about any primary and secondary clusters
// associated with an Neptune global database.
type GlobalClusterMember struct {
// The Amazon Resource Name (ARN) for each Neptune cluster.
DBClusterArn *string
// Specifies whether the Neptune cluster is the primary cluster (that is, has
// read-write capability) for the Neptune global database with which it is
// associated.
IsWriter *bool
// The Amazon Resource Name (ARN) for each read-only secondary cluster associated
// with the Neptune global database.
Readers []string
noSmithyDocumentSerde
}
// Not supported by Neptune.
type OptionGroupMembership struct {
// Not supported by Neptune.
OptionGroupName *string
// Not supported by Neptune.
Status *string
noSmithyDocumentSerde
}
// Contains a list of available options for a DB instance. This data type is used
// as a response element in the DescribeOrderableDBInstanceOptions action.
type OrderableDBInstanceOption struct {
// A list of Availability Zones for a DB instance.
AvailabilityZones []AvailabilityZone
// The DB instance class for a DB instance.
DBInstanceClass *string
// The engine type of a DB instance.
Engine *string
// The engine version of a DB instance.
EngineVersion *string
// The license model for a DB instance.
LicenseModel *string
// Maximum total provisioned IOPS for a DB instance.
MaxIopsPerDbInstance *int32
// Maximum provisioned IOPS per GiB for a DB instance.
MaxIopsPerGib *float64
// Maximum storage size for a DB instance.
MaxStorageSize *int32
// Minimum total provisioned IOPS for a DB instance.
MinIopsPerDbInstance *int32
// Minimum provisioned IOPS per GiB for a DB instance.
MinIopsPerGib *float64
// Minimum storage size for a DB instance.
MinStorageSize *int32
// Indicates whether a DB instance is Multi-AZ capable.
MultiAZCapable *bool
// Indicates whether a DB instance can have a Read Replica.
ReadReplicaCapable *bool
// Indicates the storage type for a DB instance.
StorageType *string
// Indicates whether a DB instance supports Enhanced Monitoring at intervals from
// 1 to 60 seconds.
SupportsEnhancedMonitoring *bool
// A value that indicates whether you can use Neptune global databases with a
// specific combination of other DB engine attributes.
SupportsGlobalDatabases *bool
// Indicates whether a DB instance supports IAM database authentication.
SupportsIAMDatabaseAuthentication *bool
// Indicates whether a DB instance supports provisioned IOPS.
SupportsIops *bool
// (Not supported by Neptune)
SupportsPerformanceInsights *bool
// Indicates whether a DB instance supports encrypted storage.
SupportsStorageEncryption *bool
// Indicates whether a DB instance is in a VPC.
Vpc *bool
noSmithyDocumentSerde
}
// Specifies a parameter.
type Parameter struct {
// Specifies the valid range of values for the parameter.
AllowedValues *string
// Indicates when to apply parameter updates.
ApplyMethod ApplyMethod
// Specifies the engine specific parameters type.
ApplyType *string
// Specifies the valid data type for the parameter.
DataType *string
// Provides a description of the parameter.
Description *string
// Indicates whether ( true ) or not ( false ) the parameter can be modified. Some
// parameters have security or operational implications that prevent them from
// being changed.
IsModifiable *bool
// The earliest engine version to which the parameter can apply.
MinimumEngineVersion *string
// Specifies the name of the parameter.
ParameterName *string
// Specifies the value of the parameter.
ParameterValue *string
// Indicates the source of the parameter value.
Source *string
noSmithyDocumentSerde
}
// A list of the log types whose configuration is still pending. In other words,
// these log types are in the process of being activated or deactivated. Valid log
// types are: audit (to publish audit logs) and slowquery (to publish slow-query
// logs). See Publishing Neptune logs to Amazon CloudWatch logs (https://docs.aws.amazon.com/neptune/latest/userguide/cloudwatch-logs.html)
// .
type PendingCloudwatchLogsExports struct {
// Log types that are in the process of being enabled. After they are enabled,
// these log types are exported to CloudWatch Logs.
LogTypesToDisable []string
// Log types that are in the process of being deactivated. After they are
// deactivated, these log types aren't exported to CloudWatch Logs.
LogTypesToEnable []string
noSmithyDocumentSerde
}
// Provides information about a pending maintenance action for a resource.
type PendingMaintenanceAction struct {
// The type of pending maintenance action that is available for the resource.
Action *string
// The date of the maintenance window when the action is applied. The maintenance
// action is applied to the resource during its first maintenance window after this
// date. If this date is specified, any next-maintenance opt-in requests are
// ignored.
AutoAppliedAfterDate *time.Time
// The effective date when the pending maintenance action is applied to the
// resource. This date takes into account opt-in requests received from the
// ApplyPendingMaintenanceAction API, the AutoAppliedAfterDate , and the
// ForcedApplyDate . This value is blank if an opt-in request has not been received
// and nothing has been specified as AutoAppliedAfterDate or ForcedApplyDate .
CurrentApplyDate *time.Time
// A description providing more detail about the maintenance action.
Description *string
// The date when the maintenance action is automatically applied. The maintenance
// action is applied to the resource on this date regardless of the maintenance
// window for the resource. If this date is specified, any immediate opt-in
// requests are ignored.
ForcedApplyDate *time.Time
// Indicates the type of opt-in request that has been received for the resource.
OptInStatus *string
noSmithyDocumentSerde
}
// This data type is used as a response element in the ModifyDBInstance action.
type PendingModifiedValues struct {
// Contains the new AllocatedStorage size for the DB instance that will be applied
// or is currently being applied.
AllocatedStorage *int32
// Specifies the pending number of days for which automated backups are retained.
BackupRetentionPeriod *int32
// Specifies the identifier of the CA certificate for the DB instance.
CACertificateIdentifier *string
// Contains the new DBInstanceClass for the DB instance that will be applied or is
// currently being applied.
DBInstanceClass *string
// Contains the new DBInstanceIdentifier for the DB instance that will be applied
// or is currently being applied.
DBInstanceIdentifier *string
// The new DB subnet group for the DB instance.
DBSubnetGroupName *string
// Indicates the database engine version.
EngineVersion *string
// Specifies the new Provisioned IOPS value for the DB instance that will be
// applied or is currently being applied.
Iops *int32
// Not supported by Neptune.
LicenseModel *string
// Not supported by Neptune.
MasterUserPassword *string
// Indicates that the Single-AZ DB instance is to change to a Multi-AZ deployment.
MultiAZ *bool
// This PendingCloudwatchLogsExports structure specifies pending changes to which
// CloudWatch logs are enabled and which are disabled.
PendingCloudwatchLogsExports *PendingCloudwatchLogsExports
// Specifies the pending port for the DB instance.
Port *int32
// Specifies the storage type to be associated with the DB instance.
StorageType *string
noSmithyDocumentSerde
}
// A range of integer values.
type Range struct {
// The minimum value in the range.
From *int32
// The step value for the range. For example, if you have a range of 5,000 to
// 10,000, with a step value of 1,000, the valid values start at 5,000 and step up
// by 1,000. Even though 7,500 is within the range, it isn't a valid value for the
// range. The valid values are 5,000, 6,000, 7,000, 8,000...
Step *int32
// The maximum value in the range.
To *int32
noSmithyDocumentSerde
}
// Describes the pending maintenance actions for a resource.
type ResourcePendingMaintenanceActions struct {
// A list that provides details about the pending maintenance actions for the
// resource.
PendingMaintenanceActionDetails []PendingMaintenanceAction
// The ARN of the resource that has pending maintenance actions.
ResourceIdentifier *string
noSmithyDocumentSerde
}
// Contains the scaling configuration of a Neptune Serverless DB cluster. For more
// information, see Using Amazon Neptune Serverless (https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html)
// in the Amazon Neptune User Guide.
type ServerlessV2ScalingConfiguration struct {
// The maximum number of Neptune capacity units (NCUs) for a DB instance in a
// Neptune Serverless cluster. You can specify NCU values in half-step increments,
// such as 40, 40.5, 41, and so on.
MaxCapacity *float64
// The minimum number of Neptune capacity units (NCUs) for a DB instance in a
// Neptune Serverless cluster. You can specify NCU values in half-step increments,
// such as 8, 8.5, 9, and so on.
MinCapacity *float64
noSmithyDocumentSerde
}
// Shows the scaling configuration for a Neptune Serverless DB cluster. For more
// information, see Using Amazon Neptune Serverless (https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html)
// in the Amazon Neptune User Guide.
type ServerlessV2ScalingConfigurationInfo struct {
// The maximum number of Neptune capacity units (NCUs) for a DB instance in a
// Neptune Serverless cluster. You can specify NCU values in half-step increments,
// such as 40, 40.5, 41, and so on.
MaxCapacity *float64
// The minimum number of Neptune capacity units (NCUs) for a DB instance in a
// Neptune Serverless cluster. You can specify NCU values in half-step increments,
// such as 8, 8.5, 9, and so on.
MinCapacity *float64
noSmithyDocumentSerde
}
// Specifies a subnet. This data type is used as a response element in the
// DescribeDBSubnetGroups action.
type Subnet struct {
// Specifies the EC2 Availability Zone that the subnet is in.
SubnetAvailabilityZone *AvailabilityZone
// Specifies the identifier of the subnet.
SubnetIdentifier *string
// Specifies the status of the subnet.
SubnetStatus *string
noSmithyDocumentSerde
}
// Metadata assigned to an Amazon Neptune resource consisting of a key-value pair.
type Tag struct {
// A key is the required name of the tag. The string value can be from 1 to 128
// Unicode characters in length and can't be prefixed with aws: or rds: . The
// string can only contain the set of Unicode letters, digits, white-space, '_',
// '.', '/', '=', '+', '-' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$").
Key *string
// A value is the optional value of the tag. The string value can be from 1 to 256
// Unicode characters in length and can't be prefixed with aws: or rds: . The
// string can only contain the set of Unicode letters, digits, white-space, '_',
// '.', '/', '=', '+', '-' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-]*)$").
Value *string
noSmithyDocumentSerde
}
// A time zone associated with a DBInstance .
type Timezone struct {
// The name of the time zone.
TimezoneName *string
noSmithyDocumentSerde
}
// The version of the database engine that a DB instance can be upgraded to.
type UpgradeTarget struct {
// A value that indicates whether the target version is applied to any source DB
// instances that have AutoMinorVersionUpgrade set to true.
AutoUpgrade *bool
// The version of the database engine that a DB instance can be upgraded to.
Description *string
// The name of the upgrade target database engine.
Engine *string
// The version number of the upgrade target database engine.
EngineVersion *string
// A value that indicates whether a database engine is upgraded to a major version.
IsMajorVersionUpgrade *bool
// A value that indicates whether you can use Neptune global databases with the
// target engine version.
SupportsGlobalDatabases *bool
noSmithyDocumentSerde
}
// Information about valid modifications that you can make to your DB instance.
// Contains the result of a successful call to the
// DescribeValidDBInstanceModifications action. You can use this information when
// you call ModifyDBInstance .
type ValidDBInstanceModificationsMessage struct {
// Valid storage options for your DB instance.
Storage []ValidStorageOptions
noSmithyDocumentSerde
}
// Information about valid modifications that you can make to your DB instance.
// Contains the result of a successful call to the
// DescribeValidDBInstanceModifications action.
type ValidStorageOptions struct {
// The valid range of Provisioned IOPS to gibibytes of storage multiplier. For
// example, 3-10, which means that provisioned IOPS can be between 3 and 10 times
// storage.
IopsToStorageRatio []DoubleRange
// The valid range of provisioned IOPS. For example, 1000-20000.
ProvisionedIops []Range
// The valid range of storage in gibibytes. For example, 100 to 16384.
StorageSize []Range
// The valid storage types for your DB instance. For example, gp2, io1.
StorageType *string
noSmithyDocumentSerde
}
// This data type is used as a response element for queries on VPC security group
// membership.
type VpcSecurityGroupMembership struct {
// The status of the VPC security group.
Status *string
// The name of the VPC security group.
VpcSecurityGroupId *string
noSmithyDocumentSerde
}
type noSmithyDocumentSerde = smithydocument.NoSerde
|