aws-sdk 2.810.0 → 2.814.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.
- package/CHANGELOG.md +35 -1
- package/README.md +2 -3
- package/apis/amp-2020-08-01.examples.json +5 -0
- package/apis/amp-2020-08-01.min.json +211 -0
- package/apis/amp-2020-08-01.paginators.json +10 -0
- package/apis/ce-2017-10-25.min.json +101 -97
- package/apis/config-2014-11-12.min.json +40 -6
- package/apis/dlm-2018-01-12.min.json +104 -16
- package/apis/ec2-2016-11-15.min.json +11 -0
- package/apis/greengrassv2-2020-11-30.examples.json +5 -0
- package/apis/greengrassv2-2020-11-30.min.json +1069 -0
- package/apis/greengrassv2-2020-11-30.paginators.json +40 -0
- package/apis/imagebuilder-2019-12-02.min.json +375 -88
- package/apis/imagebuilder-2019-12-02.paginators.json +24 -9
- package/apis/iot-2015-05-28.min.json +904 -278
- package/apis/iot-2015-05-28.paginators.json +24 -0
- package/apis/iotanalytics-2017-11-27.min.json +79 -27
- package/apis/iotdeviceadvisor-2020-09-18.examples.json +5 -0
- package/apis/iotdeviceadvisor-2020-09-18.min.json +596 -0
- package/apis/iotdeviceadvisor-2020-09-18.paginators.json +19 -0
- package/apis/iotfleethub-2020-11-03.examples.json +5 -0
- package/apis/iotfleethub-2020-11-03.min.json +292 -0
- package/apis/iotfleethub-2020-11-03.paginators.json +9 -0
- package/apis/iotwireless-2020-11-22.examples.json +5 -0
- package/apis/iotwireless-2020-11-22.min.json +1832 -0
- package/apis/iotwireless-2020-11-22.paginators.json +29 -0
- package/apis/kms-2014-11-01.examples.json +7 -4
- package/apis/kms-2014-11-01.min.json +7 -1
- package/apis/lambda-2015-03-31.examples.json +6 -6
- package/apis/lambda-2015-03-31.min.json +140 -100
- package/apis/location-2020-11-19.examples.json +5 -0
- package/apis/location-2020-11-19.min.json +1759 -0
- package/apis/location-2020-11-19.paginators.json +44 -0
- package/apis/metadata.json +21 -0
- package/apis/quicksight-2018-04-01.min.json +120 -119
- package/apis/rds-2014-10-31.min.json +192 -172
- package/apis/route53-2013-04-01.min.json +372 -96
- package/apis/route53resolver-2018-04-01.min.json +81 -6
- package/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/apis/servicecatalog-2015-12-10.min.json +187 -117
- package/apis/servicecatalog-2015-12-10.paginators.json +5 -0
- package/apis/ssm-2014-11-06.min.json +606 -293
- package/apis/ssm-2014-11-06.paginators.json +12 -0
- package/apis/wellarchitected-2020-03-31.examples.json +5 -0
- package/apis/wellarchitected-2020-03-31.min.json +1329 -0
- package/apis/wellarchitected-2020-03-31.paginators.json +49 -0
- package/clients/all.d.ts +7 -0
- package/clients/all.js +8 -1
- package/clients/amp.d.ts +220 -0
- package/clients/amp.js +18 -0
- package/clients/configservice.d.ts +49 -28
- package/clients/costexplorer.d.ts +3 -2
- package/clients/dlm.d.ts +99 -7
- package/clients/ec2.d.ts +14 -2
- package/clients/greengrassv2.d.ts +1270 -0
- package/clients/greengrassv2.js +18 -0
- package/clients/imagebuilder.d.ts +433 -5
- package/clients/iot.d.ts +770 -60
- package/clients/iotanalytics.d.ts +68 -2
- package/clients/iotdeviceadvisor.d.ts +710 -0
- package/clients/iotdeviceadvisor.js +18 -0
- package/clients/iotfleethub.d.ts +315 -0
- package/clients/iotfleethub.js +18 -0
- package/clients/iotwireless.d.ts +2124 -0
- package/clients/iotwireless.js +18 -0
- package/clients/kms.d.ts +117 -109
- package/clients/lambda.d.ts +63 -17
- package/clients/location.d.ts +1498 -0
- package/clients/location.js +18 -0
- package/clients/quicksight.d.ts +15 -10
- package/clients/rds.d.ts +41 -14
- package/clients/route53.d.ts +247 -1
- package/clients/route53resolver.d.ts +105 -8
- package/clients/servicecatalog.d.ts +122 -14
- package/clients/sqs.d.ts +23 -23
- package/clients/ssm.d.ts +534 -31
- package/clients/wellarchitected.d.ts +871 -0
- package/clients/wellarchitected.js +18 -0
- package/dist/aws-sdk-core-react-native.js +7 -2
- package/dist/aws-sdk-react-native.js +293 -24
- package/dist/aws-sdk.js +2709 -1190
- package/dist/aws-sdk.min.js +81 -81
- package/lib/config_service_placeholders.d.ts +14 -0
- package/lib/core.js +1 -1
- package/lib/util.js +5 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['location'] = {};
|
|
7
|
+
AWS.Location = Service.defineService('location', ['2020-11-19']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['location'], '2020-11-19', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/location-2020-11-19.min.json');
|
|
11
|
+
model.paginators = require('../apis/location-2020-11-19.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.Location;
|
package/clients/quicksight.d.ts
CHANGED
|
@@ -420,11 +420,11 @@ declare class QuickSight extends Service {
|
|
|
420
420
|
*/
|
|
421
421
|
describeUser(callback?: (err: AWSError, data: QuickSight.Types.DescribeUserResponse) => void): Request<QuickSight.Types.DescribeUserResponse, AWSError>;
|
|
422
422
|
/**
|
|
423
|
-
* Generates a session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your web server code. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the combination of URL and authorization code: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. The resulting user session is valid for 10 hours. For more information, see
|
|
423
|
+
* Generates a session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your web server code. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the combination of URL and authorization code: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. The resulting user session is valid for 10 hours. For more information, see Embedded Analytics in the Amazon QuickSight User Guide.
|
|
424
424
|
*/
|
|
425
425
|
getDashboardEmbedUrl(params: QuickSight.Types.GetDashboardEmbedUrlRequest, callback?: (err: AWSError, data: QuickSight.Types.GetDashboardEmbedUrlResponse) => void): Request<QuickSight.Types.GetDashboardEmbedUrlResponse, AWSError>;
|
|
426
426
|
/**
|
|
427
|
-
* Generates a session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your web server code. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the combination of URL and authorization code: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. The resulting user session is valid for 10 hours. For more information, see
|
|
427
|
+
* Generates a session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your web server code. Before you use this command, make sure that you have configured the dashboards and permissions. Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the combination of URL and authorization code: They must be used together. They can be used one time only. They are valid for 5 minutes after you run this command. The resulting user session is valid for 10 hours. For more information, see Embedded Analytics in the Amazon QuickSight User Guide.
|
|
428
428
|
*/
|
|
429
429
|
getDashboardEmbedUrl(callback?: (err: AWSError, data: QuickSight.Types.GetDashboardEmbedUrlResponse) => void): Request<QuickSight.Types.GetDashboardEmbedUrlResponse, AWSError>;
|
|
430
430
|
/**
|
|
@@ -2126,7 +2126,7 @@ declare namespace QuickSight {
|
|
|
2126
2126
|
*/
|
|
2127
2127
|
OutputColumns?: OutputColumnList;
|
|
2128
2128
|
/**
|
|
2129
|
-
*
|
|
2129
|
+
* A value that indicates whether you want to import the data into SPICE.
|
|
2130
2130
|
*/
|
|
2131
2131
|
ImportMode?: DataSetImportMode;
|
|
2132
2132
|
/**
|
|
@@ -2203,7 +2203,7 @@ declare namespace QuickSight {
|
|
|
2203
2203
|
*/
|
|
2204
2204
|
LastUpdatedTime?: Timestamp;
|
|
2205
2205
|
/**
|
|
2206
|
-
*
|
|
2206
|
+
* A value that indicates whether you want to import the data into SPICE.
|
|
2207
2207
|
*/
|
|
2208
2208
|
ImportMode?: DataSetImportMode;
|
|
2209
2209
|
/**
|
|
@@ -2211,7 +2211,7 @@ declare namespace QuickSight {
|
|
|
2211
2211
|
*/
|
|
2212
2212
|
RowLevelPermissionDataSet?: RowLevelPermissionDataSet;
|
|
2213
2213
|
/**
|
|
2214
|
-
*
|
|
2214
|
+
* A value that indicates if the dataset has column level permission configured.
|
|
2215
2215
|
*/
|
|
2216
2216
|
ColumnLevelPermissionRulesApplied?: Boolean;
|
|
2217
2217
|
}
|
|
@@ -3494,7 +3494,7 @@ declare namespace QuickSight {
|
|
|
3494
3494
|
*/
|
|
3495
3495
|
AwsAccountId: AwsAccountId;
|
|
3496
3496
|
/**
|
|
3497
|
-
* The ID for the dashboard, also added to the IAM policy.
|
|
3497
|
+
* The ID for the dashboard, also added to the AWS Identity and Access Management (IAM) policy.
|
|
3498
3498
|
*/
|
|
3499
3499
|
DashboardId: RestrictiveResourceId;
|
|
3500
3500
|
/**
|
|
@@ -3514,7 +3514,7 @@ declare namespace QuickSight {
|
|
|
3514
3514
|
*/
|
|
3515
3515
|
ResetDisabled?: Boolean;
|
|
3516
3516
|
/**
|
|
3517
|
-
* Adds persistence of state for the user session in an embedded dashboard. Persistence applies to the sheet and the parameter settings. These are control settings that the dashboard subscriber (QuickSight reader) chooses while viewing the dashboard. If this is set to TRUE, the settings are the same when the
|
|
3517
|
+
* Adds persistence of state for the user session in an embedded dashboard. Persistence applies to the sheet and the parameter settings. These are control settings that the dashboard subscriber (QuickSight reader) chooses while viewing the dashboard. If this is set to TRUE, the settings are the same when the subscriber reopens the same dashboard URL. The state is stored in QuickSight, not in a browser cookie. If this is set to FALSE, the state of the user session is not persisted. The default is FALSE.
|
|
3518
3518
|
*/
|
|
3519
3519
|
StatePersistenceEnabled?: Boolean;
|
|
3520
3520
|
/**
|
|
@@ -3526,7 +3526,7 @@ declare namespace QuickSight {
|
|
|
3526
3526
|
*/
|
|
3527
3527
|
Namespace?: Namespace;
|
|
3528
3528
|
/**
|
|
3529
|
-
* A list of one or more dashboard
|
|
3529
|
+
* A list of one or more dashboard IDs that you want to add to a session that includes anonymous users. The IdentityType parameter must be set to ANONYMOUS for this to work, because other identity types authenticate as QuickSight or IAM users. For example, if you set "--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3 identity-type ANONYMOUS", the session can access all three dashboards.
|
|
3530
3530
|
*/
|
|
3531
3531
|
AdditionalDashboardIds?: AdditionalDashboardIdList;
|
|
3532
3532
|
}
|
|
@@ -3558,7 +3558,7 @@ declare namespace QuickSight {
|
|
|
3558
3558
|
*/
|
|
3559
3559
|
SessionLifetimeInMinutes?: SessionLifetimeInMinutes;
|
|
3560
3560
|
/**
|
|
3561
|
-
* The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any type of Amazon QuickSight users in your account (readers, authors, or admins). They need to be authenticated as one of the following: Active Directory (AD) users or group members Invited nonfederated users IAM users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation Omit this parameter for users in the third group
|
|
3561
|
+
* The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any type of Amazon QuickSight users in your account (readers, authors, or admins). They need to be authenticated as one of the following: Active Directory (AD) users or group members Invited nonfederated users AWS Identity and Access Management (IAM) users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation Omit this parameter for users in the third group, IAM users and IAM role-based sessions.
|
|
3562
3562
|
*/
|
|
3563
3563
|
UserArn?: Arn;
|
|
3564
3564
|
}
|
|
@@ -3765,7 +3765,7 @@ declare namespace QuickSight {
|
|
|
3765
3765
|
}
|
|
3766
3766
|
export interface JoinKeyProperties {
|
|
3767
3767
|
/**
|
|
3768
|
-
*
|
|
3768
|
+
* A value that indicates that a row in a table is uniquely identified by the columns in a join key. This is used by QuickSight to optimize query performance.
|
|
3769
3769
|
*/
|
|
3770
3770
|
UniqueKey?: Boolean;
|
|
3771
3771
|
}
|
|
@@ -4787,6 +4787,10 @@ declare namespace QuickSight {
|
|
|
4787
4787
|
* The Amazon Resource Name (ARN) for the data source.
|
|
4788
4788
|
*/
|
|
4789
4789
|
DataSourceArn: Arn;
|
|
4790
|
+
/**
|
|
4791
|
+
* The catalog associated with a table.
|
|
4792
|
+
*/
|
|
4793
|
+
Catalog?: RelationalTableCatalog;
|
|
4790
4794
|
/**
|
|
4791
4795
|
* The schema name. This name applies to certain relational database engines.
|
|
4792
4796
|
*/
|
|
@@ -4800,6 +4804,7 @@ declare namespace QuickSight {
|
|
|
4800
4804
|
*/
|
|
4801
4805
|
InputColumns: InputColumnList;
|
|
4802
4806
|
}
|
|
4807
|
+
export type RelationalTableCatalog = string;
|
|
4803
4808
|
export type RelationalTableName = string;
|
|
4804
4809
|
export type RelationalTableSchema = string;
|
|
4805
4810
|
export interface RenameColumnOperation {
|
package/clients/rds.d.ts
CHANGED
|
@@ -1355,6 +1355,25 @@ declare namespace RDS {
|
|
|
1355
1355
|
*/
|
|
1356
1356
|
DisableLogTypes?: LogTypeList;
|
|
1357
1357
|
}
|
|
1358
|
+
export interface ClusterPendingModifiedValues {
|
|
1359
|
+
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
|
|
1360
|
+
/**
|
|
1361
|
+
* The DBClusterIdentifier for the DB cluster.
|
|
1362
|
+
*/
|
|
1363
|
+
DBClusterIdentifier?: String;
|
|
1364
|
+
/**
|
|
1365
|
+
* The master credentials for the DB cluster.
|
|
1366
|
+
*/
|
|
1367
|
+
MasterUserPassword?: String;
|
|
1368
|
+
/**
|
|
1369
|
+
* Whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.
|
|
1370
|
+
*/
|
|
1371
|
+
IAMDatabaseAuthenticationEnabled?: BooleanOptional;
|
|
1372
|
+
/**
|
|
1373
|
+
* The database engine version.
|
|
1374
|
+
*/
|
|
1375
|
+
EngineVersion?: String;
|
|
1376
|
+
}
|
|
1358
1377
|
export interface ConnectionPoolConfiguration {
|
|
1359
1378
|
/**
|
|
1360
1379
|
* The maximum size of the connection pool for each target in a target group. For Aurora MySQL, it is expressed as a percentage of the max_connections setting for the RDS DB instance or Aurora DB cluster used by the target group. Default: 100 Constraints: between 1 and 100
|
|
@@ -1749,7 +1768,7 @@ declare namespace RDS {
|
|
|
1749
1768
|
}
|
|
1750
1769
|
export interface CreateDBInstanceMessage {
|
|
1751
1770
|
/**
|
|
1752
|
-
* The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified,
|
|
1771
|
+
* The meaning of this parameter differs according to the database engine you use. MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine Oracle The Oracle System ID (SID) of the created DB instance. If you specify null, the default value ORCL is used. You can't specify the string NULL, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters SQL Server Not applicable. Must be null. Amazon Aurora The name of the database to create when the primary instance of the DB cluster is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Can't be a word reserved by the specified database engine
|
|
1753
1772
|
*/
|
|
1754
1773
|
DBName?: String;
|
|
1755
1774
|
/**
|
|
@@ -2008,7 +2027,7 @@ declare namespace RDS {
|
|
|
2008
2027
|
*/
|
|
2009
2028
|
MonitoringRoleArn?: String;
|
|
2010
2029
|
/**
|
|
2011
|
-
* The AWS KMS key identifier for an encrypted read replica. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS CMK. If you create an encrypted read replica in the same AWS Region as the source DB instance, then
|
|
2030
|
+
* The AWS KMS key identifier for an encrypted read replica. The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the AWS KMS CMK. If you create an encrypted read replica in the same AWS Region as the source DB instance, then do not specify a value for this parameter. A read replica in the same Region is always encrypted with the same AWS KMS CMK as the source DB instance. If you create an encrypted read replica in a different AWS Region, then you must specify a AWS KMS key identifier for the destination AWS Region. AWS KMS CMKs are specific to the AWS Region that they are created in, and you can't use CMKs from one AWS Region in another AWS Region. You can't create an encrypted read replica from an unencrypted DB instance.
|
|
2012
2031
|
*/
|
|
2013
2032
|
KmsKeyId?: String;
|
|
2014
2033
|
/**
|
|
@@ -2527,6 +2546,10 @@ declare namespace RDS {
|
|
|
2527
2546
|
* Specifies whether you have requested to enable write forwarding for a secondary cluster in an Aurora global database. Because write forwarding takes time to enable, check the value of GlobalWriteForwardingStatus to confirm that the request has completed before using the write forwarding feature for this cluster.
|
|
2528
2547
|
*/
|
|
2529
2548
|
GlobalWriteForwardingRequested?: BooleanOptional;
|
|
2549
|
+
/**
|
|
2550
|
+
* Specifies that changes to the DB cluster are pending. This element is only included when changes are pending. Specific changes are identified by subelements.
|
|
2551
|
+
*/
|
|
2552
|
+
PendingModifiedValues?: ClusterPendingModifiedValues;
|
|
2530
2553
|
}
|
|
2531
2554
|
export interface DBClusterBacktrack {
|
|
2532
2555
|
/**
|
|
@@ -6432,31 +6455,31 @@ declare namespace RDS {
|
|
|
6432
6455
|
}
|
|
6433
6456
|
export interface PendingModifiedValues {
|
|
6434
6457
|
/**
|
|
6435
|
-
*
|
|
6458
|
+
* The name of the compute and memory capacity class for the DB instance.
|
|
6436
6459
|
*/
|
|
6437
6460
|
DBInstanceClass?: String;
|
|
6438
6461
|
/**
|
|
6439
|
-
*
|
|
6462
|
+
* The allocated storage size for the DB instance specified in gibibytes .
|
|
6440
6463
|
*/
|
|
6441
6464
|
AllocatedStorage?: IntegerOptional;
|
|
6442
6465
|
/**
|
|
6443
|
-
*
|
|
6466
|
+
* The master credentials for the DB instance.
|
|
6444
6467
|
*/
|
|
6445
6468
|
MasterUserPassword?: String;
|
|
6446
6469
|
/**
|
|
6447
|
-
*
|
|
6470
|
+
* The port for the DB instance.
|
|
6448
6471
|
*/
|
|
6449
6472
|
Port?: IntegerOptional;
|
|
6450
6473
|
/**
|
|
6451
|
-
*
|
|
6474
|
+
* The number of days for which automated backups are retained.
|
|
6452
6475
|
*/
|
|
6453
6476
|
BackupRetentionPeriod?: IntegerOptional;
|
|
6454
6477
|
/**
|
|
6455
|
-
* Indicates that the Single-AZ DB instance
|
|
6478
|
+
* Indicates that the Single-AZ DB instance will change to a Multi-AZ deployment.
|
|
6456
6479
|
*/
|
|
6457
6480
|
MultiAZ?: BooleanOptional;
|
|
6458
6481
|
/**
|
|
6459
|
-
*
|
|
6482
|
+
* The database engine version.
|
|
6460
6483
|
*/
|
|
6461
6484
|
EngineVersion?: String;
|
|
6462
6485
|
/**
|
|
@@ -6464,23 +6487,23 @@ declare namespace RDS {
|
|
|
6464
6487
|
*/
|
|
6465
6488
|
LicenseModel?: String;
|
|
6466
6489
|
/**
|
|
6467
|
-
*
|
|
6490
|
+
* The Provisioned IOPS value for the DB instance.
|
|
6468
6491
|
*/
|
|
6469
6492
|
Iops?: IntegerOptional;
|
|
6470
6493
|
/**
|
|
6471
|
-
*
|
|
6494
|
+
* The database identifier for the DB instance.
|
|
6472
6495
|
*/
|
|
6473
6496
|
DBInstanceIdentifier?: String;
|
|
6474
6497
|
/**
|
|
6475
|
-
*
|
|
6498
|
+
* The storage type of the DB instance.
|
|
6476
6499
|
*/
|
|
6477
6500
|
StorageType?: String;
|
|
6478
6501
|
/**
|
|
6479
|
-
*
|
|
6502
|
+
* The identifier of the CA certificate for the DB instance.
|
|
6480
6503
|
*/
|
|
6481
6504
|
CACertificateIdentifier?: String;
|
|
6482
6505
|
/**
|
|
6483
|
-
* The
|
|
6506
|
+
* The DB subnet group for the DB instance.
|
|
6484
6507
|
*/
|
|
6485
6508
|
DBSubnetGroupName?: String;
|
|
6486
6509
|
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
|
|
@@ -6488,6 +6511,10 @@ declare namespace RDS {
|
|
|
6488
6511
|
* The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.
|
|
6489
6512
|
*/
|
|
6490
6513
|
ProcessorFeatures?: ProcessorFeatureList;
|
|
6514
|
+
/**
|
|
6515
|
+
* Whether mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled.
|
|
6516
|
+
*/
|
|
6517
|
+
IAMDatabaseAuthenticationEnabled?: BooleanOptional;
|
|
6491
6518
|
}
|
|
6492
6519
|
export interface ProcessorFeature {
|
|
6493
6520
|
/**
|