cdk-docker-image-deployment 0.0.178 → 0.0.180

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.
Files changed (44) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +21 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.min.json +64 -7
  8. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +692 -153
  9. package/node_modules/aws-sdk/apis/comprehend-2017-11-27.paginators.json +15 -0
  10. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1275 -1272
  11. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +249 -215
  12. package/node_modules/aws-sdk/apis/kms-2014-11-01.examples.json +62 -2
  13. package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +282 -110
  14. package/node_modules/aws-sdk/apis/managedblockchain-2018-09-24.min.json +35 -29
  15. package/node_modules/aws-sdk/apis/omics-2022-11-28.min.json +142 -141
  16. package/node_modules/aws-sdk/apis/pi-2018-02-27.min.json +2 -1
  17. package/node_modules/aws-sdk/apis/pipes-2015-10-07.min.json +42 -42
  18. package/node_modules/aws-sdk/apis/pricing-2017-10-15.min.json +62 -0
  19. package/node_modules/aws-sdk/apis/pricing-2017-10-15.paginators.json +12 -3
  20. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.min.json +40 -0
  21. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.paginators.json +6 -0
  22. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +20 -14
  23. package/node_modules/aws-sdk/clients/codecatalyst.d.ts +59 -9
  24. package/node_modules/aws-sdk/clients/comprehend.d.ts +851 -52
  25. package/node_modules/aws-sdk/clients/ec2.d.ts +82 -77
  26. package/node_modules/aws-sdk/clients/iot.d.ts +40 -4
  27. package/node_modules/aws-sdk/clients/kms.d.ts +20 -20
  28. package/node_modules/aws-sdk/clients/lightsail.d.ts +241 -2
  29. package/node_modules/aws-sdk/clients/managedblockchain.d.ts +21 -13
  30. package/node_modules/aws-sdk/clients/migrationhubstrategy.d.ts +2 -2
  31. package/node_modules/aws-sdk/clients/omics.d.ts +33 -28
  32. package/node_modules/aws-sdk/clients/organizations.d.ts +10 -10
  33. package/node_modules/aws-sdk/clients/pi.d.ts +5 -0
  34. package/node_modules/aws-sdk/clients/pipes.d.ts +4 -5
  35. package/node_modules/aws-sdk/clients/pricing.d.ts +96 -1
  36. package/node_modules/aws-sdk/clients/s3outposts.d.ts +50 -0
  37. package/node_modules/aws-sdk/clients/sagemaker.d.ts +15 -14
  38. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  39. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -16
  40. package/node_modules/aws-sdk/dist/aws-sdk.js +2321 -1659
  41. package/node_modules/aws-sdk/dist/aws-sdk.min.js +81 -81
  42. package/node_modules/aws-sdk/lib/core.js +1 -1
  43. package/node_modules/aws-sdk/package.json +1 -1
  44. package/package.json +4 -4
@@ -446,19 +446,19 @@ declare class Omics extends Service {
446
446
  */
447
447
  startAnnotationImportJob(callback?: (err: AWSError, data: Omics.Types.StartAnnotationImportResponse) => void): Request<Omics.Types.StartAnnotationImportResponse, AWSError>;
448
448
  /**
449
- * Starts a read set activation job.
449
+ * Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read sets after 30 days.
450
450
  */
451
451
  startReadSetActivationJob(params: Omics.Types.StartReadSetActivationJobRequest, callback?: (err: AWSError, data: Omics.Types.StartReadSetActivationJobResponse) => void): Request<Omics.Types.StartReadSetActivationJobResponse, AWSError>;
452
452
  /**
453
- * Starts a read set activation job.
453
+ * Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read sets after 30 days.
454
454
  */
455
455
  startReadSetActivationJob(callback?: (err: AWSError, data: Omics.Types.StartReadSetActivationJobResponse) => void): Request<Omics.Types.StartReadSetActivationJobResponse, AWSError>;
456
456
  /**
457
- * Starts a read set export job.
457
+ * Exports a read set to Amazon S3.
458
458
  */
459
459
  startReadSetExportJob(params: Omics.Types.StartReadSetExportJobRequest, callback?: (err: AWSError, data: Omics.Types.StartReadSetExportJobResponse) => void): Request<Omics.Types.StartReadSetExportJobResponse, AWSError>;
460
460
  /**
461
- * Starts a read set export job.
461
+ * Exports a read set to Amazon S3.
462
462
  */
463
463
  startReadSetExportJob(callback?: (err: AWSError, data: Omics.Types.StartReadSetExportJobResponse) => void): Request<Omics.Types.StartReadSetExportJobResponse, AWSError>;
464
464
  /**
@@ -910,7 +910,7 @@ declare namespace Omics {
910
910
  */
911
911
  name: String;
912
912
  /**
913
- * The store's genome reference.
913
+ * The store's genome reference. Required for all stores except TSV format with generic annotations.
914
914
  */
915
915
  reference?: ReferenceItem;
916
916
  /**
@@ -980,7 +980,7 @@ declare namespace Omics {
980
980
  */
981
981
  maxCpus?: CreateRunGroupRequestMaxCpusInteger;
982
982
  /**
983
- * A max duration for the group.
983
+ * A maximum run time for the group in minutes.
984
984
  */
985
985
  maxDuration?: CreateRunGroupRequestMaxDurationInteger;
986
986
  /**
@@ -992,7 +992,7 @@ declare namespace Omics {
992
992
  */
993
993
  name?: RunGroupName;
994
994
  /**
995
- * A request ID for the group.
995
+ * To ensure that requests don't run multiple times, specify a unique ID for each request.
996
996
  */
997
997
  requestId: RunGroupRequestId;
998
998
  /**
@@ -1140,11 +1140,11 @@ declare namespace Omics {
1140
1140
  */
1141
1141
  parameterTemplate?: WorkflowParameterTemplate;
1142
1142
  /**
1143
- * A request ID for the workflow.
1143
+ * To ensure that requests don't run multiple times, specify a unique ID for each request.
1144
1144
  */
1145
1145
  requestId: WorkflowRequestId;
1146
1146
  /**
1147
- * A storage capacity for the workflow.
1147
+ * A storage capacity for the workflow in gigabytes.
1148
1148
  */
1149
1149
  storageCapacity?: CreateWorkflowRequestStorageCapacityInteger;
1150
1150
  /**
@@ -1490,7 +1490,7 @@ declare namespace Omics {
1490
1490
  */
1491
1491
  sequenceStoreId: SequenceStoreId;
1492
1492
  /**
1493
- * The job's sources.
1493
+ * The job's source files.
1494
1494
  */
1495
1495
  sources?: ActivateReadSetSourceList;
1496
1496
  /**
@@ -1578,7 +1578,7 @@ declare namespace Omics {
1578
1578
  */
1579
1579
  sequenceStoreId: SequenceStoreId;
1580
1580
  /**
1581
- * The job's sources.
1581
+ * The job's source files.
1582
1582
  */
1583
1583
  sources: ImportReadSetSourceList;
1584
1584
  /**
@@ -1711,7 +1711,7 @@ declare namespace Omics {
1711
1711
  */
1712
1712
  roleArn: RoleArn;
1713
1713
  /**
1714
- * The job's sources.
1714
+ * The job's source files.
1715
1715
  */
1716
1716
  sources: ImportReferenceSourceList;
1717
1717
  /**
@@ -1860,7 +1860,7 @@ declare namespace Omics {
1860
1860
  */
1861
1861
  maxCpus?: GetRunGroupResponseMaxCpusInteger;
1862
1862
  /**
1863
- * The group's maximum run duration.
1863
+ * The group's maximum run time in minutes.
1864
1864
  */
1865
1865
  maxDuration?: GetRunGroupResponseMaxDurationInteger;
1866
1866
  /**
@@ -1967,7 +1967,7 @@ declare namespace Omics {
1967
1967
  */
1968
1968
  stopTime?: RunTimestamp;
1969
1969
  /**
1970
- * The run's storage capacity.
1970
+ * The run's storage capacity in gigabytes.
1971
1971
  */
1972
1972
  storageCapacity?: GetRunResponseStorageCapacityInteger;
1973
1973
  /**
@@ -2009,7 +2009,7 @@ declare namespace Omics {
2009
2009
  */
2010
2010
  logStream?: TaskLogStream;
2011
2011
  /**
2012
- * The task's memory setting.
2012
+ * The task's memory use in gigabytes.
2013
2013
  */
2014
2014
  memory?: GetRunTaskResponseMemoryInteger;
2015
2015
  /**
@@ -2239,7 +2239,7 @@ declare namespace Omics {
2239
2239
  */
2240
2240
  statusMessage?: WorkflowStatusMessage;
2241
2241
  /**
2242
- * The workflow's storage capacity.
2242
+ * The workflow's storage capacity in gigabytes.
2243
2243
  */
2244
2244
  storageCapacity?: GetWorkflowResponseStorageCapacityInteger;
2245
2245
  /**
@@ -2410,7 +2410,7 @@ declare namespace Omics {
2410
2410
  tags?: TagMap;
2411
2411
  }
2412
2412
  export type ImportReferenceSourceList = ImportReferenceSourceItem[];
2413
- export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|string;
2413
+ export type JobStatus = "SUBMITTED"|"IN_PROGRESS"|"CANCELLED"|"COMPLETED"|"FAILED"|"COMPLETED_WITH_FAILURES"|string;
2414
2414
  export type JobStatusMessage = string;
2415
2415
  export type JobStatusMsg = string;
2416
2416
  export type LineSep = string;
@@ -3230,7 +3230,7 @@ declare namespace Omics {
3230
3230
  */
3231
3231
  maxCpus?: RunGroupListItemMaxCpusInteger;
3232
3232
  /**
3233
- * The group's maximum duration setting.
3233
+ * The group's maximum duration setting in minutes.
3234
3234
  */
3235
3235
  maxDuration?: RunGroupListItemMaxDurationInteger;
3236
3236
  /**
@@ -3315,6 +3315,7 @@ declare namespace Omics {
3315
3315
  export type S3Uri = string;
3316
3316
  export type SampleId = string;
3317
3317
  export type SchemaItem = {[key: string]: SchemaValueType};
3318
+ export type SchemaItemKeyString = string;
3318
3319
  export type SchemaValueType = "LONG"|"INT"|"STRING"|"FLOAT"|"DOUBLE"|"BOOLEAN"|string;
3319
3320
  export type Separator = string;
3320
3321
  export interface SequenceInformation {
@@ -3439,7 +3440,7 @@ declare namespace Omics {
3439
3440
  */
3440
3441
  sequenceStoreId: SequenceStoreId;
3441
3442
  /**
3442
- * The job's sources.
3443
+ * The job's source files.
3443
3444
  */
3444
3445
  sources: StartReadSetActivationJobRequestSourcesList;
3445
3446
  }
@@ -3486,7 +3487,7 @@ declare namespace Omics {
3486
3487
  */
3487
3488
  sequenceStoreId: SequenceStoreId;
3488
3489
  /**
3489
- * Sources for the job.
3490
+ * The job's source files.
3490
3491
  */
3491
3492
  sources: StartReadSetExportJobRequestSourcesList;
3492
3493
  }
@@ -3527,7 +3528,7 @@ declare namespace Omics {
3527
3528
  */
3528
3529
  sequenceStoreId: SequenceStoreId;
3529
3530
  /**
3530
- * Source files to import.
3531
+ * The job's source files.
3531
3532
  */
3532
3533
  sources: StartReadSetImportJobRequestSourcesList;
3533
3534
  }
@@ -3606,7 +3607,7 @@ declare namespace Omics {
3606
3607
  */
3607
3608
  roleArn: RoleArn;
3608
3609
  /**
3609
- * Sources for the job.
3610
+ * The job's source files.
3610
3611
  */
3611
3612
  sources: StartReferenceImportJobRequestSourcesList;
3612
3613
  }
@@ -3673,7 +3674,7 @@ declare namespace Omics {
3673
3674
  */
3674
3675
  priority?: StartRunRequestPriorityInteger;
3675
3676
  /**
3676
- * A request ID for the run.
3677
+ * To ensure that requests don't run multiple times, specify a unique ID for each request.
3677
3678
  */
3678
3679
  requestId: RunRequestId;
3679
3680
  /**
@@ -3689,7 +3690,7 @@ declare namespace Omics {
3689
3690
  */
3690
3691
  runId?: RunId;
3691
3692
  /**
3692
- * A storage capacity for the run.
3693
+ * A storage capacity for the run in gigabytes.
3693
3694
  */
3694
3695
  storageCapacity?: StartRunRequestStorageCapacityInteger;
3695
3696
  /**
@@ -3793,7 +3794,7 @@ declare namespace Omics {
3793
3794
  */
3794
3795
  creationTime?: TaskTimestamp;
3795
3796
  /**
3796
- * The task's memory.
3797
+ * The task's memory use in gigabyes.
3797
3798
  */
3798
3799
  memory?: TaskListItemMemoryInteger;
3799
3800
  /**
@@ -3916,7 +3917,7 @@ declare namespace Omics {
3916
3917
  */
3917
3918
  maxCpus?: UpdateRunGroupRequestMaxCpusInteger;
3918
3919
  /**
3919
- * The maximum amount of time to run.
3920
+ * A maximum run time for the group in minutes.
3920
3921
  */
3921
3922
  maxDuration?: UpdateRunGroupRequestMaxDurationInteger;
3922
3923
  /**
@@ -3995,6 +3996,10 @@ declare namespace Omics {
3995
3996
  * The source file's location in Amazon S3.
3996
3997
  */
3997
3998
  source: S3Uri;
3999
+ /**
4000
+ * A message that provides additional context about a job
4001
+ */
4002
+ statusMessage?: JobStatusMsg;
3998
4003
  }
3999
4004
  export type VariantImportItemDetails = VariantImportItemDetail[];
4000
4005
  export interface VariantImportItemSource {
@@ -4152,10 +4157,10 @@ declare namespace Omics {
4152
4157
  export type WorkflowParameterName = string;
4153
4158
  export type WorkflowParameterTemplate = {[key: string]: WorkflowParameter};
4154
4159
  export type WorkflowRequestId = string;
4155
- export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|string;
4160
+ export type WorkflowStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETED"|"FAILED"|"INACTIVE"|string;
4156
4161
  export type WorkflowStatusMessage = string;
4157
4162
  export type WorkflowTimestamp = Date;
4158
- export type WorkflowType = "PRIVATE"|string;
4163
+ export type WorkflowType = "PRIVATE"|"SERVICE"|string;
4159
4164
  /**
4160
4165
  * 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.
4161
4166
  */
@@ -36,11 +36,11 @@ declare class Organizations extends Service {
36
36
  */
37
37
  cancelHandshake(callback?: (err: AWSError, data: Organizations.Types.CancelHandshakeResponse) => void): Request<Organizations.Types.CancelHandshakeResponse, AWSError>;
38
38
  /**
39
- * Closes an Amazon Web Services member account within an organization. You can't close the management account with this API. This is an asynchronous request that Amazon Web Services performs in the background. Because CloseAccount operates asynchronously, it can return a successful completion message even though account closure might still be in progress. You need to wait a few minutes before the account is fully closed. To check the status of the request, do one of the following: Use the AccountId that you sent in the CloseAccount request to provide as a parameter to the DescribeAccount operation. While the close account request is in progress, Account status will indicate PENDING_CLOSURE. When the close account request completes, the status will change to SUSPENDED. Check the CloudTrail log for the CloseAccountResult event that gets published after the account closes successfully. For information on using CloudTrail with Organizations, see Logging and monitoring in Organizations in the Organizations User Guide. You can only close 10% of active member accounts within a rolling 30 day period. This quota is not bound by a calendar month, but starts when you close an account. Within 30 days of that initial account closure, you can't exceed the 10% account closure limit. To reinstate a closed account, contact Amazon Web Services Support within the 90-day grace period while the account is in SUSPENDED status. If the Amazon Web Services account you attempt to close is linked to an Amazon Web Services GovCloud (US) account, the CloseAccount request will close both accounts. To learn important pre-closure details, see Closing an Amazon Web Services GovCloud (US) account in the Amazon Web Services GovCloud User Guide. For more information about closing accounts, see Closing an Amazon Web Services account in the Organizations User Guide.
39
+ * Closes an Amazon Web Services member account within an organization. You can close an account when all features are enabled . You can't close the management account with this API. This is an asynchronous request that Amazon Web Services performs in the background. Because CloseAccount operates asynchronously, it can return a successful completion message even though account closure might still be in progress. You need to wait a few minutes before the account is fully closed. To check the status of the request, do one of the following: Use the AccountId that you sent in the CloseAccount request to provide as a parameter to the DescribeAccount operation. While the close account request is in progress, Account status will indicate PENDING_CLOSURE. When the close account request completes, the status will change to SUSPENDED. Check the CloudTrail log for the CloseAccountResult event that gets published after the account closes successfully. For information on using CloudTrail with Organizations, see Logging and monitoring in Organizations in the Organizations User Guide. You can close only 10% of member accounts, between 10 and 200, within a rolling 30 day period. This quota is not bound by a calendar month, but starts when you close an account. After you reach this limit, you can close additional accounts in the Billing console. For more information, see Closing an account in the Amazon Web Services Billing and Cost Management User Guide. To reinstate a closed account, contact Amazon Web Services Support within the 90-day grace period while the account is in SUSPENDED status. If the Amazon Web Services account you attempt to close is linked to an Amazon Web Services GovCloud (US) account, the CloseAccount request will close both accounts. To learn important pre-closure details, see Closing an Amazon Web Services GovCloud (US) account in the Amazon Web Services GovCloud User Guide. For more information about closing accounts, see Closing an Amazon Web Services account in the Organizations User Guide.
40
40
  */
41
41
  closeAccount(params: Organizations.Types.CloseAccountRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
42
42
  /**
43
- * Closes an Amazon Web Services member account within an organization. You can't close the management account with this API. This is an asynchronous request that Amazon Web Services performs in the background. Because CloseAccount operates asynchronously, it can return a successful completion message even though account closure might still be in progress. You need to wait a few minutes before the account is fully closed. To check the status of the request, do one of the following: Use the AccountId that you sent in the CloseAccount request to provide as a parameter to the DescribeAccount operation. While the close account request is in progress, Account status will indicate PENDING_CLOSURE. When the close account request completes, the status will change to SUSPENDED. Check the CloudTrail log for the CloseAccountResult event that gets published after the account closes successfully. For information on using CloudTrail with Organizations, see Logging and monitoring in Organizations in the Organizations User Guide. You can only close 10% of active member accounts within a rolling 30 day period. This quota is not bound by a calendar month, but starts when you close an account. Within 30 days of that initial account closure, you can't exceed the 10% account closure limit. To reinstate a closed account, contact Amazon Web Services Support within the 90-day grace period while the account is in SUSPENDED status. If the Amazon Web Services account you attempt to close is linked to an Amazon Web Services GovCloud (US) account, the CloseAccount request will close both accounts. To learn important pre-closure details, see Closing an Amazon Web Services GovCloud (US) account in the Amazon Web Services GovCloud User Guide. For more information about closing accounts, see Closing an Amazon Web Services account in the Organizations User Guide.
43
+ * Closes an Amazon Web Services member account within an organization. You can close an account when all features are enabled . You can't close the management account with this API. This is an asynchronous request that Amazon Web Services performs in the background. Because CloseAccount operates asynchronously, it can return a successful completion message even though account closure might still be in progress. You need to wait a few minutes before the account is fully closed. To check the status of the request, do one of the following: Use the AccountId that you sent in the CloseAccount request to provide as a parameter to the DescribeAccount operation. While the close account request is in progress, Account status will indicate PENDING_CLOSURE. When the close account request completes, the status will change to SUSPENDED. Check the CloudTrail log for the CloseAccountResult event that gets published after the account closes successfully. For information on using CloudTrail with Organizations, see Logging and monitoring in Organizations in the Organizations User Guide. You can close only 10% of member accounts, between 10 and 200, within a rolling 30 day period. This quota is not bound by a calendar month, but starts when you close an account. After you reach this limit, you can close additional accounts in the Billing console. For more information, see Closing an account in the Amazon Web Services Billing and Cost Management User Guide. To reinstate a closed account, contact Amazon Web Services Support within the 90-day grace period while the account is in SUSPENDED status. If the Amazon Web Services account you attempt to close is linked to an Amazon Web Services GovCloud (US) account, the CloseAccount request will close both accounts. To learn important pre-closure details, see Closing an Amazon Web Services GovCloud (US) account in the Amazon Web Services GovCloud User Guide. For more information about closing accounts, see Closing an Amazon Web Services account in the Organizations User Guide.
44
44
  */
45
45
  closeAccount(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
46
46
  /**
@@ -176,7 +176,7 @@ declare class Organizations extends Service {
176
176
  */
177
177
  describePolicy(callback?: (err: AWSError, data: Organizations.Types.DescribePolicyResponse) => void): Request<Organizations.Types.DescribePolicyResponse, AWSError>;
178
178
  /**
179
- * Retrieves information about a resource policy. You can only call this operation from the organization's management account or by a member account that is a delegated administrator for an AWS service.
179
+ * Retrieves information about a resource policy. You can only call this operation from the organization's management account or by a member account that is a delegated administrator for an Amazon Web Services service.
180
180
  */
181
181
  describeResourcePolicy(callback?: (err: AWSError, data: Organizations.Types.DescribeResourcePolicyResponse) => void): Request<Organizations.Types.DescribeResourcePolicyResponse, AWSError>;
182
182
  /**
@@ -544,7 +544,7 @@ declare namespace Organizations {
544
544
  */
545
545
  IamUserAccessToBilling?: IAMUserAccessToBilling;
546
546
  /**
547
- * A list of tags that you want to attach to the newly created account. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is invalid or if you exceed the maximum allowed number of tags for an account, then the entire request fails and the account is not created.
547
+ * A list of tags that you want to attach to the newly created account. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is not valid or if you exceed the maximum allowed number of tags for an account, then the entire request fails and the account is not created.
548
548
  */
549
549
  Tags?: Tags;
550
550
  }
@@ -610,7 +610,7 @@ declare namespace Organizations {
610
610
  */
611
611
  IamUserAccessToBilling?: IAMUserAccessToBilling;
612
612
  /**
613
- * A list of tags that you want to attach to the newly created account. These tags are attached to the commercial account associated with the GovCloud account, and not to the GovCloud account itself. To add tags to the actual GovCloud account, call the TagResource operation in the GovCloud region after the new GovCloud account exists. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is invalid or if you exceed the maximum allowed number of tags for an account, then the entire request fails and the account is not created.
613
+ * A list of tags that you want to attach to the newly created account. These tags are attached to the commercial account associated with the GovCloud account, and not to the GovCloud account itself. To add tags to the actual GovCloud account, call the TagResource operation in the GovCloud region after the new GovCloud account exists. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is not valid or if you exceed the maximum allowed number of tags for an account, then the entire request fails and the account is not created.
614
614
  */
615
615
  Tags?: Tags;
616
616
  }
@@ -639,7 +639,7 @@ declare namespace Organizations {
639
639
  */
640
640
  Name: OrganizationalUnitName;
641
641
  /**
642
- * A list of tags that you want to attach to the newly created OU. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is invalid or if you exceed the allowed number of tags for an OU, then the entire request fails and the OU is not created.
642
+ * A list of tags that you want to attach to the newly created OU. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is not valid or if you exceed the allowed number of tags for an OU, then the entire request fails and the OU is not created.
643
643
  */
644
644
  Tags?: Tags;
645
645
  }
@@ -667,7 +667,7 @@ declare namespace Organizations {
667
667
  */
668
668
  Type: PolicyType;
669
669
  /**
670
- * A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is invalid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.
670
+ * A list of tags that you want to attach to the newly created policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. If any one of the tags is not valid or if you exceed the allowed number of tags for a policy, then the entire request fails and the policy is not created.
671
671
  */
672
672
  Tags?: Tags;
673
673
  }
@@ -1029,7 +1029,7 @@ declare namespace Organizations {
1029
1029
  */
1030
1030
  Notes?: HandshakeNotes;
1031
1031
  /**
1032
- * A list of tags that you want to attach to the account when it becomes a member of the organization. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. Any tags in the request are checked for compliance with any applicable tag policies when the request is made. The request is rejected if the tags in the request don't match the requirements of the policy at that time. Tag policy compliance is not checked again when the invitation is accepted and the tags are actually attached to the account. That means that if the tag policy changes between the invitation and the acceptance, then that tags could potentially be non-compliant. If any one of the tags is invalid or if you exceed the allowed number of tags for an account, then the entire request fails and invitations are not sent.
1032
+ * A list of tags that you want to attach to the account when it becomes a member of the organization. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. Any tags in the request are checked for compliance with any applicable tag policies when the request is made. The request is rejected if the tags in the request don't match the requirements of the policy at that time. Tag policy compliance is not checked again when the invitation is accepted and the tags are actually attached to the account. That means that if the tag policy changes between the invitation and the acceptance, then that tags could potentially be non-compliant. If any one of the tags is not valid or if you exceed the allowed number of tags for an account, then the entire request fails and invitations are not sent.
1033
1033
  */
1034
1034
  Tags?: Tags;
1035
1035
  }
@@ -1576,7 +1576,7 @@ declare namespace Organizations {
1576
1576
  */
1577
1577
  Content: ResourcePolicyContent;
1578
1578
  /**
1579
- * Updates the list of tags that you want to attach to the newly-created resource policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. Calls with tags apply to the initial creation of the resource policy, otherwise an exception is thrown. If any one of the tags is invalid or if you exceed the allowed number of tags for the resource policy, then the entire request fails and the resource policy is not created.
1579
+ * A list of tags that you want to attach to the newly created resource policy. For each tag in the list, you must specify both a tag key and a value. You can set the value to an empty string, but you can't set it to null. For more information about tagging, see Tagging Organizations resources in the Organizations User Guide. Calls with tags apply to the initial creation of the resource policy, otherwise an exception is thrown. If any one of the tags is not valid or if you exceed the allowed number of tags for the resource policy, then the entire request fails and the resource policy is not created.
1580
1580
  */
1581
1581
  Tags?: Tags;
1582
1582
  }
@@ -1667,7 +1667,7 @@ declare namespace Organizations {
1667
1667
  */
1668
1668
  ResourceId: TaggableResourceId;
1669
1669
  /**
1670
- * A list of tags to add to the specified resource. For each tag in the list, you must specify both a tag key and a value. The value can be an empty string, but you can't set it to null. If any one of the tags is invalid or if you exceed the maximum allowed number of tags for a resource, then the entire request fails.
1670
+ * A list of tags to add to the specified resource. For each tag in the list, you must specify both a tag key and a value. The value can be an empty string, but you can't set it to null. If any one of the tags is not valid or if you exceed the maximum allowed number of tags for a resource, then the entire request fails.
1671
1671
  */
1672
1672
  Tags: Tags;
1673
1673
  }
@@ -306,6 +306,10 @@ declare namespace PI {
306
306
  * An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords.
307
307
  */
308
308
  NextToken?: NextToken;
309
+ /**
310
+ * The returned timestamp which is the start or end time of the time periods. The default value is END_TIME.
311
+ */
312
+ PeriodAlignment?: PeriodAlignment;
309
313
  }
310
314
  export interface GetResourceMetricsResponse {
311
315
  /**
@@ -439,6 +443,7 @@ declare namespace PI {
439
443
  export type MetricTypeList = RequestString[];
440
444
  export type MetricValuesList = Double[];
441
445
  export type NextToken = string;
446
+ export type PeriodAlignment = "END_TIME"|"START_TIME"|string;
442
447
  export type RequestString = string;
443
448
  export type RequestStringList = RequestString[];
444
449
  export type RequestedDimensionList = RequestString[];
@@ -84,11 +84,11 @@ declare class Pipes extends Service {
84
84
  */
85
85
  untagResource(callback?: (err: AWSError, data: Pipes.Types.UntagResourceResponse) => void): Request<Pipes.Types.UntagResourceResponse, AWSError>;
86
86
  /**
87
- * Update an existing pipe. When you call UpdatePipe, only the fields that are included in the request are changed, the rest are unchanged. The exception to this is if you modify any Amazon Web Services-service specific fields in the SourceParameters, EnrichmentParameters, or TargetParameters objects. The fields in these objects are updated atomically as one and override existing values. This is by design and means that if you don't specify an optional field in one of these Parameters objects, that field will be set to its system-default value after the update. &lt;p&gt;For more information about pipes, see &lt;a href=&quot;https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html&quot;&gt; Amazon EventBridge Pipes&lt;/a&gt; in the Amazon EventBridge User Guide.&lt;/p&gt;
87
+ * Update an existing pipe. When you call UpdatePipe, only the fields that are included in the request are changed, the rest are unchanged. The exception to this is if you modify any Amazon Web Services-service specific fields in the SourceParameters, EnrichmentParameters, or TargetParameters objects. The fields in these objects are updated atomically as one and override existing values. This is by design and means that if you don't specify an optional field in one of these Parameters objects, that field will be set to its system-default value after the update. For more information about pipes, see Amazon EventBridge Pipes in the Amazon EventBridge User Guide.
88
88
  */
89
89
  updatePipe(params: Pipes.Types.UpdatePipeRequest, callback?: (err: AWSError, data: Pipes.Types.UpdatePipeResponse) => void): Request<Pipes.Types.UpdatePipeResponse, AWSError>;
90
90
  /**
91
- * Update an existing pipe. When you call UpdatePipe, only the fields that are included in the request are changed, the rest are unchanged. The exception to this is if you modify any Amazon Web Services-service specific fields in the SourceParameters, EnrichmentParameters, or TargetParameters objects. The fields in these objects are updated atomically as one and override existing values. This is by design and means that if you don't specify an optional field in one of these Parameters objects, that field will be set to its system-default value after the update. &lt;p&gt;For more information about pipes, see &lt;a href=&quot;https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html&quot;&gt; Amazon EventBridge Pipes&lt;/a&gt; in the Amazon EventBridge User Guide.&lt;/p&gt;
91
+ * Update an existing pipe. When you call UpdatePipe, only the fields that are included in the request are changed, the rest are unchanged. The exception to this is if you modify any Amazon Web Services-service specific fields in the SourceParameters, EnrichmentParameters, or TargetParameters objects. The fields in these objects are updated atomically as one and override existing values. This is by design and means that if you don't specify an optional field in one of these Parameters objects, that field will be set to its system-default value after the update. For more information about pipes, see Amazon EventBridge Pipes in the Amazon EventBridge User Guide.
92
92
  */
93
93
  updatePipe(callback?: (err: AWSError, data: Pipes.Types.UpdatePipeResponse) => void): Request<Pipes.Types.UpdatePipeResponse, AWSError>;
94
94
  }
@@ -533,7 +533,6 @@ declare namespace Pipes {
533
533
  export type LaunchType = "EC2"|"FARGATE"|"EXTERNAL"|string;
534
534
  export type LimitMax10 = number;
535
535
  export type LimitMax100 = number;
536
- export type LimitMax1000 = number;
537
536
  export type LimitMax10000 = number;
538
537
  export type LimitMin1 = number;
539
538
  export interface ListPipesRequest {
@@ -715,7 +714,7 @@ declare namespace Pipes {
715
714
  /**
716
715
  * The maximum number of records to include in each batch.
717
716
  */
718
- BatchSize?: LimitMax1000;
717
+ BatchSize?: LimitMax10000;
719
718
  /**
720
719
  * Define the target queue to send dead-letter queue events to.
721
720
  */
@@ -1443,7 +1442,7 @@ declare namespace Pipes {
1443
1442
  /**
1444
1443
  * The maximum number of records to include in each batch.
1445
1444
  */
1446
- BatchSize?: LimitMax1000;
1445
+ BatchSize?: LimitMax10000;
1447
1446
  /**
1448
1447
  * Define the target queue to send dead-letter queue events to.
1449
1448
  */
@@ -27,6 +27,14 @@ declare class Pricing extends Service {
27
27
  * Returns a list of attribute values. Attributes are similar to the details in a Price List API offer file. For a list of available attributes, see Offer File Definitions in the Billing and Cost Management User Guide.
28
28
  */
29
29
  getAttributeValues(callback?: (err: AWSError, data: Pricing.Types.GetAttributeValuesResponse) => void): Request<Pricing.Types.GetAttributeValuesResponse, AWSError>;
30
+ /**
31
+ * This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the ListPriceLists response.
32
+ */
33
+ getPriceListFileUrl(params: Pricing.Types.GetPriceListFileUrlRequest, callback?: (err: AWSError, data: Pricing.Types.GetPriceListFileUrlResponse) => void): Request<Pricing.Types.GetPriceListFileUrlResponse, AWSError>;
34
+ /**
35
+ * This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns the URL that you can retrieve your Price List file from. This URL is based on the PriceListArn and FileFormat that you retrieve from the ListPriceLists response.
36
+ */
37
+ getPriceListFileUrl(callback?: (err: AWSError, data: Pricing.Types.GetPriceListFileUrlResponse) => void): Request<Pricing.Types.GetPriceListFileUrlResponse, AWSError>;
30
38
  /**
31
39
  * Returns a list of all products that match the filter criteria.
32
40
  */
@@ -35,6 +43,14 @@ declare class Pricing extends Service {
35
43
  * Returns a list of all products that match the filter criteria.
36
44
  */
37
45
  getProducts(callback?: (err: AWSError, data: Pricing.Types.GetProductsResponse) => void): Request<Pricing.Types.GetProductsResponse, AWSError>;
46
+ /**
47
+ * This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns a list of Price List references that the requester if authorized to view, given a ServiceCode, CurrencyCode, and an EffectiveDate. Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the GetPriceListFileUrl API.
48
+ */
49
+ listPriceLists(params: Pricing.Types.ListPriceListsRequest, callback?: (err: AWSError, data: Pricing.Types.ListPriceListsResponse) => void): Request<Pricing.Types.ListPriceListsResponse, AWSError>;
50
+ /**
51
+ * This feature is in preview release and is subject to change. Your use of Amazon Web Services Price List API is subject to the Beta Service Participation terms of the Amazon Web Services Service Terms (Section 1.10). This returns a list of Price List references that the requester if authorized to view, given a ServiceCode, CurrencyCode, and an EffectiveDate. Use without a RegionCode filter to list Price List references from all available Amazon Web Services Regions. Use with a RegionCode filter to get the Price List reference that's specific to a specific Amazon Web Services Region. You can use the PriceListArn from the response to get your preferred Price List files through the GetPriceListFileUrl API.
52
+ */
53
+ listPriceLists(callback?: (err: AWSError, data: Pricing.Types.ListPriceListsResponse) => void): Request<Pricing.Types.ListPriceListsResponse, AWSError>;
38
54
  }
39
55
  declare namespace Pricing {
40
56
  export type AttributeNameList = String[];
@@ -46,6 +62,7 @@ declare namespace Pricing {
46
62
  }
47
63
  export type AttributeValueList = AttributeValue[];
48
64
  export type BoxedInteger = number;
65
+ export type CurrencyCode = string;
49
66
  export interface DescribeServicesRequest {
50
67
  /**
51
68
  * The code for the service whose information you want to retrieve, such as AmazonEC2. You can use the ServiceCode to filter the results in a GetProducts call. To retrieve a list of all services, leave this blank.
@@ -78,6 +95,9 @@ declare namespace Pricing {
78
95
  */
79
96
  NextToken?: String;
80
97
  }
98
+ export type EffectiveDate = Date;
99
+ export type FileFormat = string;
100
+ export type FileFormats = FileFormat[];
81
101
  export interface Filter {
82
102
  /**
83
103
  * The type of filter that you want to use. Valid values are: TERM_MATCH. TERM_MATCH returns only products that match both the given filter field and the given value.
@@ -88,7 +108,7 @@ declare namespace Pricing {
88
108
  */
89
109
  Field: String;
90
110
  /**
91
- * The service code or attribute value that you want to filter by. If you are filtering by service code this is the actual service code, such as AmazonEC2. If you are filtering by attribute name, this is the attribute value that you want the returned products to match, such as a Provisioned IOPS volume.
111
+ * The service code or attribute value that you want to filter by. If you're filtering by service code this is the actual service code, such as AmazonEC2. If you're filtering by attribute name, this is the attribute value that you want the returned products to match, such as a Provisioned IOPS volume.
92
112
  */
93
113
  Value: String;
94
114
  }
@@ -122,6 +142,22 @@ declare namespace Pricing {
122
142
  */
123
143
  NextToken?: String;
124
144
  }
145
+ export interface GetPriceListFileUrlRequest {
146
+ /**
147
+ * The unique identifier that maps to where your Price List files are located. PriceListArn can be obtained from the ListPriceLists response.
148
+ */
149
+ PriceListArn: PriceListArn;
150
+ /**
151
+ * The format that you want to retrieve your Price List files in. The FileFormat can be obtained from the ListPriceLists response.
152
+ */
153
+ FileFormat: FileFormat;
154
+ }
155
+ export interface GetPriceListFileUrlResponse {
156
+ /**
157
+ * The URL to download your Price List file from.
158
+ */
159
+ Url?: String;
160
+ }
125
161
  export interface GetProductsRequest {
126
162
  /**
127
163
  * The code for the service whose products you want to retrieve.
@@ -158,8 +194,66 @@ declare namespace Pricing {
158
194
  */
159
195
  NextToken?: String;
160
196
  }
197
+ export interface ListPriceListsRequest {
198
+ /**
199
+ * The service code or the Savings Plan service code for the attributes that you want to retrieve. For example, to get the list of applicable Amazon EC2 price lists, use AmazonEC2. For a full list of service codes containing On-Demand and Reserved Instance (RI) pricing, use the DescribeServices API. To retrieve the Compute Savings Plan price lists, use ComputeSavingsPlans. To retrieve Machine Learning Savings Plans price lists, use MachineLearningSavingsPlans.
200
+ */
201
+ ServiceCode: ServiceCode;
202
+ /**
203
+ * The date that the Price List file prices are effective from.
204
+ */
205
+ EffectiveDate: EffectiveDate;
206
+ /**
207
+ * This is used to filter the Price List by Amazon Web Services Region. For example, to get the price list only for the US East (N. Virginia) Region, use us-east-1. If nothing is specified, you retrieve price lists for all applicable Regions. The available RegionCode list can be retrieved from GetAttributeValues API.
208
+ */
209
+ RegionCode?: RegionCode;
210
+ /**
211
+ * The three alphabetical character ISO-4217 currency code that the Price List files are denominated in.
212
+ */
213
+ CurrencyCode: CurrencyCode;
214
+ /**
215
+ * The pagination token that indicates the next set of results that you want to retrieve.
216
+ */
217
+ NextToken?: String;
218
+ /**
219
+ * The maximum number of results to return in the response.
220
+ */
221
+ MaxResults?: MaxResults;
222
+ }
223
+ export interface ListPriceListsResponse {
224
+ /**
225
+ * The type of price list references that match your request.
226
+ */
227
+ PriceLists?: PriceLists;
228
+ /**
229
+ * The pagination token that indicates the next set of results to retrieve.
230
+ */
231
+ NextToken?: String;
232
+ }
233
+ export type MaxResults = number;
234
+ export interface PriceList {
235
+ /**
236
+ * The unique identifier that maps to where your Price List files are located. PriceListArn can be obtained from the ListPriceList response.
237
+ */
238
+ PriceListArn?: PriceListArn;
239
+ /**
240
+ * This is used to filter the Price List by Amazon Web Services Region. For example, to get the price list only for the US East (N. Virginia) Region, use us-east-1. If nothing is specified, you retrieve price lists for all applicable Regions. The available RegionCode list can be retrieved from GetAttributeValues API.
241
+ */
242
+ RegionCode?: RegionCode;
243
+ /**
244
+ * The three alphabetical character ISO-4217 currency code the Price List files are denominated in.
245
+ */
246
+ CurrencyCode?: CurrencyCode;
247
+ /**
248
+ * The format you want to retrieve your Price List files. The FileFormat can be obtained from the ListPriceList response.
249
+ */
250
+ FileFormats?: FileFormats;
251
+ }
252
+ export type PriceListArn = string;
161
253
  export type PriceListJsonItem = string;
162
254
  export type PriceListJsonItems = PriceListJsonItem[];
255
+ export type PriceLists = PriceList[];
256
+ export type RegionCode = string;
163
257
  export interface Service {
164
258
  /**
165
259
  * The code for the Amazon Web Services service.
@@ -170,6 +264,7 @@ declare namespace Pricing {
170
264
  */
171
265
  AttributeNames?: AttributeNameList;
172
266
  }
267
+ export type ServiceCode = string;
173
268
  export type ServiceList = Service[];
174
269
  export type String = string;
175
270
  /**
@@ -35,6 +35,14 @@ declare class S3Outposts extends Service {
35
35
  * Lists endpoints associated with the specified Outpost. Related actions include: CreateEndpoint DeleteEndpoint
36
36
  */
37
37
  listEndpoints(callback?: (err: AWSError, data: S3Outposts.Types.ListEndpointsResult) => void): Request<S3Outposts.Types.ListEndpointsResult, AWSError>;
38
+ /**
39
+ * Lists the Outposts with S3 on Outposts capacity for your Amazon Web Services account. Includes S3 on Outposts that you have access to as the Outposts owner, or as a shared user from Resource Access Manager (RAM).
40
+ */
41
+ listOutpostsWithS3(params: S3Outposts.Types.ListOutpostsWithS3Request, callback?: (err: AWSError, data: S3Outposts.Types.ListOutpostsWithS3Result) => void): Request<S3Outposts.Types.ListOutpostsWithS3Result, AWSError>;
42
+ /**
43
+ * Lists the Outposts with S3 on Outposts capacity for your Amazon Web Services account. Includes S3 on Outposts that you have access to as the Outposts owner, or as a shared user from Resource Access Manager (RAM).
44
+ */
45
+ listOutpostsWithS3(callback?: (err: AWSError, data: S3Outposts.Types.ListOutpostsWithS3Result) => void): Request<S3Outposts.Types.ListOutpostsWithS3Result, AWSError>;
38
46
  /**
39
47
  * Lists all endpoints associated with an Outpost that has been shared by Amazon Web Services Resource Access Manager (RAM). Related actions include: CreateEndpoint DeleteEndpoint
40
48
  */
@@ -45,6 +53,8 @@ declare class S3Outposts extends Service {
45
53
  listSharedEndpoints(callback?: (err: AWSError, data: S3Outposts.Types.ListSharedEndpointsResult) => void): Request<S3Outposts.Types.ListSharedEndpointsResult, AWSError>;
46
54
  }
47
55
  declare namespace S3Outposts {
56
+ export type AwsAccountId = string;
57
+ export type CapacityInBytes = number;
48
58
  export type CidrBlock = string;
49
59
  export interface CreateEndpointRequest {
50
60
  /**
@@ -157,6 +167,26 @@ declare namespace S3Outposts {
157
167
  */
158
168
  NextToken?: NextToken;
159
169
  }
170
+ export interface ListOutpostsWithS3Request {
171
+ /**
172
+ * When you can get additional results from the ListOutpostsWithS3 call, a NextToken parameter is returned in the output. You can then pass in a subsequent command to the NextToken parameter to continue listing additional Outposts.
173
+ */
174
+ NextToken?: NextToken;
175
+ /**
176
+ * The maximum number of Outposts to return. The limit is 100.
177
+ */
178
+ MaxResults?: MaxResults;
179
+ }
180
+ export interface ListOutpostsWithS3Result {
181
+ /**
182
+ * Returns the list of Outposts that have the following characteristics: outposts that have S3 provisioned outposts that are Active (not pending any provisioning nor decommissioned) outposts to which the the calling Amazon Web Services account has access
183
+ */
184
+ Outposts?: Outposts;
185
+ /**
186
+ * Returns a token that you can use to call ListOutpostsWithS3 again and receive additional results, if there are any.
187
+ */
188
+ NextToken?: NextToken;
189
+ }
160
190
  export interface ListSharedEndpointsRequest {
161
191
  /**
162
192
  * If a previous response from this operation included a NextToken value, you can provide that value here to retrieve the next page of results.
@@ -191,7 +221,27 @@ declare namespace S3Outposts {
191
221
  export type NetworkInterfaceId = string;
192
222
  export type NetworkInterfaces = NetworkInterface[];
193
223
  export type NextToken = string;
224
+ export interface Outpost {
225
+ /**
226
+ * Specifies the unique Amazon Resource Name (ARN) for the outpost.
227
+ */
228
+ OutpostArn?: OutpostArn;
229
+ /**
230
+ * Specifies the unique identifier for the outpost.
231
+ */
232
+ OutpostId?: OutpostId;
233
+ /**
234
+ * Returns the Amazon Web Services account ID of the outpost owner. Useful for comparing owned versus shared outposts.
235
+ */
236
+ OwnerId?: AwsAccountId;
237
+ /**
238
+ * The Amazon S3 capacity of the outpost in bytes.
239
+ */
240
+ CapacityInBytes?: CapacityInBytes;
241
+ }
242
+ export type OutpostArn = string;
194
243
  export type OutpostId = string;
244
+ export type Outposts = Outpost[];
195
245
  export type SecurityGroupId = string;
196
246
  export type SubnetId = string;
197
247
  export type VpcId = string;