serverlessapplicationrepository.d.ts 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  1. import {Request} from '../lib/request';
  2. import {Response} from '../lib/response';
  3. import {AWSError} from '../lib/error';
  4. import {Service} from '../lib/service';
  5. import {ServiceConfigurationOptions} from '../lib/service';
  6. import {ConfigBase as Config} from '../lib/config-base';
  7. interface Blob {}
  8. declare class ServerlessApplicationRepository extends Service {
  9. /**
  10. * Constructs a service object. This object has one method for each API operation.
  11. */
  12. constructor(options?: ServerlessApplicationRepository.Types.ClientConfiguration)
  13. config: Config & ServerlessApplicationRepository.Types.ClientConfiguration;
  14. /**
  15. * Creates an application, optionally including an AWS SAM file to create the first application version in the same call.
  16. */
  17. createApplication(params: ServerlessApplicationRepository.Types.CreateApplicationRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateApplicationResponse) => void): Request<ServerlessApplicationRepository.Types.CreateApplicationResponse, AWSError>;
  18. /**
  19. * Creates an application, optionally including an AWS SAM file to create the first application version in the same call.
  20. */
  21. createApplication(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateApplicationResponse) => void): Request<ServerlessApplicationRepository.Types.CreateApplicationResponse, AWSError>;
  22. /**
  23. * Creates an application version.
  24. */
  25. createApplicationVersion(params: ServerlessApplicationRepository.Types.CreateApplicationVersionRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateApplicationVersionResponse) => void): Request<ServerlessApplicationRepository.Types.CreateApplicationVersionResponse, AWSError>;
  26. /**
  27. * Creates an application version.
  28. */
  29. createApplicationVersion(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateApplicationVersionResponse) => void): Request<ServerlessApplicationRepository.Types.CreateApplicationVersionResponse, AWSError>;
  30. /**
  31. * Creates an AWS CloudFormation change set for the given application.
  32. */
  33. createCloudFormationChangeSet(params: ServerlessApplicationRepository.Types.CreateCloudFormationChangeSetRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateCloudFormationChangeSetResponse) => void): Request<ServerlessApplicationRepository.Types.CreateCloudFormationChangeSetResponse, AWSError>;
  34. /**
  35. * Creates an AWS CloudFormation change set for the given application.
  36. */
  37. createCloudFormationChangeSet(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateCloudFormationChangeSetResponse) => void): Request<ServerlessApplicationRepository.Types.CreateCloudFormationChangeSetResponse, AWSError>;
  38. /**
  39. * Creates an AWS CloudFormation template.
  40. */
  41. createCloudFormationTemplate(params: ServerlessApplicationRepository.Types.CreateCloudFormationTemplateRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateCloudFormationTemplateResponse) => void): Request<ServerlessApplicationRepository.Types.CreateCloudFormationTemplateResponse, AWSError>;
  42. /**
  43. * Creates an AWS CloudFormation template.
  44. */
  45. createCloudFormationTemplate(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.CreateCloudFormationTemplateResponse) => void): Request<ServerlessApplicationRepository.Types.CreateCloudFormationTemplateResponse, AWSError>;
  46. /**
  47. * Deletes the specified application.
  48. */
  49. deleteApplication(params: ServerlessApplicationRepository.Types.DeleteApplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  50. /**
  51. * Deletes the specified application.
  52. */
  53. deleteApplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  54. /**
  55. * Gets the specified application.
  56. */
  57. getApplication(params: ServerlessApplicationRepository.Types.GetApplicationRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.GetApplicationResponse) => void): Request<ServerlessApplicationRepository.Types.GetApplicationResponse, AWSError>;
  58. /**
  59. * Gets the specified application.
  60. */
  61. getApplication(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.GetApplicationResponse) => void): Request<ServerlessApplicationRepository.Types.GetApplicationResponse, AWSError>;
  62. /**
  63. * Retrieves the policy for the application.
  64. */
  65. getApplicationPolicy(params: ServerlessApplicationRepository.Types.GetApplicationPolicyRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.GetApplicationPolicyResponse) => void): Request<ServerlessApplicationRepository.Types.GetApplicationPolicyResponse, AWSError>;
  66. /**
  67. * Retrieves the policy for the application.
  68. */
  69. getApplicationPolicy(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.GetApplicationPolicyResponse) => void): Request<ServerlessApplicationRepository.Types.GetApplicationPolicyResponse, AWSError>;
  70. /**
  71. * Gets the specified AWS CloudFormation template.
  72. */
  73. getCloudFormationTemplate(params: ServerlessApplicationRepository.Types.GetCloudFormationTemplateRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.GetCloudFormationTemplateResponse) => void): Request<ServerlessApplicationRepository.Types.GetCloudFormationTemplateResponse, AWSError>;
  74. /**
  75. * Gets the specified AWS CloudFormation template.
  76. */
  77. getCloudFormationTemplate(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.GetCloudFormationTemplateResponse) => void): Request<ServerlessApplicationRepository.Types.GetCloudFormationTemplateResponse, AWSError>;
  78. /**
  79. * Retrieves the list of applications nested in the containing application.
  80. */
  81. listApplicationDependencies(params: ServerlessApplicationRepository.Types.ListApplicationDependenciesRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.ListApplicationDependenciesResponse) => void): Request<ServerlessApplicationRepository.Types.ListApplicationDependenciesResponse, AWSError>;
  82. /**
  83. * Retrieves the list of applications nested in the containing application.
  84. */
  85. listApplicationDependencies(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.ListApplicationDependenciesResponse) => void): Request<ServerlessApplicationRepository.Types.ListApplicationDependenciesResponse, AWSError>;
  86. /**
  87. * Lists versions for the specified application.
  88. */
  89. listApplicationVersions(params: ServerlessApplicationRepository.Types.ListApplicationVersionsRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.ListApplicationVersionsResponse) => void): Request<ServerlessApplicationRepository.Types.ListApplicationVersionsResponse, AWSError>;
  90. /**
  91. * Lists versions for the specified application.
  92. */
  93. listApplicationVersions(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.ListApplicationVersionsResponse) => void): Request<ServerlessApplicationRepository.Types.ListApplicationVersionsResponse, AWSError>;
  94. /**
  95. * Lists applications owned by the requester.
  96. */
  97. listApplications(params: ServerlessApplicationRepository.Types.ListApplicationsRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.ListApplicationsResponse) => void): Request<ServerlessApplicationRepository.Types.ListApplicationsResponse, AWSError>;
  98. /**
  99. * Lists applications owned by the requester.
  100. */
  101. listApplications(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.ListApplicationsResponse) => void): Request<ServerlessApplicationRepository.Types.ListApplicationsResponse, AWSError>;
  102. /**
  103. * Sets the permission policy for an application. For the list of actions supported for this operation, see
  104. Application
  105. Permissions
  106. .
  107. */
  108. putApplicationPolicy(params: ServerlessApplicationRepository.Types.PutApplicationPolicyRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.PutApplicationPolicyResponse) => void): Request<ServerlessApplicationRepository.Types.PutApplicationPolicyResponse, AWSError>;
  109. /**
  110. * Sets the permission policy for an application. For the list of actions supported for this operation, see
  111. Application
  112. Permissions
  113. .
  114. */
  115. putApplicationPolicy(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.PutApplicationPolicyResponse) => void): Request<ServerlessApplicationRepository.Types.PutApplicationPolicyResponse, AWSError>;
  116. /**
  117. * Unshares an application from an AWS Organization.This operation can be called only from the organization's master account.
  118. */
  119. unshareApplication(params: ServerlessApplicationRepository.Types.UnshareApplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  120. /**
  121. * Unshares an application from an AWS Organization.This operation can be called only from the organization's master account.
  122. */
  123. unshareApplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
  124. /**
  125. * Updates the specified application.
  126. */
  127. updateApplication(params: ServerlessApplicationRepository.Types.UpdateApplicationRequest, callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.UpdateApplicationResponse) => void): Request<ServerlessApplicationRepository.Types.UpdateApplicationResponse, AWSError>;
  128. /**
  129. * Updates the specified application.
  130. */
  131. updateApplication(callback?: (err: AWSError, data: ServerlessApplicationRepository.Types.UpdateApplicationResponse) => void): Request<ServerlessApplicationRepository.Types.UpdateApplicationResponse, AWSError>;
  132. }
  133. declare namespace ServerlessApplicationRepository {
  134. export interface ApplicationDependencySummary {
  135. /**
  136. * The Amazon Resource Name (ARN) of the nested application.
  137. */
  138. ApplicationId: __string;
  139. /**
  140. * The semantic version of the nested application.
  141. */
  142. SemanticVersion: __string;
  143. }
  144. export interface ApplicationPolicyStatement {
  145. /**
  146. * For the list of actions supported for this operation, see Application
  147. Permissions.
  148. */
  149. Actions: __listOf__string;
  150. /**
  151. * An array of PrinciplalOrgIDs, which corresponds to AWS IAM aws:PrincipalOrgID global condition key.
  152. */
  153. PrincipalOrgIDs?: __listOf__string;
  154. /**
  155. * An array of AWS account IDs, or * to make the application public.
  156. */
  157. Principals: __listOf__string;
  158. /**
  159. * A unique ID for the statement.
  160. */
  161. StatementId?: __string;
  162. }
  163. export interface ApplicationSummary {
  164. /**
  165. * The application Amazon Resource Name (ARN).
  166. */
  167. ApplicationId: __string;
  168. /**
  169. * The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
  170. */
  171. Author: __string;
  172. /**
  173. * The date and time this resource was created.
  174. */
  175. CreationTime?: __string;
  176. /**
  177. * The description of the application.Minimum length=1. Maximum length=256
  178. */
  179. Description: __string;
  180. /**
  181. * A URL with more information about the application, for example the location of your GitHub repository for the application.
  182. */
  183. HomePageUrl?: __string;
  184. /**
  185. * Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
  186. */
  187. Labels?: __listOf__string;
  188. /**
  189. * The name of the application.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";
  190. */
  191. Name: __string;
  192. /**
  193. * A valid identifier from https://spdx.org/licenses/.
  194. */
  195. SpdxLicenseId?: __string;
  196. }
  197. export type Capability = "CAPABILITY_IAM"|"CAPABILITY_NAMED_IAM"|"CAPABILITY_AUTO_EXPAND"|"CAPABILITY_RESOURCE_POLICY"|string;
  198. export interface CreateApplicationRequest {
  199. /**
  200. * The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
  201. */
  202. Author: __string;
  203. /**
  204. * The description of the application.Minimum length=1. Maximum length=256
  205. */
  206. Description: __string;
  207. /**
  208. * A URL with more information about the application, for example the location of your GitHub repository for the application.
  209. */
  210. HomePageUrl?: __string;
  211. /**
  212. * Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
  213. */
  214. Labels?: __listOf__string;
  215. /**
  216. * A local text file that contains the license of the app that matches the spdxLicenseID value of your application.
  217. The file has the format file://&lt;path>/&lt;filename>.Maximum size 5 MBYou can specify only one of licenseBody and licenseUrl; otherwise, an error results.
  218. */
  219. LicenseBody?: __string;
  220. /**
  221. * A link to the S3 object that contains the license of the app that matches the spdxLicenseID value of your application.Maximum size 5 MBYou can specify only one of licenseBody and licenseUrl; otherwise, an error results.
  222. */
  223. LicenseUrl?: __string;
  224. /**
  225. * The name of the application that you want to publish.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";
  226. */
  227. Name: __string;
  228. /**
  229. * A local text readme file in Markdown language that contains a more detailed description of the application and how it works.
  230. The file has the format file://&lt;path>/&lt;filename>.Maximum size 5 MBYou can specify only one of readmeBody and readmeUrl; otherwise, an error results.
  231. */
  232. ReadmeBody?: __string;
  233. /**
  234. * A link to the S3 object in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MBYou can specify only one of readmeBody and readmeUrl; otherwise, an error results.
  235. */
  236. ReadmeUrl?: __string;
  237. /**
  238. * The semantic version of the application:
  239. https://semver.org/
  240. */
  241. SemanticVersion?: __string;
  242. /**
  243. * A link to the S3 object that contains the ZIP archive of the source code for this version of your application.Maximum size 50 MB
  244. */
  245. SourceCodeArchiveUrl?: __string;
  246. /**
  247. * A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
  248. */
  249. SourceCodeUrl?: __string;
  250. /**
  251. * A valid identifier from https://spdx.org/licenses/.
  252. */
  253. SpdxLicenseId?: __string;
  254. /**
  255. * The local raw packaged AWS SAM template file of your application.
  256. The file has the format file://&lt;path>/&lt;filename>.You can specify only one of templateBody and templateUrl; otherwise an error results.
  257. */
  258. TemplateBody?: __string;
  259. /**
  260. * A link to the S3 object containing the packaged AWS SAM template of your application.You can specify only one of templateBody and templateUrl; otherwise an error results.
  261. */
  262. TemplateUrl?: __string;
  263. }
  264. export interface CreateApplicationResponse {
  265. /**
  266. * The application Amazon Resource Name (ARN).
  267. */
  268. ApplicationId?: __string;
  269. /**
  270. * The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
  271. */
  272. Author?: __string;
  273. /**
  274. * The date and time this resource was created.
  275. */
  276. CreationTime?: __string;
  277. /**
  278. * The description of the application.Minimum length=1. Maximum length=256
  279. */
  280. Description?: __string;
  281. /**
  282. * A URL with more information about the application, for example the location of your GitHub repository for the application.
  283. */
  284. HomePageUrl?: __string;
  285. /**
  286. * Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.
  287. */
  288. IsVerifiedAuthor?: __boolean;
  289. /**
  290. * Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
  291. */
  292. Labels?: __listOf__string;
  293. /**
  294. * A link to a license file of the app that matches the spdxLicenseID value of your application.Maximum size 5 MB
  295. */
  296. LicenseUrl?: __string;
  297. /**
  298. * The name of the application.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";
  299. */
  300. Name?: __string;
  301. /**
  302. * A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB
  303. */
  304. ReadmeUrl?: __string;
  305. /**
  306. * A valid identifier from https://spdx.org/licenses/.
  307. */
  308. SpdxLicenseId?: __string;
  309. /**
  310. * The URL to the public profile of a verified author. This URL is submitted by the author.
  311. */
  312. VerifiedAuthorUrl?: __string;
  313. /**
  314. * Version information about the application.
  315. */
  316. Version?: Version;
  317. }
  318. export interface CreateApplicationVersionRequest {
  319. /**
  320. * The Amazon Resource Name (ARN) of the application.
  321. */
  322. ApplicationId: __string;
  323. /**
  324. * The semantic version of the new version.
  325. */
  326. SemanticVersion: __string;
  327. /**
  328. * A link to the S3 object that contains the ZIP archive of the source code for this version of your application.Maximum size 50 MB
  329. */
  330. SourceCodeArchiveUrl?: __string;
  331. /**
  332. * A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
  333. */
  334. SourceCodeUrl?: __string;
  335. /**
  336. * The raw packaged AWS SAM template of your application.
  337. */
  338. TemplateBody?: __string;
  339. /**
  340. * A link to the packaged AWS SAM template of your application.
  341. */
  342. TemplateUrl?: __string;
  343. }
  344. export interface CreateApplicationVersionResponse {
  345. /**
  346. * The application Amazon Resource Name (ARN).
  347. */
  348. ApplicationId?: __string;
  349. /**
  350. * The date and time this resource was created.
  351. */
  352. CreationTime?: __string;
  353. /**
  354. * An array of parameter types supported by the application.
  355. */
  356. ParameterDefinitions?: __listOfParameterDefinition;
  357. /**
  358. * A list of values that you must specify before you can deploy certain applications.
  359. Some applications might include resources that can affect permissions in your AWS
  360. account, for example, by creating new AWS Identity and Access Management (IAM) users.
  361. For those applications, you must explicitly acknowledge their capabilities by
  362. specifying this parameter.The only valid values are CAPABILITY_IAM, CAPABILITY_NAMED_IAM,
  363. CAPABILITY_RESOURCE_POLICY, and CAPABILITY_AUTO_EXPAND.The following resources require you to specify CAPABILITY_IAM or
  364. CAPABILITY_NAMED_IAM:
  365. AWS::IAM::Group,
  366. AWS::IAM::InstanceProfile,
  367. AWS::IAM::Policy, and
  368. AWS::IAM::Role.
  369. If the application contains IAM resources, you can specify either CAPABILITY_IAM
  370. or CAPABILITY_NAMED_IAM. If the application contains IAM resources
  371. with custom names, you must specify CAPABILITY_NAMED_IAM.The following resources require you to specify CAPABILITY_RESOURCE_POLICY:
  372. AWS::Lambda::Permission,
  373. AWS::IAM:Policy,
  374. AWS::ApplicationAutoScaling::ScalingPolicy,
  375. AWS::S3::BucketPolicy,
  376. AWS::SQS::QueuePolicy, and
  377. AWS::SNS::TopicPolicy.Applications that contain one or more nested applications require you to specify
  378. CAPABILITY_AUTO_EXPAND.If your application template contains any of the above resources, we recommend that you review
  379. all permissions associated with the application before deploying. If you don't specify
  380. this parameter for an application that requires capabilities, the call will fail.
  381. */
  382. RequiredCapabilities?: __listOfCapability;
  383. /**
  384. * Whether all of the AWS resources contained in this application are supported in the region
  385. in which it is being retrieved.
  386. */
  387. ResourcesSupported?: __boolean;
  388. /**
  389. * The semantic version of the application:
  390. https://semver.org/
  391. */
  392. SemanticVersion?: __string;
  393. /**
  394. * A link to the S3 object that contains the ZIP archive of the source code for this version of your application.Maximum size 50 MB
  395. */
  396. SourceCodeArchiveUrl?: __string;
  397. /**
  398. * A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
  399. */
  400. SourceCodeUrl?: __string;
  401. /**
  402. * A link to the packaged AWS SAM template of your application.
  403. */
  404. TemplateUrl?: __string;
  405. }
  406. export interface CreateCloudFormationChangeSetRequest {
  407. /**
  408. * The Amazon Resource Name (ARN) of the application.
  409. */
  410. ApplicationId: __string;
  411. /**
  412. * A list of values that you must specify before you can deploy certain applications.
  413. Some applications might include resources that can affect permissions in your AWS
  414. account, for example, by creating new AWS Identity and Access Management (IAM) users.
  415. For those applications, you must explicitly acknowledge their capabilities by
  416. specifying this parameter.The only valid values are CAPABILITY_IAM, CAPABILITY_NAMED_IAM,
  417. CAPABILITY_RESOURCE_POLICY, and CAPABILITY_AUTO_EXPAND.The following resources require you to specify CAPABILITY_IAM or
  418. CAPABILITY_NAMED_IAM:
  419. AWS::IAM::Group,
  420. AWS::IAM::InstanceProfile,
  421. AWS::IAM::Policy, and
  422. AWS::IAM::Role.
  423. If the application contains IAM resources, you can specify either CAPABILITY_IAM
  424. or CAPABILITY_NAMED_IAM. If the application contains IAM resources
  425. with custom names, you must specify CAPABILITY_NAMED_IAM.The following resources require you to specify CAPABILITY_RESOURCE_POLICY:
  426. AWS::Lambda::Permission,
  427. AWS::IAM:Policy,
  428. AWS::ApplicationAutoScaling::ScalingPolicy,
  429. AWS::S3::BucketPolicy,
  430. AWS::SQS::QueuePolicy, and
  431. AWS::SNS:TopicPolicy.Applications that contain one or more nested applications require you to specify
  432. CAPABILITY_AUTO_EXPAND.If your application template contains any of the above resources, we recommend that you review
  433. all permissions associated with the application before deploying. If you don't specify
  434. this parameter for an application that requires capabilities, the call will fail.
  435. */
  436. Capabilities?: __listOf__string;
  437. /**
  438. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  439. API.
  440. */
  441. ChangeSetName?: __string;
  442. /**
  443. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  444. API.
  445. */
  446. ClientToken?: __string;
  447. /**
  448. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  449. API.
  450. */
  451. Description?: __string;
  452. /**
  453. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  454. API.
  455. */
  456. NotificationArns?: __listOf__string;
  457. /**
  458. * A list of parameter values for the parameters of the application.
  459. */
  460. ParameterOverrides?: __listOfParameterValue;
  461. /**
  462. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  463. API.
  464. */
  465. ResourceTypes?: __listOf__string;
  466. /**
  467. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  468. API.
  469. */
  470. RollbackConfiguration?: RollbackConfiguration;
  471. /**
  472. * The semantic version of the application:
  473. https://semver.org/
  474. */
  475. SemanticVersion?: __string;
  476. /**
  477. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  478. API.
  479. */
  480. StackName: __string;
  481. /**
  482. * This property corresponds to the parameter of the same name for the AWS CloudFormation CreateChangeSet
  483. API.
  484. */
  485. Tags?: __listOfTag;
  486. /**
  487. * The UUID returned by CreateCloudFormationTemplate.Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}
  488. */
  489. TemplateId?: __string;
  490. }
  491. export interface CreateCloudFormationChangeSetResponse {
  492. /**
  493. * The application Amazon Resource Name (ARN).
  494. */
  495. ApplicationId?: __string;
  496. /**
  497. * The Amazon Resource Name (ARN) of the change set.Length constraints: Minimum length of 1.Pattern: ARN:[-a-zA-Z0-9:/]*
  498. */
  499. ChangeSetId?: __string;
  500. /**
  501. * The semantic version of the application:
  502. https://semver.org/
  503. */
  504. SemanticVersion?: __string;
  505. /**
  506. * The unique ID of the stack.
  507. */
  508. StackId?: __string;
  509. }
  510. export interface CreateCloudFormationTemplateRequest {
  511. /**
  512. * The Amazon Resource Name (ARN) of the application.
  513. */
  514. ApplicationId: __string;
  515. /**
  516. * The semantic version of the application:
  517. https://semver.org/
  518. */
  519. SemanticVersion?: __string;
  520. }
  521. export interface CreateCloudFormationTemplateResponse {
  522. /**
  523. * The application Amazon Resource Name (ARN).
  524. */
  525. ApplicationId?: __string;
  526. /**
  527. * The date and time this resource was created.
  528. */
  529. CreationTime?: __string;
  530. /**
  531. * The date and time this template expires. Templates
  532. expire 1 hour after creation.
  533. */
  534. ExpirationTime?: __string;
  535. /**
  536. * The semantic version of the application:
  537. https://semver.org/
  538. */
  539. SemanticVersion?: __string;
  540. /**
  541. * Status of the template creation workflow.Possible values: PREPARING | ACTIVE | EXPIRED
  542. */
  543. Status?: Status;
  544. /**
  545. * The UUID returned by CreateCloudFormationTemplate.Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}
  546. */
  547. TemplateId?: __string;
  548. /**
  549. * A link to the template that can be used to deploy the application using
  550. AWS CloudFormation.
  551. */
  552. TemplateUrl?: __string;
  553. }
  554. export interface DeleteApplicationRequest {
  555. /**
  556. * The Amazon Resource Name (ARN) of the application.
  557. */
  558. ApplicationId: __string;
  559. }
  560. export interface GetApplicationPolicyRequest {
  561. /**
  562. * The Amazon Resource Name (ARN) of the application.
  563. */
  564. ApplicationId: __string;
  565. }
  566. export interface GetApplicationPolicyResponse {
  567. /**
  568. * An array of policy statements applied to the application.
  569. */
  570. Statements?: __listOfApplicationPolicyStatement;
  571. }
  572. export interface GetApplicationRequest {
  573. /**
  574. * The Amazon Resource Name (ARN) of the application.
  575. */
  576. ApplicationId: __string;
  577. /**
  578. * The semantic version of the application to get.
  579. */
  580. SemanticVersion?: __string;
  581. }
  582. export interface GetApplicationResponse {
  583. /**
  584. * The application Amazon Resource Name (ARN).
  585. */
  586. ApplicationId?: __string;
  587. /**
  588. * The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
  589. */
  590. Author?: __string;
  591. /**
  592. * The date and time this resource was created.
  593. */
  594. CreationTime?: __string;
  595. /**
  596. * The description of the application.Minimum length=1. Maximum length=256
  597. */
  598. Description?: __string;
  599. /**
  600. * A URL with more information about the application, for example the location of your GitHub repository for the application.
  601. */
  602. HomePageUrl?: __string;
  603. /**
  604. * Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.
  605. */
  606. IsVerifiedAuthor?: __boolean;
  607. /**
  608. * Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
  609. */
  610. Labels?: __listOf__string;
  611. /**
  612. * A link to a license file of the app that matches the spdxLicenseID value of your application.Maximum size 5 MB
  613. */
  614. LicenseUrl?: __string;
  615. /**
  616. * The name of the application.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";
  617. */
  618. Name?: __string;
  619. /**
  620. * A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB
  621. */
  622. ReadmeUrl?: __string;
  623. /**
  624. * A valid identifier from https://spdx.org/licenses/.
  625. */
  626. SpdxLicenseId?: __string;
  627. /**
  628. * The URL to the public profile of a verified author. This URL is submitted by the author.
  629. */
  630. VerifiedAuthorUrl?: __string;
  631. /**
  632. * Version information about the application.
  633. */
  634. Version?: Version;
  635. }
  636. export interface GetCloudFormationTemplateRequest {
  637. /**
  638. * The Amazon Resource Name (ARN) of the application.
  639. */
  640. ApplicationId: __string;
  641. /**
  642. * The UUID returned by CreateCloudFormationTemplate.Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}
  643. */
  644. TemplateId: __string;
  645. }
  646. export interface GetCloudFormationTemplateResponse {
  647. /**
  648. * The application Amazon Resource Name (ARN).
  649. */
  650. ApplicationId?: __string;
  651. /**
  652. * The date and time this resource was created.
  653. */
  654. CreationTime?: __string;
  655. /**
  656. * The date and time this template expires. Templates
  657. expire 1 hour after creation.
  658. */
  659. ExpirationTime?: __string;
  660. /**
  661. * The semantic version of the application:
  662. https://semver.org/
  663. */
  664. SemanticVersion?: __string;
  665. /**
  666. * Status of the template creation workflow.Possible values: PREPARING | ACTIVE | EXPIRED
  667. */
  668. Status?: Status;
  669. /**
  670. * The UUID returned by CreateCloudFormationTemplate.Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}
  671. */
  672. TemplateId?: __string;
  673. /**
  674. * A link to the template that can be used to deploy the application using
  675. AWS CloudFormation.
  676. */
  677. TemplateUrl?: __string;
  678. }
  679. export interface ListApplicationDependenciesRequest {
  680. /**
  681. * The Amazon Resource Name (ARN) of the application.
  682. */
  683. ApplicationId: __string;
  684. /**
  685. * The total number of items to return.
  686. */
  687. MaxItems?: MaxItems;
  688. /**
  689. * A token to specify where to start paginating.
  690. */
  691. NextToken?: __string;
  692. /**
  693. * The semantic version of the application to get.
  694. */
  695. SemanticVersion?: __string;
  696. }
  697. export interface ListApplicationDependenciesResponse {
  698. /**
  699. * An array of application summaries nested in the application.
  700. */
  701. Dependencies?: __listOfApplicationDependencySummary;
  702. /**
  703. * The token to request the next page of results.
  704. */
  705. NextToken?: __string;
  706. }
  707. export interface ListApplicationVersionsRequest {
  708. /**
  709. * The Amazon Resource Name (ARN) of the application.
  710. */
  711. ApplicationId: __string;
  712. /**
  713. * The total number of items to return.
  714. */
  715. MaxItems?: MaxItems;
  716. /**
  717. * A token to specify where to start paginating.
  718. */
  719. NextToken?: __string;
  720. }
  721. export interface ListApplicationVersionsResponse {
  722. /**
  723. * The token to request the next page of results.
  724. */
  725. NextToken?: __string;
  726. /**
  727. * An array of version summaries for the application.
  728. */
  729. Versions?: __listOfVersionSummary;
  730. }
  731. export interface ListApplicationsRequest {
  732. /**
  733. * The total number of items to return.
  734. */
  735. MaxItems?: MaxItems;
  736. /**
  737. * A token to specify where to start paginating.
  738. */
  739. NextToken?: __string;
  740. }
  741. export interface ListApplicationsResponse {
  742. /**
  743. * An array of application summaries.
  744. */
  745. Applications?: __listOfApplicationSummary;
  746. /**
  747. * The token to request the next page of results.
  748. */
  749. NextToken?: __string;
  750. }
  751. export type MaxItems = number;
  752. export interface ParameterDefinition {
  753. /**
  754. * A regular expression that represents the patterns to allow for String types.
  755. */
  756. AllowedPattern?: __string;
  757. /**
  758. * An array containing the list of values allowed for the parameter.
  759. */
  760. AllowedValues?: __listOf__string;
  761. /**
  762. * A string that explains a constraint when the constraint is violated. For example, without a constraint description,
  763. a parameter that has an allowed pattern of [A-Za-z0-9]+ displays the following error message when the user
  764. specifies an invalid value:
  765. Malformed input-Parameter MyParameter must match pattern [A-Za-z0-9]+
  766. By adding a constraint description, such as "must contain only uppercase and lowercase letters and numbers," you can display
  767. the following customized error message:
  768. Malformed input-Parameter MyParameter must contain only uppercase and lowercase letters and numbers.
  769. */
  770. ConstraintDescription?: __string;
  771. /**
  772. * A value of the appropriate type for the template to use if no value is specified when a stack is created.
  773. If you define constraints for the parameter, you must specify a value that adheres to those constraints.
  774. */
  775. DefaultValue?: __string;
  776. /**
  777. * A string of up to 4,000 characters that describes the parameter.
  778. */
  779. Description?: __string;
  780. /**
  781. * An integer value that determines the largest number of characters that you want to allow for String types.
  782. */
  783. MaxLength?: __integer;
  784. /**
  785. * A numeric value that determines the largest numeric value that you want to allow for Number types.
  786. */
  787. MaxValue?: __integer;
  788. /**
  789. * An integer value that determines the smallest number of characters that you want to allow for String types.
  790. */
  791. MinLength?: __integer;
  792. /**
  793. * A numeric value that determines the smallest numeric value that you want to allow for Number types.
  794. */
  795. MinValue?: __integer;
  796. /**
  797. * The name of the parameter.
  798. */
  799. Name: __string;
  800. /**
  801. * Whether to mask the parameter value whenever anyone makes a call that describes the stack. If you set the
  802. value to true, the parameter value is masked with asterisks (*****).
  803. */
  804. NoEcho?: __boolean;
  805. /**
  806. * A list of AWS SAM resources that use this parameter.
  807. */
  808. ReferencedByResources: __listOf__string;
  809. /**
  810. * The type of the parameter.Valid values: String | Number | List&lt;Number> | CommaDelimitedList
  811. String: A literal string.For example, users can specify "MyUserName".
  812. Number: An integer or float. AWS CloudFormation validates the parameter value as a number. However, when you use the
  813. parameter elsewhere in your template (for example, by using the Ref intrinsic function), the parameter value becomes a string.For example, users might specify "8888".
  814. List&lt;Number>: An array of integers or floats that are separated by commas. AWS CloudFormation validates the parameter value as numbers. However, when
  815. you use the parameter elsewhere in your template (for example, by using the Ref intrinsic function), the parameter value becomes a list of strings.For example, users might specify "80,20", and then Ref results in ["80","20"].
  816. CommaDelimitedList: An array of literal strings that are separated by commas. The total number of strings should be one more than the total number of commas.
  817. Also, each member string is space-trimmed.For example, users might specify "test,dev,prod", and then Ref results in ["test","dev","prod"].
  818. */
  819. Type?: __string;
  820. }
  821. export interface ParameterValue {
  822. /**
  823. * The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation
  824. uses the default value that is specified in your template.
  825. */
  826. Name: __string;
  827. /**
  828. * The input value associated with the parameter.
  829. */
  830. Value: __string;
  831. }
  832. export interface PutApplicationPolicyRequest {
  833. /**
  834. * The Amazon Resource Name (ARN) of the application.
  835. */
  836. ApplicationId: __string;
  837. /**
  838. * An array of policy statements applied to the application.
  839. */
  840. Statements: __listOfApplicationPolicyStatement;
  841. }
  842. export interface PutApplicationPolicyResponse {
  843. /**
  844. * An array of policy statements applied to the application.
  845. */
  846. Statements?: __listOfApplicationPolicyStatement;
  847. }
  848. export interface RollbackConfiguration {
  849. /**
  850. * This property corresponds to the content of the same name for the AWS CloudFormation RollbackConfiguration
  851. Data Type.
  852. */
  853. MonitoringTimeInMinutes?: __integer;
  854. /**
  855. * This property corresponds to the content of the same name for the AWS CloudFormation RollbackConfiguration
  856. Data Type.
  857. */
  858. RollbackTriggers?: __listOfRollbackTrigger;
  859. }
  860. export interface RollbackTrigger {
  861. /**
  862. * This property corresponds to the content of the same name for the AWS CloudFormation RollbackTrigger
  863. Data Type.
  864. */
  865. Arn: __string;
  866. /**
  867. * This property corresponds to the content of the same name for the AWS CloudFormation RollbackTrigger
  868. Data Type.
  869. */
  870. Type: __string;
  871. }
  872. export type Status = "PREPARING"|"ACTIVE"|"EXPIRED"|string;
  873. export interface Tag {
  874. /**
  875. * This property corresponds to the content of the same name for the AWS CloudFormation Tag
  876. Data Type.
  877. */
  878. Key: __string;
  879. /**
  880. * This property corresponds to the content of the same name for the AWS CloudFormation
  881. Tag
  882. Data Type.
  883. */
  884. Value: __string;
  885. }
  886. export interface UnshareApplicationRequest {
  887. /**
  888. * The Amazon Resource Name (ARN) of the application.
  889. */
  890. ApplicationId: __string;
  891. /**
  892. * The AWS Organization ID to unshare the application from.
  893. */
  894. OrganizationId: __string;
  895. }
  896. export interface UpdateApplicationRequest {
  897. /**
  898. * The Amazon Resource Name (ARN) of the application.
  899. */
  900. ApplicationId: __string;
  901. /**
  902. * The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
  903. */
  904. Author?: __string;
  905. /**
  906. * The description of the application.Minimum length=1. Maximum length=256
  907. */
  908. Description?: __string;
  909. /**
  910. * A URL with more information about the application, for example the location of your GitHub repository for the application.
  911. */
  912. HomePageUrl?: __string;
  913. /**
  914. * Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
  915. */
  916. Labels?: __listOf__string;
  917. /**
  918. * A text readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB
  919. */
  920. ReadmeBody?: __string;
  921. /**
  922. * A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB
  923. */
  924. ReadmeUrl?: __string;
  925. }
  926. export interface UpdateApplicationResponse {
  927. /**
  928. * The application Amazon Resource Name (ARN).
  929. */
  930. ApplicationId?: __string;
  931. /**
  932. * The name of the author publishing the app.Minimum length=1. Maximum length=127.Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";
  933. */
  934. Author?: __string;
  935. /**
  936. * The date and time this resource was created.
  937. */
  938. CreationTime?: __string;
  939. /**
  940. * The description of the application.Minimum length=1. Maximum length=256
  941. */
  942. Description?: __string;
  943. /**
  944. * A URL with more information about the application, for example the location of your GitHub repository for the application.
  945. */
  946. HomePageUrl?: __string;
  947. /**
  948. * Whether the author of this application has been verified. This means means that AWS has made a good faith review, as a reasonable and prudent service provider, of the information provided by the requester and has confirmed that the requester's identity is as claimed.
  949. */
  950. IsVerifiedAuthor?: __boolean;
  951. /**
  952. * Labels to improve discovery of apps in search results.Minimum length=1. Maximum length=127. Maximum number of labels: 10Pattern: "^[a-zA-Z0-9+\\-_:\\/@]+$";
  953. */
  954. Labels?: __listOf__string;
  955. /**
  956. * A link to a license file of the app that matches the spdxLicenseID value of your application.Maximum size 5 MB
  957. */
  958. LicenseUrl?: __string;
  959. /**
  960. * The name of the application.Minimum length=1. Maximum length=140Pattern: "[a-zA-Z0-9\\-]+";
  961. */
  962. Name?: __string;
  963. /**
  964. * A link to the readme file in Markdown language that contains a more detailed description of the application and how it works.Maximum size 5 MB
  965. */
  966. ReadmeUrl?: __string;
  967. /**
  968. * A valid identifier from https://spdx.org/licenses/.
  969. */
  970. SpdxLicenseId?: __string;
  971. /**
  972. * The URL to the public profile of a verified author. This URL is submitted by the author.
  973. */
  974. VerifiedAuthorUrl?: __string;
  975. /**
  976. * Version information about the application.
  977. */
  978. Version?: Version;
  979. }
  980. export interface Version {
  981. /**
  982. * The application Amazon Resource Name (ARN).
  983. */
  984. ApplicationId: __string;
  985. /**
  986. * The date and time this resource was created.
  987. */
  988. CreationTime: __string;
  989. /**
  990. * An array of parameter types supported by the application.
  991. */
  992. ParameterDefinitions: __listOfParameterDefinition;
  993. /**
  994. * A list of values that you must specify before you can deploy certain applications.
  995. Some applications might include resources that can affect permissions in your AWS
  996. account, for example, by creating new AWS Identity and Access Management (IAM) users.
  997. For those applications, you must explicitly acknowledge their capabilities by
  998. specifying this parameter.The only valid values are CAPABILITY_IAM, CAPABILITY_NAMED_IAM,
  999. CAPABILITY_RESOURCE_POLICY, and CAPABILITY_AUTO_EXPAND.The following resources require you to specify CAPABILITY_IAM or
  1000. CAPABILITY_NAMED_IAM:
  1001. AWS::IAM::Group,
  1002. AWS::IAM::InstanceProfile,
  1003. AWS::IAM::Policy, and
  1004. AWS::IAM::Role.
  1005. If the application contains IAM resources, you can specify either CAPABILITY_IAM
  1006. or CAPABILITY_NAMED_IAM. If the application contains IAM resources
  1007. with custom names, you must specify CAPABILITY_NAMED_IAM.The following resources require you to specify CAPABILITY_RESOURCE_POLICY:
  1008. AWS::Lambda::Permission,
  1009. AWS::IAM:Policy,
  1010. AWS::ApplicationAutoScaling::ScalingPolicy,
  1011. AWS::S3::BucketPolicy,
  1012. AWS::SQS::QueuePolicy, and
  1013. AWS::SNS::TopicPolicy.Applications that contain one or more nested applications require you to specify
  1014. CAPABILITY_AUTO_EXPAND.If your application template contains any of the above resources, we recommend that you review
  1015. all permissions associated with the application before deploying. If you don't specify
  1016. this parameter for an application that requires capabilities, the call will fail.
  1017. */
  1018. RequiredCapabilities: __listOfCapability;
  1019. /**
  1020. * Whether all of the AWS resources contained in this application are supported in the region
  1021. in which it is being retrieved.
  1022. */
  1023. ResourcesSupported: __boolean;
  1024. /**
  1025. * The semantic version of the application:
  1026. https://semver.org/
  1027. */
  1028. SemanticVersion: __string;
  1029. /**
  1030. * A link to the S3 object that contains the ZIP archive of the source code for this version of your application.Maximum size 50 MB
  1031. */
  1032. SourceCodeArchiveUrl?: __string;
  1033. /**
  1034. * A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
  1035. */
  1036. SourceCodeUrl?: __string;
  1037. /**
  1038. * A link to the packaged AWS SAM template of your application.
  1039. */
  1040. TemplateUrl: __string;
  1041. }
  1042. export interface VersionSummary {
  1043. /**
  1044. * The application Amazon Resource Name (ARN).
  1045. */
  1046. ApplicationId: __string;
  1047. /**
  1048. * The date and time this resource was created.
  1049. */
  1050. CreationTime: __string;
  1051. /**
  1052. * The semantic version of the application:
  1053. https://semver.org/
  1054. */
  1055. SemanticVersion: __string;
  1056. /**
  1057. * A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
  1058. */
  1059. SourceCodeUrl?: __string;
  1060. }
  1061. export type __boolean = boolean;
  1062. export type __integer = number;
  1063. export type __listOfApplicationDependencySummary = ApplicationDependencySummary[];
  1064. export type __listOfApplicationPolicyStatement = ApplicationPolicyStatement[];
  1065. export type __listOfApplicationSummary = ApplicationSummary[];
  1066. export type __listOfCapability = Capability[];
  1067. export type __listOfParameterDefinition = ParameterDefinition[];
  1068. export type __listOfParameterValue = ParameterValue[];
  1069. export type __listOfRollbackTrigger = RollbackTrigger[];
  1070. export type __listOfTag = Tag[];
  1071. export type __listOfVersionSummary = VersionSummary[];
  1072. export type __listOf__string = __string[];
  1073. export type __string = string;
  1074. /**
  1075. * 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.
  1076. */
  1077. export type apiVersion = "2017-09-08"|"latest"|string;
  1078. export interface ClientApiVersions {
  1079. /**
  1080. * 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.
  1081. */
  1082. apiVersion?: apiVersion;
  1083. }
  1084. export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
  1085. /**
  1086. * Contains interfaces for use with the ServerlessApplicationRepository client.
  1087. */
  1088. export import Types = ServerlessApplicationRepository;
  1089. }
  1090. export = ServerlessApplicationRepository;