aws-sdk 2.776.0 → 2.780.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -76,6 +76,14 @@ declare class Neptune extends Service {
76
76
  * Creates a new Amazon Neptune DB cluster. You can use the ReplicationSourceIdentifier parameter to create the DB cluster as a Read Replica of another DB cluster or Amazon Neptune DB instance. Note that when you create a new cluster using CreateDBCluster directly, deletion protection is disabled by default (when you create a new production cluster in the console, deletion protection is enabled by default). You can only delete a DB cluster if its DeletionProtection field is set to false.
77
77
  */
78
78
  createDBCluster(callback?: (err: AWSError, data: Neptune.Types.CreateDBClusterResult) => void): Request<Neptune.Types.CreateDBClusterResult, AWSError>;
79
+ /**
80
+ * Creates a new custom endpoint and associates it with an Amazon Neptune DB cluster.
81
+ */
82
+ createDBClusterEndpoint(params: Neptune.Types.CreateDBClusterEndpointMessage, callback?: (err: AWSError, data: Neptune.Types.CreateDBClusterEndpointOutput) => void): Request<Neptune.Types.CreateDBClusterEndpointOutput, AWSError>;
83
+ /**
84
+ * Creates a new custom endpoint and associates it with an Amazon Neptune DB cluster.
85
+ */
86
+ createDBClusterEndpoint(callback?: (err: AWSError, data: Neptune.Types.CreateDBClusterEndpointOutput) => void): Request<Neptune.Types.CreateDBClusterEndpointOutput, AWSError>;
79
87
  /**
80
88
  * Creates a new DB cluster parameter group. Parameters in a DB cluster parameter group apply to all of the instances in a DB cluster. A DB cluster parameter group is initially created with the default parameters for the database engine used by instances in the DB cluster. To provide custom values for any of the parameters, you must modify the group after creating it using ModifyDBClusterParameterGroup. Once you've created a DB cluster parameter group, you need to associate it with your DB cluster using ModifyDBCluster. When you associate a new DB cluster parameter group with a running DB cluster, you need to reboot the DB instances in the DB cluster without failover for the new DB cluster parameter group and associated settings to take effect. After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon Neptune to fully complete the create action before the DB cluster parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon Neptune console or the DescribeDBClusterParameters command to verify that your DB cluster parameter group has been created or modified.
81
89
  */
@@ -132,6 +140,14 @@ declare class Neptune extends Service {
132
140
  * The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted. Note that the DB Cluster cannot be deleted if deletion protection is enabled. To delete it, you must first set its DeletionProtection field to False.
133
141
  */
134
142
  deleteDBCluster(callback?: (err: AWSError, data: Neptune.Types.DeleteDBClusterResult) => void): Request<Neptune.Types.DeleteDBClusterResult, AWSError>;
143
+ /**
144
+ * Deletes a custom endpoint and removes it from an Amazon Neptune DB cluster.
145
+ */
146
+ deleteDBClusterEndpoint(params: Neptune.Types.DeleteDBClusterEndpointMessage, callback?: (err: AWSError, data: Neptune.Types.DeleteDBClusterEndpointOutput) => void): Request<Neptune.Types.DeleteDBClusterEndpointOutput, AWSError>;
147
+ /**
148
+ * Deletes a custom endpoint and removes it from an Amazon Neptune DB cluster.
149
+ */
150
+ deleteDBClusterEndpoint(callback?: (err: AWSError, data: Neptune.Types.DeleteDBClusterEndpointOutput) => void): Request<Neptune.Types.DeleteDBClusterEndpointOutput, AWSError>;
135
151
  /**
136
152
  * Deletes a specified DB cluster parameter group. The DB cluster parameter group to be deleted can't be associated with any DB clusters.
137
153
  */
@@ -180,6 +196,14 @@ declare class Neptune extends Service {
180
196
  * Deletes an event notification subscription.
181
197
  */
182
198
  deleteEventSubscription(callback?: (err: AWSError, data: Neptune.Types.DeleteEventSubscriptionResult) => void): Request<Neptune.Types.DeleteEventSubscriptionResult, AWSError>;
199
+ /**
200
+ * Returns information about endpoints for an Amazon Neptune DB cluster. This operation can also return information for Amazon RDS clusters and Amazon DocDB clusters.
201
+ */
202
+ describeDBClusterEndpoints(params: Neptune.Types.DescribeDBClusterEndpointsMessage, callback?: (err: AWSError, data: Neptune.Types.DBClusterEndpointMessage) => void): Request<Neptune.Types.DBClusterEndpointMessage, AWSError>;
203
+ /**
204
+ * Returns information about endpoints for an Amazon Neptune DB cluster. This operation can also return information for Amazon RDS clusters and Amazon DocDB clusters.
205
+ */
206
+ describeDBClusterEndpoints(callback?: (err: AWSError, data: Neptune.Types.DBClusterEndpointMessage) => void): Request<Neptune.Types.DBClusterEndpointMessage, AWSError>;
183
207
  /**
184
208
  * Returns a list of DBClusterParameterGroup descriptions. If a DBClusterParameterGroupName parameter is specified, the list will contain only the description of the specified DB cluster parameter group.
185
209
  */
@@ -348,6 +372,14 @@ declare class Neptune extends Service {
348
372
  * Modify a setting for a DB cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request.
349
373
  */
350
374
  modifyDBCluster(callback?: (err: AWSError, data: Neptune.Types.ModifyDBClusterResult) => void): Request<Neptune.Types.ModifyDBClusterResult, AWSError>;
375
+ /**
376
+ * Modifies the properties of an endpoint in an Amazon Neptune DB cluster.
377
+ */
378
+ modifyDBClusterEndpoint(params: Neptune.Types.ModifyDBClusterEndpointMessage, callback?: (err: AWSError, data: Neptune.Types.ModifyDBClusterEndpointOutput) => void): Request<Neptune.Types.ModifyDBClusterEndpointOutput, AWSError>;
379
+ /**
380
+ * Modifies the properties of an endpoint in an Amazon Neptune DB cluster.
381
+ */
382
+ modifyDBClusterEndpoint(callback?: (err: AWSError, data: Neptune.Types.ModifyDBClusterEndpointOutput) => void): Request<Neptune.Types.ModifyDBClusterEndpointOutput, AWSError>;
351
383
  /**
352
384
  * Modifies the parameters of a DB cluster parameter group. To modify more than one parameter, submit a list of the following: ParameterName, ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request. Changes to dynamic parameters are applied immediately. Changes to static parameters require a reboot without failover to the DB cluster associated with the parameter group before the change can take effect. After you create a DB cluster parameter group, you should wait at least 5 minutes before creating your first DB cluster that uses that DB cluster parameter group as the default parameter group. This allows Amazon Neptune to fully complete the create action before the parameter group is used as the default for a new DB cluster. This is especially important for parameters that are critical when creating the default database for a DB cluster, such as the character set for the default database defined by the character_set_database parameter. You can use the Parameter Groups option of the Amazon Neptune console or the DescribeDBClusterParameters command to verify that your DB cluster parameter group has been created or modified.
353
385
  */
@@ -511,6 +543,10 @@ declare namespace Neptune {
511
543
  * The Amazon Resource Name (ARN) of the IAM role to associate with the Neptune DB cluster, for example arn:aws:iam::123456789012:role/NeptuneAccessRole.
512
544
  */
513
545
  RoleArn: String;
546
+ /**
547
+ * The name of the feature for the Neptune DB cluster that the IAM role is to be associated with. For the list of supported feature names, see DBEngineVersion.
548
+ */
549
+ FeatureName?: String;
514
550
  }
515
551
  export interface AddSourceIdentifierToSubscriptionMessage {
516
552
  /**
@@ -655,6 +691,74 @@ declare namespace Neptune {
655
691
  export interface CopyDBParameterGroupResult {
656
692
  DBParameterGroup?: DBParameterGroup;
657
693
  }
694
+ export interface CreateDBClusterEndpointMessage {
695
+ /**
696
+ * The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
697
+ */
698
+ DBClusterIdentifier: String;
699
+ /**
700
+ * The identifier to use for the new endpoint. This parameter is stored as a lowercase string.
701
+ */
702
+ DBClusterEndpointIdentifier: String;
703
+ /**
704
+ * The type of the endpoint. One of: READER, WRITER, ANY.
705
+ */
706
+ EndpointType: String;
707
+ /**
708
+ * List of DB instance identifiers that are part of the custom endpoint group.
709
+ */
710
+ StaticMembers?: StringList;
711
+ /**
712
+ * 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.
713
+ */
714
+ ExcludedMembers?: StringList;
715
+ /**
716
+ * The tags to be assigned to the Amazon Neptune resource.
717
+ */
718
+ Tags?: TagList;
719
+ }
720
+ export interface CreateDBClusterEndpointOutput {
721
+ /**
722
+ * The identifier associated with the endpoint. This parameter is stored as a lowercase string.
723
+ */
724
+ DBClusterEndpointIdentifier?: String;
725
+ /**
726
+ * The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
727
+ */
728
+ DBClusterIdentifier?: String;
729
+ /**
730
+ * A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.
731
+ */
732
+ DBClusterEndpointResourceIdentifier?: String;
733
+ /**
734
+ * The DNS address of the endpoint.
735
+ */
736
+ Endpoint?: String;
737
+ /**
738
+ * 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.
739
+ */
740
+ Status?: String;
741
+ /**
742
+ * The type of the endpoint. One of: READER, WRITER, CUSTOM.
743
+ */
744
+ EndpointType?: String;
745
+ /**
746
+ * The type associated with a custom endpoint. One of: READER, WRITER, ANY.
747
+ */
748
+ CustomEndpointType?: String;
749
+ /**
750
+ * List of DB instance identifiers that are part of the custom endpoint group.
751
+ */
752
+ StaticMembers?: StringList;
753
+ /**
754
+ * 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.
755
+ */
756
+ ExcludedMembers?: StringList;
757
+ /**
758
+ * The Amazon Resource Name (ARN) for the endpoint.
759
+ */
760
+ DBClusterEndpointArn?: String;
761
+ }
658
762
  export interface CreateDBClusterMessage {
659
763
  /**
660
764
  * A list of EC2 Availability Zones that instances in the DB cluster can be created in.
@@ -693,7 +797,7 @@ declare namespace Neptune {
693
797
  */
694
798
  Engine: String;
695
799
  /**
696
- * The version number of the database engine to use. Currently, setting this parameter has no effect. Example: 1.0.1
800
+ * The version number of the database engine to use for the new DB cluster. Example: 1.0.2.1
697
801
  */
698
802
  EngineVersion?: String;
699
803
  /**
@@ -741,7 +845,7 @@ declare namespace Neptune {
741
845
  */
742
846
  PreSignedUrl?: String;
743
847
  /**
744
- * True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise false. Default: false
848
+ * Not supported by Neptune.
745
849
  */
746
850
  EnableIAMDatabaseAuthentication?: BooleanOptional;
747
851
  /**
@@ -1196,6 +1300,59 @@ declare namespace Neptune {
1196
1300
  */
1197
1301
  DeletionProtection?: BooleanOptional;
1198
1302
  }
1303
+ export interface DBClusterEndpoint {
1304
+ /**
1305
+ * The identifier associated with the endpoint. This parameter is stored as a lowercase string.
1306
+ */
1307
+ DBClusterEndpointIdentifier?: String;
1308
+ /**
1309
+ * The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
1310
+ */
1311
+ DBClusterIdentifier?: String;
1312
+ /**
1313
+ * A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.
1314
+ */
1315
+ DBClusterEndpointResourceIdentifier?: String;
1316
+ /**
1317
+ * The DNS address of the endpoint.
1318
+ */
1319
+ Endpoint?: String;
1320
+ /**
1321
+ * 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.
1322
+ */
1323
+ Status?: String;
1324
+ /**
1325
+ * The type of the endpoint. One of: READER, WRITER, CUSTOM.
1326
+ */
1327
+ EndpointType?: String;
1328
+ /**
1329
+ * The type associated with a custom endpoint. One of: READER, WRITER, ANY.
1330
+ */
1331
+ CustomEndpointType?: String;
1332
+ /**
1333
+ * List of DB instance identifiers that are part of the custom endpoint group.
1334
+ */
1335
+ StaticMembers?: StringList;
1336
+ /**
1337
+ * 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.
1338
+ */
1339
+ ExcludedMembers?: StringList;
1340
+ /**
1341
+ * The Amazon Resource Name (ARN) for the endpoint.
1342
+ */
1343
+ DBClusterEndpointArn?: String;
1344
+ }
1345
+ export type DBClusterEndpointList = DBClusterEndpoint[];
1346
+ export interface DBClusterEndpointMessage {
1347
+ /**
1348
+ * An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
1349
+ */
1350
+ Marker?: String;
1351
+ /**
1352
+ * Contains the details of the endpoints associated with the cluster and matching any filter conditions.
1353
+ */
1354
+ DBClusterEndpoints?: DBClusterEndpointList;
1355
+ }
1199
1356
  export type DBClusterList = DBCluster[];
1200
1357
  export interface DBClusterMember {
1201
1358
  /**
@@ -1291,6 +1448,10 @@ declare namespace Neptune {
1291
1448
  * 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 AWS 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 AWS services on your behalf.
1292
1449
  */
1293
1450
  Status?: String;
1451
+ /**
1452
+ * The name of the feature associated with the AWS Identity and Access Management (IAM) role. For the list of supported feature names, see DBEngineVersion.
1453
+ */
1454
+ FeatureName?: String;
1294
1455
  }
1295
1456
  export type DBClusterRoles = DBClusterRole[];
1296
1457
  export interface DBClusterSnapshot {
@@ -1817,6 +1978,54 @@ declare namespace Neptune {
1817
1978
  DBSubnetGroups?: DBSubnetGroups;
1818
1979
  }
1819
1980
  export type DBSubnetGroups = DBSubnetGroup[];
1981
+ export interface DeleteDBClusterEndpointMessage {
1982
+ /**
1983
+ * The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.
1984
+ */
1985
+ DBClusterEndpointIdentifier: String;
1986
+ }
1987
+ export interface DeleteDBClusterEndpointOutput {
1988
+ /**
1989
+ * The identifier associated with the endpoint. This parameter is stored as a lowercase string.
1990
+ */
1991
+ DBClusterEndpointIdentifier?: String;
1992
+ /**
1993
+ * The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
1994
+ */
1995
+ DBClusterIdentifier?: String;
1996
+ /**
1997
+ * A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.
1998
+ */
1999
+ DBClusterEndpointResourceIdentifier?: String;
2000
+ /**
2001
+ * The DNS address of the endpoint.
2002
+ */
2003
+ Endpoint?: String;
2004
+ /**
2005
+ * 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.
2006
+ */
2007
+ Status?: String;
2008
+ /**
2009
+ * The type of the endpoint. One of: READER, WRITER, CUSTOM.
2010
+ */
2011
+ EndpointType?: String;
2012
+ /**
2013
+ * The type associated with a custom endpoint. One of: READER, WRITER, ANY.
2014
+ */
2015
+ CustomEndpointType?: String;
2016
+ /**
2017
+ * List of DB instance identifiers that are part of the custom endpoint group.
2018
+ */
2019
+ StaticMembers?: StringList;
2020
+ /**
2021
+ * 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.
2022
+ */
2023
+ ExcludedMembers?: StringList;
2024
+ /**
2025
+ * The Amazon Resource Name (ARN) for the endpoint.
2026
+ */
2027
+ DBClusterEndpointArn?: String;
2028
+ }
1820
2029
  export interface DeleteDBClusterMessage {
1821
2030
  /**
1822
2031
  * The DB cluster identifier for the DB cluster to be deleted. This parameter isn't case-sensitive. Constraints: Must match an existing DBClusterIdentifier.
@@ -1887,6 +2096,28 @@ declare namespace Neptune {
1887
2096
  export interface DeleteEventSubscriptionResult {
1888
2097
  EventSubscription?: EventSubscription;
1889
2098
  }
2099
+ export interface DescribeDBClusterEndpointsMessage {
2100
+ /**
2101
+ * The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
2102
+ */
2103
+ DBClusterIdentifier?: String;
2104
+ /**
2105
+ * The identifier of the endpoint to describe. This parameter is stored as a lowercase string.
2106
+ */
2107
+ DBClusterEndpointIdentifier?: String;
2108
+ /**
2109
+ * A set of name-value pairs that define which endpoints to include in the output. The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,.... Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type, db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status filter can be one or more of: available, creating, deleting, inactive, modifying.
2110
+ */
2111
+ Filters?: FilterList;
2112
+ /**
2113
+ * The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results. Default: 100 Constraints: Minimum 20, maximum 100.
2114
+ */
2115
+ MaxRecords?: IntegerOptional;
2116
+ /**
2117
+ * An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
2118
+ */
2119
+ Marker?: String;
2120
+ }
1890
2121
  export interface DescribeDBClusterParameterGroupsMessage {
1891
2122
  /**
1892
2123
  * The name of a specific DB cluster parameter group to return details for. Constraints: If supplied, must match the name of an existing DBClusterParameterGroup.
@@ -2478,6 +2709,66 @@ declare namespace Neptune {
2478
2709
  Filters?: FilterList;
2479
2710
  }
2480
2711
  export type LogTypeList = String[];
2712
+ export interface ModifyDBClusterEndpointMessage {
2713
+ /**
2714
+ * The identifier of the endpoint to modify. This parameter is stored as a lowercase string.
2715
+ */
2716
+ DBClusterEndpointIdentifier: String;
2717
+ /**
2718
+ * The type of the endpoint. One of: READER, WRITER, ANY.
2719
+ */
2720
+ EndpointType?: String;
2721
+ /**
2722
+ * List of DB instance identifiers that are part of the custom endpoint group.
2723
+ */
2724
+ StaticMembers?: StringList;
2725
+ /**
2726
+ * 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.
2727
+ */
2728
+ ExcludedMembers?: StringList;
2729
+ }
2730
+ export interface ModifyDBClusterEndpointOutput {
2731
+ /**
2732
+ * The identifier associated with the endpoint. This parameter is stored as a lowercase string.
2733
+ */
2734
+ DBClusterEndpointIdentifier?: String;
2735
+ /**
2736
+ * The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
2737
+ */
2738
+ DBClusterIdentifier?: String;
2739
+ /**
2740
+ * A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.
2741
+ */
2742
+ DBClusterEndpointResourceIdentifier?: String;
2743
+ /**
2744
+ * The DNS address of the endpoint.
2745
+ */
2746
+ Endpoint?: String;
2747
+ /**
2748
+ * 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.
2749
+ */
2750
+ Status?: String;
2751
+ /**
2752
+ * The type of the endpoint. One of: READER, WRITER, CUSTOM.
2753
+ */
2754
+ EndpointType?: String;
2755
+ /**
2756
+ * The type associated with a custom endpoint. One of: READER, WRITER, ANY.
2757
+ */
2758
+ CustomEndpointType?: String;
2759
+ /**
2760
+ * List of DB instance identifiers that are part of the custom endpoint group.
2761
+ */
2762
+ StaticMembers?: StringList;
2763
+ /**
2764
+ * 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.
2765
+ */
2766
+ ExcludedMembers?: StringList;
2767
+ /**
2768
+ * The Amazon Resource Name (ARN) for the endpoint.
2769
+ */
2770
+ DBClusterEndpointArn?: String;
2771
+ }
2481
2772
  export interface ModifyDBClusterMessage {
2482
2773
  /**
2483
2774
  * The DB cluster identifier for the cluster being modified. This parameter is not case-sensitive. Constraints: Must match the identifier of an existing DBCluster.
@@ -2532,7 +2823,7 @@ declare namespace Neptune {
2532
2823
  */
2533
2824
  CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
2534
2825
  /**
2535
- * The version number of the database engine. Currently, setting this parameter has no effect. To upgrade your database engine to the most recent release, use the ApplyPendingMaintenanceAction API. For a list of valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.
2826
+ * The version number of the database engine to which you want to upgrade. Changing this parameter results in an outage. The change is applied during the next maintenance window unless the ApplyImmediately parameter is set to true. For a list of valid engine versions, see Engine Releases for Amazon Neptune, or call DescribeDBEngineVersions.
2536
2827
  */
2537
2828
  EngineVersion?: String;
2538
2829
  /**
@@ -3081,6 +3372,10 @@ declare namespace Neptune {
3081
3372
  * The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB cluster, for example arn:aws:iam::123456789012:role/NeptuneAccessRole.
3082
3373
  */
3083
3374
  RoleArn: String;
3375
+ /**
3376
+ * The name of the feature for the DB cluster that the IAM role is to be disassociated from. For the list of supported feature names, see DBEngineVersion.
3377
+ */
3378
+ FeatureName?: String;
3084
3379
  }
3085
3380
  export interface RemoveSourceIdentifierFromSubscriptionMessage {
3086
3381
  /**
@@ -3298,6 +3593,7 @@ declare namespace Neptune {
3298
3593
  DBCluster?: DBCluster;
3299
3594
  }
3300
3595
  export type String = string;
3596
+ export type StringList = String[];
3301
3597
  export interface Subnet {
3302
3598
  /**
3303
3599
  * Specifies the identifier of the subnet.
@@ -1084,6 +1084,13 @@ declare namespace QuickSight {
1084
1084
  export type ClusterId = string;
1085
1085
  export type ColorList = HexColor[];
1086
1086
  export type ColumnDataType = "STRING"|"INTEGER"|"DECIMAL"|"DATETIME"|string;
1087
+ export interface ColumnDescription {
1088
+ /**
1089
+ * The text of a description for a column.
1090
+ */
1091
+ Text?: ColumnDescriptiveText;
1092
+ }
1093
+ export type ColumnDescriptiveText = string;
1087
1094
  export interface ColumnGroup {
1088
1095
  /**
1089
1096
  * Geospatial column group that denotes a hierarchy.
@@ -1133,6 +1140,10 @@ declare namespace QuickSight {
1133
1140
  * A geospatial role for a column.
1134
1141
  */
1135
1142
  ColumnGeographicRole?: GeoSpatialDataRole;
1143
+ /**
1144
+ * A description for a column.
1145
+ */
1146
+ ColumnDescription?: ColumnDescription;
1136
1147
  }
1137
1148
  export type ColumnTagList = ColumnTag[];
1138
1149
  export type CopySourceArn = string;
@@ -1836,7 +1847,7 @@ declare namespace QuickSight {
1836
1847
  */
1837
1848
  Password: Password;
1838
1849
  /**
1839
- * A set of alternate data source parameters that you want to share for these credentials. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allowlist. If the structures are an exact match, the request is allowed to use the new data source with the existing credentials. If the AlternateDataSourceParameters list is null, the DataSourceParameters originally used with these Credentials is automatically allowed.
1850
+ * A set of alternate data source parameters that you want to share for these credentials. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allow list. If the structures are an exact match, the request is allowed to use the new data source with the existing credentials. If the AlternateDataSourceParameters list is null, the DataSourceParameters originally used with these Credentials is automatically allowed.
1840
1851
  */
1841
1852
  AlternateDataSourceParameters?: DataSourceParametersList;
1842
1853
  }
@@ -2214,7 +2225,7 @@ declare namespace QuickSight {
2214
2225
  */
2215
2226
  DataSourceParameters?: DataSourceParameters;
2216
2227
  /**
2217
- * A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allowlist. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the AlternateDataSourceParameters list is null, the Credentials originally used with this DataSourceParameters are automatically allowed.
2228
+ * A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allow list. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the AlternateDataSourceParameters list is null, the Credentials originally used with this DataSourceParameters are automatically allowed.
2218
2229
  */
2219
2230
  AlternateDataSourceParameters?: DataSourceParametersList;
2220
2231
  /**
@@ -4521,6 +4532,10 @@ declare namespace QuickSight {
4521
4532
  * A display name for the dataset.
4522
4533
  */
4523
4534
  Name?: ColumnName;
4535
+ /**
4536
+ * A description for a column.
4537
+ */
4538
+ Description?: ColumnDescriptiveText;
4524
4539
  /**
4525
4540
  * Type.
4526
4541
  */
@@ -4730,7 +4745,7 @@ declare namespace QuickSight {
4730
4745
  export type ResourceName = string;
4731
4746
  export interface ResourcePermission {
4732
4747
  /**
4733
- * The Amazon Resource Name (ARN) of the principal. This can be one of the following: The ARN of an Amazon QuickSight user, group, or namespace. (This is most common.) The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts. (This is less common.)
4748
+ * The Amazon Resource Name (ARN) of the principal. This can be one of the following: The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.) The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.) The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts. (This is less common.)
4734
4749
  */
4735
4750
  Principal: Principal;
4736
4751
  /**
@@ -4903,7 +4918,7 @@ declare namespace QuickSight {
4903
4918
  */
4904
4919
  SheetId?: RestrictiveResourceId;
4905
4920
  /**
4906
- * The name of a sheet. This is displayed on the sheet's tab in the QuickSight console.
4921
+ * The name of a sheet. This name is displayed on the sheet's tab in the QuickSight console.
4907
4922
  */
4908
4923
  Name?: NonEmptyString;
4909
4924
  }