cdk-comprehend-s3olap 2.0.230 → 2.0.232
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +23 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +40 -9
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +73 -10
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +61 -52
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +601 -85
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +60 -16
- package/node_modules/aws-sdk/apis/dms-2016-01-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +291 -192
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +37 -19
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +337 -23
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +12 -0
- package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +32 -29
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +295 -177
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +571 -556
- package/node_modules/aws-sdk/apis/scheduler-2021-06-30.min.json +15 -12
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +48 -4
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +13 -2
- package/node_modules/aws-sdk/clients/batch.d.ts +9 -9
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +516 -9
- package/node_modules/aws-sdk/clients/codestarconnections.d.ts +10 -10
- package/node_modules/aws-sdk/clients/dms.d.ts +65 -1
- package/node_modules/aws-sdk/clients/drs.d.ts +1 -1
- package/node_modules/aws-sdk/clients/inspector2.d.ts +101 -2
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +49 -26
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +522 -15
- package/node_modules/aws-sdk/clients/medialive.d.ts +16 -0
- package/node_modules/aws-sdk/clients/omics.d.ts +13 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +194 -8
- package/node_modules/aws-sdk/clients/route53.d.ts +9 -9
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +33 -8
- package/node_modules/aws-sdk/clients/scheduler.d.ts +16 -3
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -16
- package/node_modules/aws-sdk/dist/aws-sdk.js +359 -232
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +49 -49
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -2122,6 +2122,10 @@ one destination per packager.
|
|
2122
2122
|
* A collection of key-value pairs.
|
2123
2123
|
*/
|
2124
2124
|
Tags?: Tags;
|
2125
|
+
/**
|
2126
|
+
* The Availability Zone associated with this input device.
|
2127
|
+
*/
|
2128
|
+
AvailabilityZone?: __string;
|
2125
2129
|
}
|
2126
2130
|
export interface DescribeInputDeviceThumbnailRequest {
|
2127
2131
|
/**
|
@@ -4163,6 +4167,10 @@ to.
|
|
4163
4167
|
* A collection of key-value pairs.
|
4164
4168
|
*/
|
4165
4169
|
Tags?: Tags;
|
4170
|
+
/**
|
4171
|
+
* The Availability Zone associated with this input device.
|
4172
|
+
*/
|
4173
|
+
AvailabilityZone?: __string;
|
4166
4174
|
}
|
4167
4175
|
export type InputDeviceTransferType = "OUTGOING"|"INCOMING"|string;
|
4168
4176
|
export type InputDeviceType = "HD"|"UHD"|string;
|
@@ -6883,6 +6891,10 @@ one destination per packager.
|
|
6883
6891
|
* The settings that you want to apply to the UHD input device.
|
6884
6892
|
*/
|
6885
6893
|
UhdDeviceSettings?: InputDeviceConfigurableSettings;
|
6894
|
+
/**
|
6895
|
+
* The Availability Zone you want associated with this input device.
|
6896
|
+
*/
|
6897
|
+
AvailabilityZone?: __string;
|
6886
6898
|
}
|
6887
6899
|
export interface UpdateInputDeviceResponse {
|
6888
6900
|
/**
|
@@ -6937,6 +6949,10 @@ one destination per packager.
|
|
6937
6949
|
* A collection of key-value pairs.
|
6938
6950
|
*/
|
6939
6951
|
Tags?: Tags;
|
6952
|
+
/**
|
6953
|
+
* The Availability Zone associated with this input device.
|
6954
|
+
*/
|
6955
|
+
AvailabilityZone?: __string;
|
6940
6956
|
}
|
6941
6957
|
export interface UpdateInputRequest {
|
6942
6958
|
/**
|
@@ -1381,6 +1381,7 @@ declare namespace Omics {
|
|
1381
1381
|
tags?: TagMap;
|
1382
1382
|
}
|
1383
1383
|
export type CreationTime = Date;
|
1384
|
+
export type CreationType = "IMPORT"|"UPLOAD"|string;
|
1384
1385
|
export interface DeleteAnnotationStoreRequest {
|
1385
1386
|
/**
|
1386
1387
|
* The store's name.
|
@@ -1870,6 +1871,10 @@ declare namespace Omics {
|
|
1870
1871
|
* The status message for a read set. It provides more detail as to why the read set has a status.
|
1871
1872
|
*/
|
1872
1873
|
statusMessage?: ReadSetStatusMessage;
|
1874
|
+
/**
|
1875
|
+
* The creation type of the read set.
|
1876
|
+
*/
|
1877
|
+
creationType?: CreationType;
|
1873
1878
|
}
|
1874
1879
|
export interface GetReadSetRequest {
|
1875
1880
|
/**
|
@@ -3392,6 +3397,10 @@ declare namespace Omics {
|
|
3392
3397
|
* Where the source originated.
|
3393
3398
|
*/
|
3394
3399
|
generatedFrom?: GeneratedFrom;
|
3400
|
+
/**
|
3401
|
+
* The creation type of the read set.
|
3402
|
+
*/
|
3403
|
+
creationType?: CreationType;
|
3395
3404
|
}
|
3396
3405
|
export type ReadSetId = string;
|
3397
3406
|
export type ReadSetIdList = ReadSetId[];
|
@@ -3448,6 +3457,10 @@ declare namespace Omics {
|
|
3448
3457
|
* The status for a read set. It provides more detail as to why the read set has a status.
|
3449
3458
|
*/
|
3450
3459
|
statusMessage?: ReadSetStatusMessage;
|
3460
|
+
/**
|
3461
|
+
* The creation type of the read set.
|
3462
|
+
*/
|
3463
|
+
creationType?: CreationType;
|
3451
3464
|
}
|
3452
3465
|
export type ReadSetName = string;
|
3453
3466
|
export type ReadSetPartSource = "SOURCE1"|"SOURCE2"|string;
|
@@ -162,7 +162,7 @@ declare namespace Polly {
|
|
162
162
|
SynthesisTask?: SynthesisTask;
|
163
163
|
}
|
164
164
|
export type IncludeAdditionalLanguageCodes = boolean;
|
165
|
-
export type LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR"|"en-NZ"|"en-ZA"|"ca-ES"|"de-AT"|"yue-CN"|"ar-AE"|"fi-FI"|"en-IE"|"nl-BE"|string;
|
165
|
+
export type LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR"|"en-NZ"|"en-ZA"|"ca-ES"|"de-AT"|"yue-CN"|"ar-AE"|"fi-FI"|"en-IE"|"nl-BE"|"fr-BE"|string;
|
166
166
|
export type LanguageCodeList = LanguageCode[];
|
167
167
|
export type LanguageName = string;
|
168
168
|
export type LastModified = Date;
|
@@ -488,7 +488,7 @@ declare namespace Polly {
|
|
488
488
|
*/
|
489
489
|
SupportedEngines?: EngineList;
|
490
490
|
}
|
491
|
-
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|"Ruth"|"Stephen"|"Kazuha"|"Tomoko"|"Niamh"|"Sofie"|"Lisa"|string;
|
491
|
+
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|"Ola"|"Hala"|"Andres"|"Sergio"|"Remi"|"Adriano"|"Thiago"|"Ruth"|"Stephen"|"Kazuha"|"Tomoko"|"Niamh"|"Sofie"|"Lisa"|"Isabelle"|string;
|
492
492
|
export type VoiceList = Voice[];
|
493
493
|
export type VoiceName = string;
|
494
494
|
/**
|
@@ -277,6 +277,14 @@ declare class RDS extends Service {
|
|
277
277
|
* 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. If you're deleting a Multi-AZ DB cluster with read replicas, all cluster members are terminated and read replicas are promoted to standalone instances. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
|
278
278
|
*/
|
279
279
|
deleteDBCluster(callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterResult) => void): Request<RDS.Types.DeleteDBClusterResult, AWSError>;
|
280
|
+
/**
|
281
|
+
* Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.
|
282
|
+
*/
|
283
|
+
deleteDBClusterAutomatedBackup(params: RDS.Types.DeleteDBClusterAutomatedBackupMessage, callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterAutomatedBackupResult) => void): Request<RDS.Types.DeleteDBClusterAutomatedBackupResult, AWSError>;
|
284
|
+
/**
|
285
|
+
* Deletes automated backups using the DbClusterResourceId value of the source DB cluster or the Amazon Resource Name (ARN) of the automated backups.
|
286
|
+
*/
|
287
|
+
deleteDBClusterAutomatedBackup(callback?: (err: AWSError, data: RDS.Types.DeleteDBClusterAutomatedBackupResult) => void): Request<RDS.Types.DeleteDBClusterAutomatedBackupResult, AWSError>;
|
280
288
|
/**
|
281
289
|
* Deletes a custom endpoint and removes it from an Amazon Aurora DB cluster. This action only applies to Aurora DB clusters.
|
282
290
|
*/
|
@@ -421,6 +429,14 @@ declare class RDS extends Service {
|
|
421
429
|
* Lists the set of CA certificates provided by Amazon RDS for this Amazon Web Services account. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
|
422
430
|
*/
|
423
431
|
describeCertificates(callback?: (err: AWSError, data: RDS.Types.CertificateMessage) => void): Request<RDS.Types.CertificateMessage, AWSError>;
|
432
|
+
/**
|
433
|
+
* Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations. All parameters are optional.
|
434
|
+
*/
|
435
|
+
describeDBClusterAutomatedBackups(params: RDS.Types.DescribeDBClusterAutomatedBackupsMessage, callback?: (err: AWSError, data: RDS.Types.DBClusterAutomatedBackupMessage) => void): Request<RDS.Types.DBClusterAutomatedBackupMessage, AWSError>;
|
436
|
+
/**
|
437
|
+
* Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations. All parameters are optional.
|
438
|
+
*/
|
439
|
+
describeDBClusterAutomatedBackups(callback?: (err: AWSError, data: RDS.Types.DBClusterAutomatedBackupMessage) => void): Request<RDS.Types.DBClusterAutomatedBackupMessage, AWSError>;
|
424
440
|
/**
|
425
441
|
* Returns information about backtracks for a DB cluster. For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora MySQL DB clusters.
|
426
442
|
*/
|
@@ -2011,6 +2027,10 @@ declare namespace RDS {
|
|
2011
2027
|
* The Amazon Web Services KMS key identifier to encrypt a secret that is automatically generated and managed in Amazon Web Services Secrets Manager. This setting is valid only if the master user password is managed by RDS in Amazon Web Services Secrets Manager for the DB cluster. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key. To use a KMS key in a different Amazon Web Services account, specify the key ARN or alias ARN. If you don't specify MasterUserSecretKmsKeyId, then the aws/secretsmanager KMS key is used to encrypt the secret. If the secret is in a different Amazon Web Services account, then you can't use the aws/secretsmanager KMS key to encrypt the secret, and you must use a customer managed KMS key. There is a default KMS key for your Amazon Web Services account. Your Amazon Web Services account has a different default KMS key for each Amazon Web Services Region. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2012
2028
|
*/
|
2013
2029
|
MasterUserSecretKmsKeyId?: String;
|
2030
|
+
/**
|
2031
|
+
* Specifies whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. Valid for: Aurora DB clusters only
|
2032
|
+
*/
|
2033
|
+
EnableLocalWriteForwarding?: BooleanOptional;
|
2014
2034
|
/**
|
2015
2035
|
* The ID of the region that contains the source for the read replica.
|
2016
2036
|
*/
|
@@ -3008,6 +3028,112 @@ declare namespace RDS {
|
|
3008
3028
|
* The next time you can modify the DB cluster to use the aurora-iopt1 storage type. This setting is only for Aurora DB clusters.
|
3009
3029
|
*/
|
3010
3030
|
IOOptimizedNextAllowedModificationTime?: TStamp;
|
3031
|
+
/**
|
3032
|
+
* Specifies whether an Aurora DB cluster has in-cluster write forwarding enabled, not enabled, requested, or is in the process of enabling it.
|
3033
|
+
*/
|
3034
|
+
LocalWriteForwardingStatus?: LocalWriteForwardingStatus;
|
3035
|
+
}
|
3036
|
+
export interface DBClusterAutomatedBackup {
|
3037
|
+
/**
|
3038
|
+
* The name of the database engine for this automated backup.
|
3039
|
+
*/
|
3040
|
+
Engine?: String;
|
3041
|
+
/**
|
3042
|
+
* The VPC ID associated with the DB cluster.
|
3043
|
+
*/
|
3044
|
+
VpcId?: String;
|
3045
|
+
/**
|
3046
|
+
* The Amazon Resource Name (ARN) for the automated backups.
|
3047
|
+
*/
|
3048
|
+
DBClusterAutomatedBackupsArn?: String;
|
3049
|
+
/**
|
3050
|
+
* The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
3051
|
+
*/
|
3052
|
+
DBClusterIdentifier?: String;
|
3053
|
+
RestoreWindow?: RestoreWindow;
|
3054
|
+
/**
|
3055
|
+
* The master user name of the automated backup.
|
3056
|
+
*/
|
3057
|
+
MasterUsername?: String;
|
3058
|
+
/**
|
3059
|
+
* The resource ID for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
3060
|
+
*/
|
3061
|
+
DbClusterResourceId?: String;
|
3062
|
+
/**
|
3063
|
+
* The Amazon Web Services Region associated with the automated backup.
|
3064
|
+
*/
|
3065
|
+
Region?: String;
|
3066
|
+
/**
|
3067
|
+
* The license model information for this DB cluster automated backup.
|
3068
|
+
*/
|
3069
|
+
LicenseModel?: String;
|
3070
|
+
/**
|
3071
|
+
* A list of status information for an automated backup: retained - Automated backups for deleted clusters.
|
3072
|
+
*/
|
3073
|
+
Status?: String;
|
3074
|
+
/**
|
3075
|
+
* True if mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.
|
3076
|
+
*/
|
3077
|
+
IAMDatabaseAuthenticationEnabled?: Boolean;
|
3078
|
+
/**
|
3079
|
+
* The time when the DB cluster was created, in Universal Coordinated Time (UTC).
|
3080
|
+
*/
|
3081
|
+
ClusterCreateTime?: TStamp;
|
3082
|
+
/**
|
3083
|
+
* Specifies whether the source DB cluster is encrypted.
|
3084
|
+
*/
|
3085
|
+
StorageEncrypted?: Boolean;
|
3086
|
+
/**
|
3087
|
+
* For all database engines except Amazon Aurora, AllocatedStorage specifies the allocated storage size in gibibytes (GiB). For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.
|
3088
|
+
*/
|
3089
|
+
AllocatedStorage?: Integer;
|
3090
|
+
/**
|
3091
|
+
* The version of the database engine for the automated backup.
|
3092
|
+
*/
|
3093
|
+
EngineVersion?: String;
|
3094
|
+
/**
|
3095
|
+
* The Amazon Resource Name (ARN) for the source DB cluster.
|
3096
|
+
*/
|
3097
|
+
DBClusterArn?: String;
|
3098
|
+
/**
|
3099
|
+
* The retention period for the automated backups.
|
3100
|
+
*/
|
3101
|
+
BackupRetentionPeriod?: IntegerOptional;
|
3102
|
+
/**
|
3103
|
+
* The engine mode of the database engine for the automated backup.
|
3104
|
+
*/
|
3105
|
+
EngineMode?: String;
|
3106
|
+
/**
|
3107
|
+
* The Availability Zones where instances in the DB cluster can be created. For information on Amazon Web Services Regions and Availability Zones, see Regions and Availability Zones.
|
3108
|
+
*/
|
3109
|
+
AvailabilityZones?: AvailabilityZones;
|
3110
|
+
/**
|
3111
|
+
* The port number that the automated backup used for connections. Default: Inherits from the source DB cluster Valid Values: 1150-65535
|
3112
|
+
*/
|
3113
|
+
Port?: Integer;
|
3114
|
+
/**
|
3115
|
+
* The Amazon Web Services KMS key ID for an automated backup. The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
|
3116
|
+
*/
|
3117
|
+
KmsKeyId?: String;
|
3118
|
+
/**
|
3119
|
+
* The storage type associated with the DB cluster. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3120
|
+
*/
|
3121
|
+
StorageType?: String;
|
3122
|
+
/**
|
3123
|
+
* The IOPS (I/O operations per second) value for the automated backup. This setting is only for non-Aurora Multi-AZ DB clusters.
|
3124
|
+
*/
|
3125
|
+
Iops?: IntegerOptional;
|
3126
|
+
}
|
3127
|
+
export type DBClusterAutomatedBackupList = DBClusterAutomatedBackup[];
|
3128
|
+
export interface DBClusterAutomatedBackupMessage {
|
3129
|
+
/**
|
3130
|
+
* The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
|
3131
|
+
*/
|
3132
|
+
Marker?: String;
|
3133
|
+
/**
|
3134
|
+
* A list of DBClusterAutomatedBackup backups.
|
3135
|
+
*/
|
3136
|
+
DBClusterAutomatedBackups?: DBClusterAutomatedBackupList;
|
3011
3137
|
}
|
3012
3138
|
export interface DBClusterBacktrack {
|
3013
3139
|
/**
|
@@ -3297,7 +3423,7 @@ declare namespace RDS {
|
|
3297
3423
|
*/
|
3298
3424
|
KmsKeyId?: String;
|
3299
3425
|
/**
|
3300
|
-
*
|
3426
|
+
* Specifies the Amazon Resource Name (ARN) for the DB cluster snapshot.
|
3301
3427
|
*/
|
3302
3428
|
DBClusterSnapshotArn?: String;
|
3303
3429
|
/**
|
@@ -3317,6 +3443,10 @@ declare namespace RDS {
|
|
3317
3443
|
* The storage type associated with the DB cluster snapshot. This setting is only for Aurora DB clusters.
|
3318
3444
|
*/
|
3319
3445
|
StorageType?: String;
|
3446
|
+
/**
|
3447
|
+
* Specifies the resource ID of the DB cluster that this DB cluster snapshot was created from.
|
3448
|
+
*/
|
3449
|
+
DbClusterResourceId?: String;
|
3320
3450
|
}
|
3321
3451
|
export interface DBClusterSnapshotAttribute {
|
3322
3452
|
/**
|
@@ -3472,6 +3602,10 @@ declare namespace RDS {
|
|
3472
3602
|
* A list of the supported CA certificate identifiers. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.
|
3473
3603
|
*/
|
3474
3604
|
SupportedCACertificateIdentifiers?: CACertificateIdentifiersList;
|
3605
|
+
/**
|
3606
|
+
* A value that indicates whether the DB engine version supports forwarding write operations from reader DB instances to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. Valid for: Aurora DB clusters only
|
3607
|
+
*/
|
3608
|
+
SupportsLocalWriteForwarding?: BooleanOptional;
|
3475
3609
|
}
|
3476
3610
|
export type DBEngineVersionList = DBEngineVersion[];
|
3477
3611
|
export interface DBEngineVersionMessage {
|
@@ -3817,7 +3951,7 @@ declare namespace RDS {
|
|
3817
3951
|
*/
|
3818
3952
|
DBInstanceArn?: String;
|
3819
3953
|
/**
|
3820
|
-
* The
|
3954
|
+
* The resource ID for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
|
3821
3955
|
*/
|
3822
3956
|
DbiResourceId?: String;
|
3823
3957
|
/**
|
@@ -3825,7 +3959,7 @@ declare namespace RDS {
|
|
3825
3959
|
*/
|
3826
3960
|
Region?: String;
|
3827
3961
|
/**
|
3828
|
-
* The
|
3962
|
+
* The identifier for the source DB instance, which can't be changed and which is unique to an Amazon Web Services Region.
|
3829
3963
|
*/
|
3830
3964
|
DBInstanceIdentifier?: String;
|
3831
3965
|
/**
|
@@ -3837,7 +3971,7 @@ declare namespace RDS {
|
|
3837
3971
|
*/
|
3838
3972
|
AllocatedStorage?: Integer;
|
3839
3973
|
/**
|
3840
|
-
* Provides a list of status information for an automated backup: active -
|
3974
|
+
* Provides a list of status information for an automated backup: active - Automated backups for current instances. retained - Automated backups for deleted instances. creating - Automated backups that are waiting for the first automated snapshot to be available.
|
3841
3975
|
*/
|
3842
3976
|
Status?: String;
|
3843
3977
|
/**
|
@@ -3857,7 +3991,7 @@ declare namespace RDS {
|
|
3857
3991
|
*/
|
3858
3992
|
InstanceCreateTime?: TStamp;
|
3859
3993
|
/**
|
3860
|
-
* The
|
3994
|
+
* The master user name of an automated backup.
|
3861
3995
|
*/
|
3862
3996
|
MasterUsername?: String;
|
3863
3997
|
/**
|
@@ -4512,6 +4646,15 @@ declare namespace RDS {
|
|
4512
4646
|
*/
|
4513
4647
|
EngineVersion: CustomEngineVersion;
|
4514
4648
|
}
|
4649
|
+
export interface DeleteDBClusterAutomatedBackupMessage {
|
4650
|
+
/**
|
4651
|
+
* The identifier for the source DB cluster, which can't be changed and which is unique to an Amazon Web Services Region.
|
4652
|
+
*/
|
4653
|
+
DbClusterResourceId: String;
|
4654
|
+
}
|
4655
|
+
export interface DeleteDBClusterAutomatedBackupResult {
|
4656
|
+
DBClusterAutomatedBackup?: DBClusterAutomatedBackup;
|
4657
|
+
}
|
4515
4658
|
export interface DeleteDBClusterEndpointMessage {
|
4516
4659
|
/**
|
4517
4660
|
* The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.
|
@@ -4531,6 +4674,10 @@ declare namespace RDS {
|
|
4531
4674
|
* The DB cluster snapshot identifier of the new DB cluster snapshot created when SkipFinalSnapshot is disabled. Specifying this parameter and also skipping the creation of a final DB cluster snapshot with the SkipFinalShapshot parameter results in an error. Constraints: Must be 1 to 255 letters, numbers, or hyphens. First character must be a letter Can't end with a hyphen or contain two consecutive hyphens
|
4532
4675
|
*/
|
4533
4676
|
FinalDBSnapshotIdentifier?: String;
|
4677
|
+
/**
|
4678
|
+
* A value that indicates whether to remove automated backups immediately after the DB cluster is deleted. This parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB cluster is deleted.
|
4679
|
+
*/
|
4680
|
+
DeleteAutomatedBackups?: BooleanOptional;
|
4534
4681
|
}
|
4535
4682
|
export interface DeleteDBClusterParameterGroupMessage {
|
4536
4683
|
/**
|
@@ -4727,6 +4874,28 @@ declare namespace RDS {
|
|
4727
4874
|
*/
|
4728
4875
|
Marker?: String;
|
4729
4876
|
}
|
4877
|
+
export interface DescribeDBClusterAutomatedBackupsMessage {
|
4878
|
+
/**
|
4879
|
+
* The resource ID of the DB cluster that is the source of the automated backup. This parameter isn't case-sensitive.
|
4880
|
+
*/
|
4881
|
+
DbClusterResourceId?: String;
|
4882
|
+
/**
|
4883
|
+
* (Optional) The user-supplied DB cluster identifier. If this parameter is specified, it must match the identifier of an existing DB cluster. It returns information from the specific DB cluster's automated backup. This parameter isn't case-sensitive.
|
4884
|
+
*/
|
4885
|
+
DBClusterIdentifier?: String;
|
4886
|
+
/**
|
4887
|
+
* A filter that specifies which resources to return based on status. Supported filters are the following: status retained - Automated backups for deleted clusters and after backup replication is stopped. db-cluster-id - Accepts DB cluster identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster automated backups identified by these ARNs. db-cluster-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB cluster resources identified by these ARNs. Returns all resources by default. The status for each resource is specified in the response.
|
4888
|
+
*/
|
4889
|
+
Filters?: FilterList;
|
4890
|
+
/**
|
4891
|
+
* 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 that you can retrieve the remaining results.
|
4892
|
+
*/
|
4893
|
+
MaxRecords?: IntegerOptional;
|
4894
|
+
/**
|
4895
|
+
* The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.
|
4896
|
+
*/
|
4897
|
+
Marker?: String;
|
4898
|
+
}
|
4730
4899
|
export interface DescribeDBClusterBacktracksMessage {
|
4731
4900
|
/**
|
4732
4901
|
* The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string. Constraints: Must contain from 1 to 63 alphanumeric characters or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens. Example: my-cluster1
|
@@ -4853,6 +5022,10 @@ declare namespace RDS {
|
|
4853
5022
|
* A value that indicates whether to include manual DB cluster snapshots that are public and can be copied or restored by any Amazon Web Services account. By default, the public snapshots are not included. You can share a manual DB cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute API action.
|
4854
5023
|
*/
|
4855
5024
|
IncludePublic?: Boolean;
|
5025
|
+
/**
|
5026
|
+
* A specific DB cluster resource ID to describe.
|
5027
|
+
*/
|
5028
|
+
DbClusterResourceId?: String;
|
4856
5029
|
}
|
4857
5030
|
export interface DescribeDBClustersMessage {
|
4858
5031
|
/**
|
@@ -4924,11 +5097,11 @@ declare namespace RDS {
|
|
4924
5097
|
*/
|
4925
5098
|
DbiResourceId?: String;
|
4926
5099
|
/**
|
4927
|
-
* (Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance' automated backup. This parameter isn't case-sensitive.
|
5100
|
+
* (Optional) The user-supplied instance identifier. If this parameter is specified, it must match the identifier of an existing DB instance. It returns information from the specific DB instance's automated backup. This parameter isn't case-sensitive.
|
4928
5101
|
*/
|
4929
5102
|
DBInstanceIdentifier?: String;
|
4930
5103
|
/**
|
4931
|
-
* A filter that specifies which resources to return based on status. Supported filters are the following: status active -
|
5104
|
+
* A filter that specifies which resources to return based on status. Supported filters are the following: status active - Automated backups for current instances. creating - Automated backups that are waiting for the first automated snapshot to be available. retained - Automated backups for deleted instances and after backup replication is stopped. db-instance-id - Accepts DB instance identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance automated backups identified by these ARNs. dbi-resource-id - Accepts DB resource identifiers and Amazon Resource Names (ARNs). The results list includes only information about the DB instance resources identified by these ARNs. Returns all resources by default. The status for each resource is specified in the response.
|
4932
5105
|
*/
|
4933
5106
|
Filters?: FilterList;
|
4934
5107
|
/**
|
@@ -6100,6 +6273,7 @@ declare namespace RDS {
|
|
6100
6273
|
*/
|
6101
6274
|
Filters?: FilterList;
|
6102
6275
|
}
|
6276
|
+
export type LocalWriteForwardingStatus = "enabled"|"disabled"|"enabling"|"disabling"|"requested"|string;
|
6103
6277
|
export type LogTypeList = String[];
|
6104
6278
|
export type Long = number;
|
6105
6279
|
export type LongOptional = number;
|
@@ -6394,6 +6568,10 @@ declare namespace RDS {
|
|
6394
6568
|
* Specifies whether engine mode changes from serverless to provisioned are allowed. Valid for Cluster Type: Aurora Serverless v1 DB clusters only Constraints: You must allow engine mode changes when specifying a different value for the EngineMode parameter from the DB cluster's current engine mode.
|
6395
6569
|
*/
|
6396
6570
|
AllowEngineModeChange?: Boolean;
|
6571
|
+
/**
|
6572
|
+
* Specifies whether read replicas can forward write operations to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. Valid for: Aurora DB clusters only
|
6573
|
+
*/
|
6574
|
+
EnableLocalWriteForwarding?: BooleanOptional;
|
6397
6575
|
}
|
6398
6576
|
export interface ModifyDBClusterParameterGroupMessage {
|
6399
6577
|
/**
|
@@ -8153,7 +8331,7 @@ declare namespace RDS {
|
|
8153
8331
|
/**
|
8154
8332
|
* The identifier of the source DB cluster from which to restore. Constraints: Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
8155
8333
|
*/
|
8156
|
-
SourceDBClusterIdentifier
|
8334
|
+
SourceDBClusterIdentifier?: String;
|
8157
8335
|
/**
|
8158
8336
|
* The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints: Must be before the latest restorable time for the DB instance Must be specified if UseLatestRestorableTime parameter isn't provided Can't be specified if the UseLatestRestorableTime parameter is enabled Can't be specified if the RestoreType parameter is copy-on-write Example: 2015-03-07T23:45:00Z Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
8159
8337
|
*/
|
@@ -8244,6 +8422,10 @@ declare namespace RDS {
|
|
8244
8422
|
* The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
|
8245
8423
|
*/
|
8246
8424
|
NetworkType?: String;
|
8425
|
+
/**
|
8426
|
+
* The resource ID of the source DB cluster from which to restore.
|
8427
|
+
*/
|
8428
|
+
SourceDbClusterResourceId?: String;
|
8247
8429
|
}
|
8248
8430
|
export interface RestoreDBClusterToPointInTimeResult {
|
8249
8431
|
DBCluster?: DBCluster;
|
@@ -9232,6 +9414,10 @@ declare namespace RDS {
|
|
9232
9414
|
* A value that indicates whether you can use Babelfish for Aurora PostgreSQL with the target engine version.
|
9233
9415
|
*/
|
9234
9416
|
SupportsBabelfish?: BooleanOptional;
|
9417
|
+
/**
|
9418
|
+
* A value that indicates whether the target engine version supports forwarding write operations from reader DB instances to the writer DB instance in the DB cluster. By default, write operations aren't allowed on reader DB instances. Valid for: Aurora DB clusters only
|
9419
|
+
*/
|
9420
|
+
SupportsLocalWriteForwarding?: BooleanOptional;
|
9235
9421
|
}
|
9236
9422
|
export interface UserAuthConfig {
|
9237
9423
|
/**
|
@@ -109,11 +109,11 @@ declare class Route53 extends Service {
|
|
109
109
|
*/
|
110
110
|
createTrafficPolicy(callback?: (err: AWSError, data: Route53.Types.CreateTrafficPolicyResponse) => void): Request<Route53.Types.CreateTrafficPolicyResponse, AWSError>;
|
111
111
|
/**
|
112
|
-
* Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, CreateTrafficPolicyInstance associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that CreateTrafficPolicyInstance created.
|
112
|
+
* Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, CreateTrafficPolicyInstance associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that CreateTrafficPolicyInstance created.
|
113
113
|
*/
|
114
114
|
createTrafficPolicyInstance(params: Route53.Types.CreateTrafficPolicyInstanceRequest, callback?: (err: AWSError, data: Route53.Types.CreateTrafficPolicyInstanceResponse) => void): Request<Route53.Types.CreateTrafficPolicyInstanceResponse, AWSError>;
|
115
115
|
/**
|
116
|
-
* Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, CreateTrafficPolicyInstance associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that CreateTrafficPolicyInstance created.
|
116
|
+
* Creates resource record sets in a specified hosted zone based on the settings in a specified traffic policy version. In addition, CreateTrafficPolicyInstance associates the resource record sets with a specified domain name (such as example.com) or subdomain name (such as www.example.com). Amazon Route 53 responds to DNS queries for the domain or subdomain name by using the resource record sets that CreateTrafficPolicyInstance created.
|
117
117
|
*/
|
118
118
|
createTrafficPolicyInstance(callback?: (err: AWSError, data: Route53.Types.CreateTrafficPolicyInstanceResponse) => void): Request<Route53.Types.CreateTrafficPolicyInstanceResponse, AWSError>;
|
119
119
|
/**
|
@@ -365,11 +365,11 @@ declare class Route53 extends Service {
|
|
365
365
|
*/
|
366
366
|
getTrafficPolicy(callback?: (err: AWSError, data: Route53.Types.GetTrafficPolicyResponse) => void): Request<Route53.Types.GetTrafficPolicyResponse, AWSError>;
|
367
367
|
/**
|
368
|
-
* Gets information about a specified traffic policy instance.
|
368
|
+
* Gets information about a specified traffic policy instance. After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element. In the Route 53 console, traffic policy instances are known as policy records.
|
369
369
|
*/
|
370
370
|
getTrafficPolicyInstance(params: Route53.Types.GetTrafficPolicyInstanceRequest, callback?: (err: AWSError, data: Route53.Types.GetTrafficPolicyInstanceResponse) => void): Request<Route53.Types.GetTrafficPolicyInstanceResponse, AWSError>;
|
371
371
|
/**
|
372
|
-
* Gets information about a specified traffic policy instance.
|
372
|
+
* Gets information about a specified traffic policy instance. After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance request, there's a brief delay while Amazon Route 53 creates the resource record sets that are specified in the traffic policy definition. For more information, see the State response element. In the Route 53 console, traffic policy instances are known as policy records.
|
373
373
|
*/
|
374
374
|
getTrafficPolicyInstance(callback?: (err: AWSError, data: Route53.Types.GetTrafficPolicyInstanceResponse) => void): Request<Route53.Types.GetTrafficPolicyInstanceResponse, AWSError>;
|
375
375
|
/**
|
@@ -565,11 +565,11 @@ declare class Route53 extends Service {
|
|
565
565
|
*/
|
566
566
|
updateTrafficPolicyComment(callback?: (err: AWSError, data: Route53.Types.UpdateTrafficPolicyCommentResponse) => void): Request<Route53.Types.UpdateTrafficPolicyCommentResponse, AWSError>;
|
567
567
|
/**
|
568
|
-
*
|
568
|
+
* Updates the resource record sets in a specified hosted zone that were created based on the settings in a specified traffic policy version. When you update a traffic policy instance, Amazon Route 53 continues to respond to DNS queries for the root resource record set name (such as example.com) while it replaces one group of resource record sets with another. Route 53 performs the following operations: Route 53 creates a new group of resource record sets based on the specified traffic policy. This is true regardless of how significant the differences are between the existing resource record sets and the new resource record sets. When all of the new resource record sets have been created, Route 53 starts to respond to DNS queries for the root resource record set name (such as example.com) by using the new resource record sets. Route 53 deletes the old group of resource record sets that are associated with the root resource record set name.
|
569
569
|
*/
|
570
570
|
updateTrafficPolicyInstance(params: Route53.Types.UpdateTrafficPolicyInstanceRequest, callback?: (err: AWSError, data: Route53.Types.UpdateTrafficPolicyInstanceResponse) => void): Request<Route53.Types.UpdateTrafficPolicyInstanceResponse, AWSError>;
|
571
571
|
/**
|
572
|
-
*
|
572
|
+
* Updates the resource record sets in a specified hosted zone that were created based on the settings in a specified traffic policy version. When you update a traffic policy instance, Amazon Route 53 continues to respond to DNS queries for the root resource record set name (such as example.com) while it replaces one group of resource record sets with another. Route 53 performs the following operations: Route 53 creates a new group of resource record sets based on the specified traffic policy. This is true regardless of how significant the differences are between the existing resource record sets and the new resource record sets. When all of the new resource record sets have been created, Route 53 starts to respond to DNS queries for the root resource record set name (such as example.com) by using the new resource record sets. Route 53 deletes the old group of resource record sets that are associated with the root resource record set name.
|
573
573
|
*/
|
574
574
|
updateTrafficPolicyInstance(callback?: (err: AWSError, data: Route53.Types.UpdateTrafficPolicyInstanceResponse) => void): Request<Route53.Types.UpdateTrafficPolicyInstanceResponse, AWSError>;
|
575
575
|
/**
|
@@ -850,7 +850,7 @@ declare namespace Route53 {
|
|
850
850
|
Dimensions?: DimensionList;
|
851
851
|
}
|
852
852
|
export type CloudWatchLogsLogGroupArn = string;
|
853
|
-
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"ap-southeast-4"|string;
|
853
|
+
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"ap-southeast-4"|"il-central-1"|string;
|
854
854
|
export type CollectionName = string;
|
855
855
|
export type CollectionSummaries = CollectionSummary[];
|
856
856
|
export interface CollectionSummary {
|
@@ -2620,7 +2620,7 @@ declare namespace Route53 {
|
|
2620
2620
|
export type ResourceRecordSetFailover = "PRIMARY"|"SECONDARY"|string;
|
2621
2621
|
export type ResourceRecordSetIdentifier = string;
|
2622
2622
|
export type ResourceRecordSetMultiValueAnswer = boolean;
|
2623
|
-
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|string;
|
2623
|
+
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-south-2"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|"il-central-1"|string;
|
2624
2624
|
export type ResourceRecordSetWeight = number;
|
2625
2625
|
export type ResourceRecordSets = ResourceRecordSet[];
|
2626
2626
|
export type ResourceRecords = ResourceRecord[];
|
@@ -2991,7 +2991,7 @@ declare namespace Route53 {
|
|
2991
2991
|
VPCId?: VPCId;
|
2992
2992
|
}
|
2993
2993
|
export type VPCId = string;
|
2994
|
-
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-south-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|string;
|
2994
|
+
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-south-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"ap-southeast-4"|"il-central-1"|string;
|
2995
2995
|
export type VPCs = VPC[];
|
2996
2996
|
/**
|
2997
2997
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|