You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(DBInstance): add support for read only properties of DBInstance for AutomaticRestartTime, PercentProgress, ResumeFullAutomationModeTime, SecondaryAvailabilityZone, StatusInfos
Copy file name to clipboardExpand all lines: aws-rds-dbinstance/aws-rds-dbinstance.json
+51-1Lines changed: 51 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,28 @@
54
54
"RoleArn"
55
55
]
56
56
},
57
+
"DBInstanceStatusInfo": {
58
+
"type": "object",
59
+
"additionalProperties": false,
60
+
"properties": {
61
+
"Message": {
62
+
"type": "string",
63
+
"description": "Details of the error if there is an error for the instance. If the instance isn't in an error state, this value is blank."
64
+
},
65
+
"Normal": {
66
+
"type": "boolean",
67
+
"description": "Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE)."
68
+
},
69
+
"Status": {
70
+
"type": "string",
71
+
"description": "The status of the DB instance. For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated."
72
+
},
73
+
"StatusType": {
74
+
"type": "string",
75
+
"description": "This value is currently \"read replication.\""
76
+
}
77
+
}
78
+
},
57
79
"ProcessorFeature": {
58
80
"type": "object",
59
81
"additionalProperties": false,
@@ -143,6 +165,10 @@
143
165
"minimum": 1,
144
166
"description": "The number of days for which automated cross-region replicated backups are retained. If this value is unset, default to BackupRetentionPeriod."
145
167
},
168
+
"AutomaticRestartTime": {
169
+
"type": "string",
170
+
"description": "The time when a stopped DB instance is restarted automatically."
171
+
},
146
172
"AvailabilityZone": {
147
173
"type": "string",
148
174
"description": "The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones."
@@ -389,6 +415,10 @@
389
415
"type": "string",
390
416
"description": "Indicates that the DB instance should be associated with the specified option group."
391
417
},
418
+
"PercentProgress": {
419
+
"type": "string",
420
+
"description": "The progress of the storage optimization operation as a percentage."
421
+
},
392
422
"PerformanceInsightsKMSKeyId": {
393
423
"type": "string",
394
424
"description": "The AWS KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key."
@@ -449,6 +479,14 @@
449
479
"type": "string",
450
480
"format": "date-time"
451
481
},
482
+
"ResumeFullAutomationModeTime": {
483
+
"type": "string",
484
+
"description": "The duration in minutes to pause automation. Valid values: 60 (default) to 1,440."
485
+
},
486
+
"SecondaryAvailabilityZone": {
487
+
"type": "string",
488
+
"description": "If present, specifies the name of the secondary Availability Zone for a DB instance with multi-AZ support."
489
+
},
452
490
"SourceDBClusterIdentifier": {
453
491
"description": "The identifier of the Multi-AZ DB cluster that will act as the source for the read replica. Each DB cluster can have up to 15 read replicas.",
454
492
"type": "string"
@@ -469,6 +507,13 @@
469
507
"type": "string",
470
508
"description": "The ID of the region that contains the source DB instance for the Read Replica."
471
509
},
510
+
"StatusInfos": {
511
+
"type": "array",
512
+
"items": {
513
+
"$ref": "#/definitions/DBInstanceStatusInfo"
514
+
},
515
+
"description": "The status of a read replica. If the DB instance isn't a read replica, the value is blank."
516
+
},
472
517
"StorageEncrypted": {
473
518
"type": "boolean",
474
519
"description": "A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted."
0 commit comments