cdk-docker-image-deployment 0.0.179 → 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 (31) 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 +14 -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/iot-2015-05-28.min.json +249 -215
  9. package/node_modules/aws-sdk/apis/pi-2018-02-27.min.json +2 -1
  10. package/node_modules/aws-sdk/apis/pipes-2015-10-07.min.json +42 -42
  11. package/node_modules/aws-sdk/apis/pricing-2017-10-15.min.json +62 -0
  12. package/node_modules/aws-sdk/apis/pricing-2017-10-15.paginators.json +12 -3
  13. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.min.json +40 -0
  14. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.paginators.json +6 -0
  15. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +20 -14
  16. package/node_modules/aws-sdk/clients/codecatalyst.d.ts +59 -9
  17. package/node_modules/aws-sdk/clients/iot.d.ts +40 -4
  18. package/node_modules/aws-sdk/clients/migrationhubstrategy.d.ts +2 -2
  19. package/node_modules/aws-sdk/clients/organizations.d.ts +10 -10
  20. package/node_modules/aws-sdk/clients/pi.d.ts +5 -0
  21. package/node_modules/aws-sdk/clients/pipes.d.ts +4 -5
  22. package/node_modules/aws-sdk/clients/pricing.d.ts +96 -1
  23. package/node_modules/aws-sdk/clients/s3outposts.d.ts +50 -0
  24. package/node_modules/aws-sdk/clients/sagemaker.d.ts +15 -14
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +326 -221
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +47 -47
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/package.json +4 -4
@@ -164,11 +164,11 @@ declare class Iot extends Service {
164
164
  */
165
165
  createBillingGroup(callback?: (err: AWSError, data: Iot.Types.CreateBillingGroupResponse) => void): Request<Iot.Types.CreateBillingGroupResponse, AWSError>;
166
166
  /**
167
- * Creates an X.509 certificate using the specified certificate signing request. Note: The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or NIST P-512 curves. For supported certificates, consult Certificate signing algorithms supported by IoT. Note: Reusing the same certificate signing request (CSR) results in a distinct certificate. Requires permission to access the CreateCertificateFromCsr action. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. Assuming a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR. The aws iot create-certificate-from-csr part of the command can also be run in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: &gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
167
+ * Creates an X.509 certificate using the specified certificate signing request. Requires permission to access the CreateCertificateFromCsr action. The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-25 or NIST P-384 curves. For supported certificates, consult Certificate signing algorithms supported by IoT. Reusing the same certificate signing request (CSR) results in a distinct certificate. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. In the following commands, we assume that a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR. You can also run the aws iot create-certificate-from-csr part of the command in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: &gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
168
168
  */
169
169
  createCertificateFromCsr(params: Iot.Types.CreateCertificateFromCsrRequest, callback?: (err: AWSError, data: Iot.Types.CreateCertificateFromCsrResponse) => void): Request<Iot.Types.CreateCertificateFromCsrResponse, AWSError>;
170
170
  /**
171
- * Creates an X.509 certificate using the specified certificate signing request. Note: The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-256, NIST P-384, or NIST P-512 curves. For supported certificates, consult Certificate signing algorithms supported by IoT. Note: Reusing the same certificate signing request (CSR) results in a distinct certificate. Requires permission to access the CreateCertificateFromCsr action. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. Assuming a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR. The aws iot create-certificate-from-csr part of the command can also be run in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: &gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
171
+ * Creates an X.509 certificate using the specified certificate signing request. Requires permission to access the CreateCertificateFromCsr action. The CSR must include a public key that is either an RSA key with a length of at least 2048 bits or an ECC key from NIST P-25 or NIST P-384 curves. For supported certificates, consult Certificate signing algorithms supported by IoT. Reusing the same certificate signing request (CSR) results in a distinct certificate. You can create multiple certificates in a batch by creating a directory, copying multiple .csr files into that directory, and then specifying that directory on the command line. The following commands show how to create a batch of certificates given a batch of CSRs. In the following commands, we assume that a set of CSRs are located inside of the directory my-csr-directory: On Linux and OS X, the command is: $ ls my-csr-directory/ | xargs -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} This command lists all of the CSRs in my-csr-directory and pipes each CSR file name to the aws iot create-certificate-from-csr Amazon Web Services CLI command to create a certificate for the corresponding CSR. You can also run the aws iot create-certificate-from-csr part of the command in parallel to speed up the certificate creation process: $ ls my-csr-directory/ | xargs -P 10 -I {} aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/{} On Windows PowerShell, the command to create certificates for all CSRs in my-csr-directory is: &gt; ls -Name my-csr-directory | %{aws iot create-certificate-from-csr --certificate-signing-request file://my-csr-directory/$_} On a Windows command prompt, the command to create certificates for all CSRs in my-csr-directory is: &gt; forfiles /p my-csr-directory /c "cmd /c aws iot create-certificate-from-csr --certificate-signing-request file://@path"
172
172
  */
173
173
  createCertificateFromCsr(callback?: (err: AWSError, data: Iot.Types.CreateCertificateFromCsrResponse) => void): Request<Iot.Types.CreateCertificateFromCsrResponse, AWSError>;
174
174
  /**
@@ -3682,6 +3682,10 @@ declare namespace Iot {
3682
3682
  * Allows you to create the criteria to retry a job.
3683
3683
  */
3684
3684
  jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
3685
+ /**
3686
+ * Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.
3687
+ */
3688
+ maintenanceWindows?: MaintenanceWindows;
3685
3689
  }
3686
3690
  export interface CreateJobTemplateResponse {
3687
3691
  /**
@@ -4250,6 +4254,7 @@ declare namespace Iot {
4250
4254
  export type CreatedAtDate = Date;
4251
4255
  export type CreationDate = Date;
4252
4256
  export type CredentialDurationSeconds = number;
4257
+ export type CronExpression = string;
4253
4258
  export interface CustomCodeSigning {
4254
4259
  /**
4255
4260
  * The signature for the file.
@@ -5097,6 +5102,10 @@ declare namespace Iot {
5097
5102
  * The configuration that determines how many retries are allowed for each failure type for a job.
5098
5103
  */
5099
5104
  jobExecutionsRetryConfig?: JobExecutionsRetryConfig;
5105
+ /**
5106
+ * Allows you to configure an optional maintenance window for the rollout of a job document to all devices in the target group for a job.
5107
+ */
5108
+ maintenanceWindows?: MaintenanceWindows;
5100
5109
  }
5101
5110
  export interface DescribeManagedJobTemplateRequest {
5102
5111
  /**
@@ -5763,6 +5772,7 @@ declare namespace Iot {
5763
5772
  export type DomainConfigurations = DomainConfigurationSummary[];
5764
5773
  export type DomainName = string;
5765
5774
  export type DomainType = "ENDPOINT"|"AWS_MANAGED"|"CUSTOMER_MANAGED"|string;
5775
+ export type DurationInMinutes = number;
5766
5776
  export type DurationSeconds = number;
5767
5777
  export type DynamicGroupStatus = "ACTIVE"|"BUILDING"|"REBUILDING"|string;
5768
5778
  export interface DynamoDBAction {
@@ -6593,6 +6603,10 @@ declare namespace Iot {
6593
6603
  * The configuration that allows you to schedule a job for a future date and time in addition to specifying the end behavior for each job execution.
6594
6604
  */
6595
6605
  schedulingConfig?: SchedulingConfig;
6606
+ /**
6607
+ * Displays the next seven maintenance window occurrences and their start times.
6608
+ */
6609
+ scheduledJobRollouts?: ScheduledJobRolloutList;
6596
6610
  }
6597
6611
  export type JobArn = string;
6598
6612
  export type JobDescription = string;
@@ -8514,6 +8528,17 @@ declare namespace Iot {
8514
8528
  */
8515
8529
  confidenceLevel: ConfidenceLevel;
8516
8530
  }
8531
+ export interface MaintenanceWindow {
8532
+ /**
8533
+ * Displays the start time of the next maintenance window.
8534
+ */
8535
+ startTime: CronExpression;
8536
+ /**
8537
+ * Displays the duration of the next maintenance window.
8538
+ */
8539
+ durationInMinutes: DurationInMinutes;
8540
+ }
8541
+ export type MaintenanceWindows = MaintenanceWindow[];
8517
8542
  export type ManagedJobTemplateName = string;
8518
8543
  export interface ManagedJobTemplateSummary {
8519
8544
  /**
@@ -9558,19 +9583,30 @@ declare namespace Iot {
9558
9583
  }
9559
9584
  export type ScheduledAuditMetadataList = ScheduledAuditMetadata[];
9560
9585
  export type ScheduledAuditName = string;
9586
+ export interface ScheduledJobRollout {
9587
+ /**
9588
+ * Displays the start times of the next seven maintenance window occurrences.
9589
+ */
9590
+ startTime?: StringDateTime;
9591
+ }
9592
+ export type ScheduledJobRolloutList = ScheduledJobRollout[];
9561
9593
  export interface SchedulingConfig {
9562
9594
  /**
9563
- * The time a job will begin rollout of the job document to all devices in the target group for a job. The startTime can be scheduled up to a year in advance and must be scheduled a minimum of thirty minutes from the current time.
9595
+ * The time a job will begin rollout of the job document to all devices in the target group for a job. The startTime can be scheduled up to a year in advance and must be scheduled a minimum of thirty minutes from the current time. The date and time format for the startTime is YYYY-MM-DD for the date and HH:MM for the time.
9564
9596
  */
9565
9597
  startTime?: StringDateTime;
9566
9598
  /**
9567
- * The time a job will stop rollout of the job document to all devices in the target group for a job. The endTime must take place no later than two years from the current time and be scheduled a minimum of thirty minutes from the current time. The minimum duration between startTime and endTime is thirty minutes. The maximum duration between startTime and endTime is two years.
9599
+ * The time a job will stop rollout of the job document to all devices in the target group for a job. The endTime must take place no later than two years from the current time and be scheduled a minimum of thirty minutes from the current time. The minimum duration between startTime and endTime is thirty minutes. The maximum duration between startTime and endTime is two years. The date and time format for the endTime is YYYY-MM-DD for the date and HH:MM for the time.
9568
9600
  */
9569
9601
  endTime?: StringDateTime;
9570
9602
  /**
9571
9603
  * Specifies the end behavior for all job executions after a job reaches the selected endTime. If endTime is not selected when creating the job, then endBehavior does not apply.
9572
9604
  */
9573
9605
  endBehavior?: JobEndBehavior;
9606
+ /**
9607
+ * An optional configuration within the SchedulingConfig to setup a recurring maintenance window with a predetermined start time and duration for the rollout of a job document to all devices in a target group for a job.
9608
+ */
9609
+ maintenanceWindows?: MaintenanceWindows;
9574
9610
  }
9575
9611
  export interface SearchIndexRequest {
9576
9612
  /**
@@ -534,7 +534,7 @@ declare namespace MigrationHubStrategy {
534
534
  */
535
535
  success?: Integer;
536
536
  }
537
- export type DataSourceType = "ApplicationDiscoveryService"|"MPA"|string;
537
+ export type DataSourceType = "ApplicationDiscoveryService"|"MPA"|"Import"|string;
538
538
  export interface DatabaseConfigDetail {
539
539
  /**
540
540
  * AWS Secrets Manager key that holds the credentials that you use to connect to a database.
@@ -777,7 +777,7 @@ declare namespace MigrationHubStrategy {
777
777
  value?: String;
778
778
  }
779
779
  export type GroupIds = Group[];
780
- export type GroupName = "ExternalId"|string;
780
+ export type GroupName = "ExternalId"|"ExternalSourceType"|string;
781
781
  export interface Heterogeneous {
782
782
  /**
783
783
  * The target database engine for heterogeneous database migration preference.
@@ -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;