@@ -128,6 +128,13 @@ export interface Application {
128
128
* @public
129
129
*/
130
130
StatusMessage ?: string ;
131
+
132
+ /**
133
+ * <p>The Amazon Resource Names of the associated AWS Systems Manager for SAP
134
+ * applications.</p>
135
+ * @public
136
+ */
137
+ AssociatedApplicationArns ?: string [ ] ;
131
138
}
132
139
133
140
/**
@@ -849,6 +856,13 @@ export interface Database {
849
856
* @public
850
857
*/
851
858
LastUpdated ?: Date ;
859
+
860
+ /**
861
+ * <p>The Amazon Resource Names of the connected AWS Systems Manager for SAP
862
+ * components.</p>
863
+ * @public
864
+ */
865
+ ConnectedComponentArns ?: string [ ] ;
852
866
}
853
867
854
868
/**
@@ -1499,33 +1513,32 @@ export interface ListOperationEventsInput {
1499
1513
MaxResults ?: number ;
1500
1514
1501
1515
/**
1502
- * <p>The token to use to retrieve the next page of results.
1503
- * This value is null when there are no more results to return.</p>
1516
+ * <p>The token to use to retrieve the next page of results. This value is null when there are
1517
+ * no more results to return.</p>
1504
1518
* @public
1505
1519
*/
1506
1520
NextToken ?: string ;
1507
1521
1508
1522
/**
1509
- * <p>Optionally specify filters to narrow the returned operation
1510
- * event items.</p>
1511
- * <p>Valid filter names include <code>status</code>, <code>resourceID</code>,
1512
- * and <code>resourceType</code>. The valid operator for all three filters
1513
- * is <code>Equals</code>.</p>
1523
+ * <p>Optionally specify filters to narrow the returned operation event items.</p>
1524
+ * <p>Valid filter names include <code>status</code>, <code>resourceID</code>, and
1525
+ * <code>resourceType</code>. The valid operator for all three filters is
1526
+ * <code>Equals</code>.</p>
1514
1527
* @public
1515
1528
*/
1516
1529
Filters ?: Filter [ ] ;
1517
1530
}
1518
1531
1519
1532
/**
1520
- * <p>The resource contains a <code>ResourceArn</code>
1521
- * and the <code>ResourceType</code>.</p>
1533
+ * <p>The resource contains a <code>ResourceArn</code> and the
1534
+ * <code>ResourceType</code>.</p>
1522
1535
* @public
1523
1536
*/
1524
1537
export interface Resource {
1525
1538
/**
1526
1539
* <p>The Amazon Resource Name (ARN) of the source resource.</p>
1527
1540
* <p>Example of <code>ResourceArn</code>:
1528
- * "<code>arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321</code>"</p>
1541
+ * "<code>arn:aws:ec2:us-east-1:111111111111:instance/i-abcdefgh987654321</code>"</p>
1529
1542
* @public
1530
1543
*/
1531
1544
ResourceArn ?: string ;
@@ -1555,9 +1568,8 @@ export const OperationEventStatus = {
1555
1568
export type OperationEventStatus = ( typeof OperationEventStatus ) [ keyof typeof OperationEventStatus ] ;
1556
1569
1557
1570
/**
1558
- * <p>An operation event returns details for an operation, including
1559
- * key milestones which can be used to monitor and track operations
1560
- * in progress.</p>
1571
+ * <p>An operation event returns details for an operation, including key milestones which can
1572
+ * be used to monitor and track operations in progress.</p>
1561
1573
* <p>Operation events contain:</p>
1562
1574
* <ul>
1563
1575
* <li>
@@ -1576,14 +1588,13 @@ export type OperationEventStatus = (typeof OperationEventStatus)[keyof typeof Op
1576
1588
* <p>TimeStamp</p>
1577
1589
* </li>
1578
1590
* </ul>
1579
- * <p>Operation event examples include StartApplication or
1580
- * StopApplication.</p>
1591
+ * <p>Operation event examples include StartApplication or StopApplication.</p>
1581
1592
* @public
1582
1593
*/
1583
1594
export interface OperationEvent {
1584
1595
/**
1585
- * <p>A description of the operation event. For example,
1586
- * "Stop the EC2 instance i-abcdefgh987654321".</p>
1596
+ * <p>A description of the operation event. For example, "Stop the EC2 instance
1597
+ * i-abcdefgh987654321".</p>
1587
1598
* @public
1588
1599
*/
1589
1600
Description ?: string ;
@@ -1596,16 +1607,14 @@ export interface OperationEvent {
1596
1607
Resource ?: Resource ;
1597
1608
1598
1609
/**
1599
- * <p>The status of the operation event. The possible statuses
1600
- * are: <code>IN_PROGRESS</code>,
1601
- * <code>COMPLETED</code>, and <code>FAILED</code>.</p>
1610
+ * <p>The status of the operation event. The possible statuses are: <code>IN_PROGRESS</code>,
1611
+ * <code>COMPLETED</code>, and <code>FAILED</code>.</p>
1602
1612
* @public
1603
1613
*/
1604
1614
Status ?: OperationEventStatus ;
1605
1615
1606
1616
/**
1607
- * <p>The status message relating to a specific
1608
- * operation event.</p>
1617
+ * <p>The status message relating to a specific operation event.</p>
1609
1618
* @public
1610
1619
*/
1611
1620
StatusMessage ?: string ;
@@ -1622,8 +1631,7 @@ export interface OperationEvent {
1622
1631
*/
1623
1632
export interface ListOperationEventsOutput {
1624
1633
/**
1625
- * <p>A returned list of operation events that
1626
- * meet the filter criteria.</p>
1634
+ * <p>A returned list of operation events that meet the filter criteria.</p>
1627
1635
* @public
1628
1636
*/
1629
1637
OperationEvents ?: OperationEvent [ ] ;
@@ -1866,18 +1874,16 @@ export interface StopApplicationInput {
1866
1874
ApplicationId : string | undefined ;
1867
1875
1868
1876
/**
1869
- * <p>Specify the <code>ConnectedEntityType</code>. Accepted type
1870
- * is <code>DBMS</code>.</p>
1871
- * <p>If this parameter is included, the connected DBMS (Database
1872
- * Management System) will be stopped.</p>
1877
+ * <p>Specify the <code>ConnectedEntityType</code>. Accepted type is <code>DBMS</code>.</p>
1878
+ * <p>If this parameter is included, the connected DBMS (Database Management System) will be
1879
+ * stopped.</p>
1873
1880
* @public
1874
1881
*/
1875
1882
StopConnectedEntity ?: ConnectedEntityType ;
1876
1883
1877
1884
/**
1878
- * <p>Boolean. If included and if set to <code>True</code>, the
1879
- * StopApplication operation will shut down the associated Amazon EC2 instance in addition to
1880
- * the application.</p>
1885
+ * <p>Boolean. If included and if set to <code>True</code>, the StopApplication operation will
1886
+ * shut down the associated Amazon EC2 instance in addition to the application.</p>
1881
1887
* @public
1882
1888
*/
1883
1889
IncludeEc2InstanceShutdown ?: boolean ;
0 commit comments