@cdklabs/cdk-ecs-codedeploy 0.0.8 → 0.0.10

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.
@@ -1878,12 +1878,24 @@ declare namespace Appflow {
1878
1878
  * The version of the API that's used by the connector.
1879
1879
  */
1880
1880
  apiVersion?: ApiVersion;
1881
+ /**
1882
+ * The maximum number of items that the operation returns in the response.
1883
+ */
1884
+ maxResults?: ListEntitiesMaxResults;
1885
+ /**
1886
+ * A token that was provided by your prior ListConnectorEntities operation if the response was too big for the page size. You specify this token to get the next page of results in paginated response.
1887
+ */
1888
+ nextToken?: NextToken;
1881
1889
  }
1882
1890
  export interface ListConnectorEntitiesResponse {
1883
1891
  /**
1884
1892
  * The response of ListConnectorEntities lists entities grouped by category. This map's key represents the group name, and its value contains the list of entities belonging to that group.
1885
1893
  */
1886
1894
  connectorEntityMap: ConnectorEntityMap;
1895
+ /**
1896
+ * A token that you specify in your next ListConnectorEntities operation to get the next page of results in paginated response. The ListConnectorEntities operation provides this token if the response is too big for the page size.
1897
+ */
1898
+ nextToken?: NextToken;
1887
1899
  }
1888
1900
  export interface ListConnectorsRequest {
1889
1901
  /**
@@ -1905,6 +1917,7 @@ declare namespace Appflow {
1905
1917
  */
1906
1918
  nextToken?: NextToken;
1907
1919
  }
1920
+ export type ListEntitiesMaxResults = number;
1908
1921
  export interface ListFlowsRequest {
1909
1922
  /**
1910
1923
  * Specifies the maximum number of items that should be returned in the result set.