cdk-docker-image-deployment 0.0.67 → 0.0.69

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 (39) hide show
  1. package/.jsii +4 -4
  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/connect-2017-08-08.min.json +68 -65
  8. package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +20 -8
  9. package/node_modules/aws-sdk/apis/ecs-2014-11-13.examples.json +123 -0
  10. package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +76 -3
  11. package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +457 -137
  12. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.min.json +343 -42
  13. package/node_modules/aws-sdk/apis/groundstation-2019-05-23.paginators.json +6 -0
  14. package/node_modules/aws-sdk/apis/mediapackage-vod-2018-11-07.min.json +4 -0
  15. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  16. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.examples.json +5 -0
  17. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.min.json +701 -0
  18. package/node_modules/aws-sdk/apis/scheduler-2021-06-30.paginators.json +16 -0
  19. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  20. package/node_modules/aws-sdk/clients/all.js +2 -1
  21. package/node_modules/aws-sdk/clients/autoscaling.d.ts +8 -8
  22. package/node_modules/aws-sdk/clients/connect.d.ts +15 -2
  23. package/node_modules/aws-sdk/clients/connectcases.d.ts +27 -5
  24. package/node_modules/aws-sdk/clients/ec2.d.ts +8 -8
  25. package/node_modules/aws-sdk/clients/ecs.d.ts +79 -0
  26. package/node_modules/aws-sdk/clients/es.d.ts +301 -0
  27. package/node_modules/aws-sdk/clients/groundstation.d.ts +413 -70
  28. package/node_modules/aws-sdk/clients/mediapackagevod.d.ts +4 -0
  29. package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +2 -2
  30. package/node_modules/aws-sdk/clients/scheduler.d.ts +829 -0
  31. package/node_modules/aws-sdk/clients/scheduler.js +18 -0
  32. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  33. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +48 -11
  34. package/node_modules/aws-sdk/dist/aws-sdk.js +150 -71
  35. package/node_modules/aws-sdk/dist/aws-sdk.min.js +75 -75
  36. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  37. package/node_modules/aws-sdk/lib/core.js +1 -1
  38. package/node_modules/aws-sdk/package.json +1 -1
  39. package/package.json +7 -7
@@ -35,6 +35,14 @@ declare class ES extends Service {
35
35
  * Associates a package with an Amazon ES domain.
36
36
  */
37
37
  associatePackage(callback?: (err: AWSError, data: ES.Types.AssociatePackageResponse) => void): Request<ES.Types.AssociatePackageResponse, AWSError>;
38
+ /**
39
+ * Provides access to an Amazon OpenSearch Service domain through the use of an interface VPC endpoint.
40
+ */
41
+ authorizeVpcEndpointAccess(params: ES.Types.AuthorizeVpcEndpointAccessRequest, callback?: (err: AWSError, data: ES.Types.AuthorizeVpcEndpointAccessResponse) => void): Request<ES.Types.AuthorizeVpcEndpointAccessResponse, AWSError>;
42
+ /**
43
+ * Provides access to an Amazon OpenSearch Service domain through the use of an interface VPC endpoint.
44
+ */
45
+ authorizeVpcEndpointAccess(callback?: (err: AWSError, data: ES.Types.AuthorizeVpcEndpointAccessResponse) => void): Request<ES.Types.AuthorizeVpcEndpointAccessResponse, AWSError>;
38
46
  /**
39
47
  * Cancels a scheduled service software update for an Amazon ES domain. You can only perform this operation before the AutomatedUpdateDate and when the UpdateStatus is in the PENDING_UPDATE state.
40
48
  */
@@ -67,6 +75,14 @@ declare class ES extends Service {
67
75
  * Create a package for use with Amazon ES domains.
68
76
  */
69
77
  createPackage(callback?: (err: AWSError, data: ES.Types.CreatePackageResponse) => void): Request<ES.Types.CreatePackageResponse, AWSError>;
78
+ /**
79
+ * Creates an Amazon OpenSearch Service-managed VPC endpoint.
80
+ */
81
+ createVpcEndpoint(params: ES.Types.CreateVpcEndpointRequest, callback?: (err: AWSError, data: ES.Types.CreateVpcEndpointResponse) => void): Request<ES.Types.CreateVpcEndpointResponse, AWSError>;
82
+ /**
83
+ * Creates an Amazon OpenSearch Service-managed VPC endpoint.
84
+ */
85
+ createVpcEndpoint(callback?: (err: AWSError, data: ES.Types.CreateVpcEndpointResponse) => void): Request<ES.Types.CreateVpcEndpointResponse, AWSError>;
70
86
  /**
71
87
  * Permanently deletes the specified Elasticsearch domain and all of its data. Once a domain is deleted, it cannot be recovered.
72
88
  */
@@ -103,6 +119,14 @@ declare class ES extends Service {
103
119
  * Delete the package.
104
120
  */
105
121
  deletePackage(callback?: (err: AWSError, data: ES.Types.DeletePackageResponse) => void): Request<ES.Types.DeletePackageResponse, AWSError>;
122
+ /**
123
+ * Deletes an Amazon OpenSearch Service-managed interface VPC endpoint.
124
+ */
125
+ deleteVpcEndpoint(params: ES.Types.DeleteVpcEndpointRequest, callback?: (err: AWSError, data: ES.Types.DeleteVpcEndpointResponse) => void): Request<ES.Types.DeleteVpcEndpointResponse, AWSError>;
126
+ /**
127
+ * Deletes an Amazon OpenSearch Service-managed interface VPC endpoint.
128
+ */
129
+ deleteVpcEndpoint(callback?: (err: AWSError, data: ES.Types.DeleteVpcEndpointResponse) => void): Request<ES.Types.DeleteVpcEndpointResponse, AWSError>;
106
130
  /**
107
131
  * Provides scheduled Auto-Tune action details for the Elasticsearch domain, such as Auto-Tune action type, description, severity, and scheduled date.
108
132
  */
@@ -191,6 +215,14 @@ declare class ES extends Service {
191
215
  * Returns information about reserved Elasticsearch instances for this account.
192
216
  */
193
217
  describeReservedElasticsearchInstances(callback?: (err: AWSError, data: ES.Types.DescribeReservedElasticsearchInstancesResponse) => void): Request<ES.Types.DescribeReservedElasticsearchInstancesResponse, AWSError>;
218
+ /**
219
+ * Describes one or more Amazon OpenSearch Service-managed VPC endpoints.
220
+ */
221
+ describeVpcEndpoints(params: ES.Types.DescribeVpcEndpointsRequest, callback?: (err: AWSError, data: ES.Types.DescribeVpcEndpointsResponse) => void): Request<ES.Types.DescribeVpcEndpointsResponse, AWSError>;
222
+ /**
223
+ * Describes one or more Amazon OpenSearch Service-managed VPC endpoints.
224
+ */
225
+ describeVpcEndpoints(callback?: (err: AWSError, data: ES.Types.DescribeVpcEndpointsResponse) => void): Request<ES.Types.DescribeVpcEndpointsResponse, AWSError>;
194
226
  /**
195
227
  * Dissociates a package from the Amazon ES domain.
196
228
  */
@@ -279,6 +311,30 @@ declare class ES extends Service {
279
311
  * Returns all tags for the given Elasticsearch domain.
280
312
  */
281
313
  listTags(callback?: (err: AWSError, data: ES.Types.ListTagsResponse) => void): Request<ES.Types.ListTagsResponse, AWSError>;
314
+ /**
315
+ * Retrieves information about each principal that is allowed to access a given Amazon OpenSearch Service domain through the use of an interface VPC endpoint.
316
+ */
317
+ listVpcEndpointAccess(params: ES.Types.ListVpcEndpointAccessRequest, callback?: (err: AWSError, data: ES.Types.ListVpcEndpointAccessResponse) => void): Request<ES.Types.ListVpcEndpointAccessResponse, AWSError>;
318
+ /**
319
+ * Retrieves information about each principal that is allowed to access a given Amazon OpenSearch Service domain through the use of an interface VPC endpoint.
320
+ */
321
+ listVpcEndpointAccess(callback?: (err: AWSError, data: ES.Types.ListVpcEndpointAccessResponse) => void): Request<ES.Types.ListVpcEndpointAccessResponse, AWSError>;
322
+ /**
323
+ * Retrieves all Amazon OpenSearch Service-managed VPC endpoints in the current account and Region.
324
+ */
325
+ listVpcEndpoints(params: ES.Types.ListVpcEndpointsRequest, callback?: (err: AWSError, data: ES.Types.ListVpcEndpointsResponse) => void): Request<ES.Types.ListVpcEndpointsResponse, AWSError>;
326
+ /**
327
+ * Retrieves all Amazon OpenSearch Service-managed VPC endpoints in the current account and Region.
328
+ */
329
+ listVpcEndpoints(callback?: (err: AWSError, data: ES.Types.ListVpcEndpointsResponse) => void): Request<ES.Types.ListVpcEndpointsResponse, AWSError>;
330
+ /**
331
+ * Retrieves all Amazon OpenSearch Service-managed VPC endpoints associated with a particular domain.
332
+ */
333
+ listVpcEndpointsForDomain(params: ES.Types.ListVpcEndpointsForDomainRequest, callback?: (err: AWSError, data: ES.Types.ListVpcEndpointsForDomainResponse) => void): Request<ES.Types.ListVpcEndpointsForDomainResponse, AWSError>;
334
+ /**
335
+ * Retrieves all Amazon OpenSearch Service-managed VPC endpoints associated with a particular domain.
336
+ */
337
+ listVpcEndpointsForDomain(callback?: (err: AWSError, data: ES.Types.ListVpcEndpointsForDomainResponse) => void): Request<ES.Types.ListVpcEndpointsForDomainResponse, AWSError>;
282
338
  /**
283
339
  * Allows you to purchase reserved Elasticsearch instances.
284
340
  */
@@ -303,6 +359,14 @@ declare class ES extends Service {
303
359
  * Removes the specified set of tags from the specified Elasticsearch domain.
304
360
  */
305
361
  removeTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
362
+ /**
363
+ * Revokes access to an Amazon OpenSearch Service domain that was provided through an interface VPC endpoint.
364
+ */
365
+ revokeVpcEndpointAccess(params: ES.Types.RevokeVpcEndpointAccessRequest, callback?: (err: AWSError, data: ES.Types.RevokeVpcEndpointAccessResponse) => void): Request<ES.Types.RevokeVpcEndpointAccessResponse, AWSError>;
366
+ /**
367
+ * Revokes access to an Amazon OpenSearch Service domain that was provided through an interface VPC endpoint.
368
+ */
369
+ revokeVpcEndpointAccess(callback?: (err: AWSError, data: ES.Types.RevokeVpcEndpointAccessResponse) => void): Request<ES.Types.RevokeVpcEndpointAccessResponse, AWSError>;
306
370
  /**
307
371
  * Schedules a service software update for an Amazon ES domain.
308
372
  */
@@ -327,6 +391,14 @@ declare class ES extends Service {
327
391
  * Updates a package for use with Amazon ES domains.
328
392
  */
329
393
  updatePackage(callback?: (err: AWSError, data: ES.Types.UpdatePackageResponse) => void): Request<ES.Types.UpdatePackageResponse, AWSError>;
394
+ /**
395
+ * Modifies an Amazon OpenSearch Service-managed interface VPC endpoint.
396
+ */
397
+ updateVpcEndpoint(params: ES.Types.UpdateVpcEndpointRequest, callback?: (err: AWSError, data: ES.Types.UpdateVpcEndpointResponse) => void): Request<ES.Types.UpdateVpcEndpointResponse, AWSError>;
398
+ /**
399
+ * Modifies an Amazon OpenSearch Service-managed interface VPC endpoint.
400
+ */
401
+ updateVpcEndpoint(callback?: (err: AWSError, data: ES.Types.UpdateVpcEndpointResponse) => void): Request<ES.Types.UpdateVpcEndpointResponse, AWSError>;
330
402
  /**
331
403
  * Allows you to either upgrade your domain or perform an Upgrade eligibility check to a compatible Elasticsearch version.
332
404
  */
@@ -338,6 +410,7 @@ declare class ES extends Service {
338
410
  }
339
411
  declare namespace ES {
340
412
  export type ARN = string;
413
+ export type AWSAccount = string;
341
414
  export interface AcceptInboundCrossClusterSearchConnectionRequest {
342
415
  /**
343
416
  * The id of the inbound connection that you want to accept.
@@ -462,6 +535,33 @@ declare namespace ES {
462
535
  */
463
536
  DomainPackageDetails?: DomainPackageDetails;
464
537
  }
538
+ export interface AuthorizeVpcEndpointAccessRequest {
539
+ /**
540
+ * The name of the OpenSearch Service domain to provide access to.
541
+ */
542
+ DomainName: DomainName;
543
+ /**
544
+ * The account ID to grant access to.
545
+ */
546
+ Account: AWSAccount;
547
+ }
548
+ export interface AuthorizeVpcEndpointAccessResponse {
549
+ /**
550
+ * Information about the account or service that was provided access to the domain.
551
+ */
552
+ AuthorizedPrincipal: AuthorizedPrincipal;
553
+ }
554
+ export interface AuthorizedPrincipal {
555
+ /**
556
+ * The type of principal.
557
+ */
558
+ PrincipalType?: PrincipalType;
559
+ /**
560
+ * The IAM principal that is allowed access to the domain.
561
+ */
562
+ Principal?: String;
563
+ }
564
+ export type AuthorizedPrincipalList = AuthorizedPrincipal[];
465
565
  export interface AutoTune {
466
566
  /**
467
567
  * Specifies Auto-Tune type. Valid value is SCHEDULED_ACTION.
@@ -640,6 +740,7 @@ declare namespace ES {
640
740
  */
641
741
  ChangeProgressStages?: ChangeProgressStageList;
642
742
  }
743
+ export type ClientToken = string;
643
744
  export type CloudWatchLogsLogGroupArn = string;
644
745
  export interface CognitoOptions {
645
746
  /**
@@ -817,6 +918,26 @@ declare namespace ES {
817
918
  */
818
919
  PackageDetails?: PackageDetails;
819
920
  }
921
+ export interface CreateVpcEndpointRequest {
922
+ /**
923
+ * The Amazon Resource Name (ARN) of the domain to grant access to.
924
+ */
925
+ DomainArn: DomainArn;
926
+ /**
927
+ * Options to specify the subnets and security groups for the endpoint.
928
+ */
929
+ VpcOptions: VPCOptions;
930
+ /**
931
+ * Unique, case-sensitive identifier to ensure idempotency of the request.
932
+ */
933
+ ClientToken?: ClientToken;
934
+ }
935
+ export interface CreateVpcEndpointResponse {
936
+ /**
937
+ * Information about the newly created VPC endpoint.
938
+ */
939
+ VpcEndpoint: VpcEndpoint;
940
+ }
820
941
  export type CreatedAt = Date;
821
942
  export type CrossClusterSearchConnectionId = string;
822
943
  export type CrossClusterSearchConnectionStatusMessage = string;
@@ -868,6 +989,18 @@ declare namespace ES {
868
989
  */
869
990
  PackageDetails?: PackageDetails;
870
991
  }
992
+ export interface DeleteVpcEndpointRequest {
993
+ /**
994
+ * The unique identifier of the endpoint to be deleted.
995
+ */
996
+ VpcEndpointId: VpcEndpointId;
997
+ }
998
+ export interface DeleteVpcEndpointResponse {
999
+ /**
1000
+ * Information about the deleted endpoint, including its current status (DELETING or DELETE_FAILED).
1001
+ */
1002
+ VpcEndpointSummary: VpcEndpointSummary;
1003
+ }
871
1004
  export type DeploymentCloseDateTimeStamp = Date;
872
1005
  export type DeploymentStatus = "PENDING_UPDATE"|"IN_PROGRESS"|"COMPLETED"|"NOT_ELIGIBLE"|"ELIGIBLE"|string;
873
1006
  export type DeploymentType = string;
@@ -1095,6 +1228,22 @@ declare namespace ES {
1095
1228
  */
1096
1229
  ReservedElasticsearchInstances?: ReservedElasticsearchInstanceList;
1097
1230
  }
1231
+ export interface DescribeVpcEndpointsRequest {
1232
+ /**
1233
+ * The unique identifiers of the endpoints to get information about.
1234
+ */
1235
+ VpcEndpointIds: VpcEndpointIdList;
1236
+ }
1237
+ export interface DescribeVpcEndpointsResponse {
1238
+ /**
1239
+ * Information about each requested VPC endpoint.
1240
+ */
1241
+ VpcEndpoints: VpcEndpoints;
1242
+ /**
1243
+ * Any errors associated with the request.
1244
+ */
1245
+ VpcEndpointErrors: VpcEndpointErrorList;
1246
+ }
1098
1247
  export type Description = string;
1099
1248
  export type DisableTimestamp = Date;
1100
1249
  export interface DissociatePackageRequest {
@@ -1113,6 +1262,7 @@ declare namespace ES {
1113
1262
  */
1114
1263
  DomainPackageDetails?: DomainPackageDetails;
1115
1264
  }
1265
+ export type DomainArn = string;
1116
1266
  export interface DomainEndpointOptions {
1117
1267
  /**
1118
1268
  * Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.
@@ -1510,6 +1660,7 @@ declare namespace ES {
1510
1660
  */
1511
1661
  Status: OptionStatus;
1512
1662
  }
1663
+ export type Endpoint = string;
1513
1664
  export type EndpointsMap = {[key: string]: ServiceUrl};
1514
1665
  export type EngineType = "OpenSearch"|"Elasticsearch"|string;
1515
1666
  export interface ErrorDetails {
@@ -1762,6 +1913,62 @@ declare namespace ES {
1762
1913
  */
1763
1914
  TagList?: TagList;
1764
1915
  }
1916
+ export interface ListVpcEndpointAccessRequest {
1917
+ /**
1918
+ * The name of the OpenSearch Service domain to retrieve access information for.
1919
+ */
1920
+ DomainName: DomainName;
1921
+ /**
1922
+ * Provides an identifier to allow retrieval of paginated results.
1923
+ */
1924
+ NextToken?: NextToken;
1925
+ }
1926
+ export interface ListVpcEndpointAccessResponse {
1927
+ /**
1928
+ * List of AuthorizedPrincipal describing the details of the permissions to manage VPC endpoints against the specified domain.
1929
+ */
1930
+ AuthorizedPrincipalList: AuthorizedPrincipalList;
1931
+ /**
1932
+ * Provides an identifier to allow retrieval of paginated results.
1933
+ */
1934
+ NextToken: NextToken;
1935
+ }
1936
+ export interface ListVpcEndpointsForDomainRequest {
1937
+ /**
1938
+ * Name of the ElasticSearch domain whose VPC endpoints are to be listed.
1939
+ */
1940
+ DomainName: DomainName;
1941
+ /**
1942
+ * Provides an identifier to allow retrieval of paginated results.
1943
+ */
1944
+ NextToken?: NextToken;
1945
+ }
1946
+ export interface ListVpcEndpointsForDomainResponse {
1947
+ /**
1948
+ * Provides list of VpcEndpointSummary summarizing details of the VPC endpoints.
1949
+ */
1950
+ VpcEndpointSummaryList: VpcEndpointSummaryList;
1951
+ /**
1952
+ * Information about each endpoint associated with the domain.
1953
+ */
1954
+ NextToken: NextToken;
1955
+ }
1956
+ export interface ListVpcEndpointsRequest {
1957
+ /**
1958
+ * Identifier to allow retrieval of paginated results.
1959
+ */
1960
+ NextToken?: NextToken;
1961
+ }
1962
+ export interface ListVpcEndpointsResponse {
1963
+ /**
1964
+ * Information about each endpoint.
1965
+ */
1966
+ VpcEndpointSummaryList: VpcEndpointSummaryList;
1967
+ /**
1968
+ * Provides an identifier to allow retrieval of paginated results.
1969
+ */
1970
+ NextToken: NextToken;
1971
+ }
1765
1972
  export interface LogPublishingOption {
1766
1973
  CloudWatchLogsLogGroupArn?: CloudWatchLogsLogGroupArn;
1767
1974
  /**
@@ -1942,6 +2149,7 @@ declare namespace ES {
1942
2149
  export type PackageVersionHistoryList = PackageVersionHistory[];
1943
2150
  export type Password = string;
1944
2151
  export type PolicyDocument = string;
2152
+ export type PrincipalType = "AWS_ACCOUNT"|"AWS_SERVICE"|string;
1945
2153
  export interface PurchaseReservedElasticsearchInstanceOfferingRequest {
1946
2154
  /**
1947
2155
  * The ID of the reserved Elasticsearch instance offering to purchase.
@@ -2093,6 +2301,18 @@ declare namespace ES {
2093
2301
  }
2094
2302
  export type ReservedElasticsearchInstanceOfferingList = ReservedElasticsearchInstanceOffering[];
2095
2303
  export type ReservedElasticsearchInstancePaymentOption = "ALL_UPFRONT"|"PARTIAL_UPFRONT"|"NO_UPFRONT"|string;
2304
+ export interface RevokeVpcEndpointAccessRequest {
2305
+ /**
2306
+ * The name of the OpenSearch Service domain.
2307
+ */
2308
+ DomainName: DomainName;
2309
+ /**
2310
+ * The account ID to revoke access from.
2311
+ */
2312
+ Account: AWSAccount;
2313
+ }
2314
+ export interface RevokeVpcEndpointAccessResponse {
2315
+ }
2096
2316
  export type RoleArn = string;
2097
2317
  export type RollbackOnDisable = "NO_ROLLBACK"|"DEFAULT_ROLLBACK"|string;
2098
2318
  export type S3BucketName = string;
@@ -2382,6 +2602,22 @@ declare namespace ES {
2382
2602
  PackageDetails?: PackageDetails;
2383
2603
  }
2384
2604
  export type UpdateTimestamp = Date;
2605
+ export interface UpdateVpcEndpointRequest {
2606
+ /**
2607
+ * Unique identifier of the VPC endpoint to be updated.
2608
+ */
2609
+ VpcEndpointId: VpcEndpointId;
2610
+ /**
2611
+ * The security groups and/or subnets to add, remove, or modify.
2612
+ */
2613
+ VpcOptions: VPCOptions;
2614
+ }
2615
+ export interface UpdateVpcEndpointResponse {
2616
+ /**
2617
+ * The endpoint to be updated.
2618
+ */
2619
+ VpcEndpoint: VpcEndpoint;
2620
+ }
2385
2621
  export interface UpgradeElasticsearchDomainRequest {
2386
2622
  DomainName: DomainName;
2387
2623
  /**
@@ -2488,6 +2724,71 @@ declare namespace ES {
2488
2724
  }
2489
2725
  export type ValueStringList = NonEmptyString[];
2490
2726
  export type VolumeType = "standard"|"gp2"|"io1"|"gp3"|string;
2727
+ export interface VpcEndpoint {
2728
+ /**
2729
+ * The unique identifier of the endpoint.
2730
+ */
2731
+ VpcEndpointId?: VpcEndpointId;
2732
+ /**
2733
+ * The creator of the endpoint.
2734
+ */
2735
+ VpcEndpointOwner?: AWSAccount;
2736
+ /**
2737
+ * The Amazon Resource Name (ARN) of the domain associated with the endpoint.
2738
+ */
2739
+ DomainArn?: DomainArn;
2740
+ /**
2741
+ * Options to specify the subnets and security groups for an Amazon OpenSearch Service VPC endpoint.
2742
+ */
2743
+ VpcOptions?: VPCDerivedInfo;
2744
+ /**
2745
+ * The current status of the endpoint.
2746
+ */
2747
+ Status?: VpcEndpointStatus;
2748
+ /**
2749
+ * The connection endpoint ID for connecting to the domain.
2750
+ */
2751
+ Endpoint?: Endpoint;
2752
+ }
2753
+ export interface VpcEndpointError {
2754
+ /**
2755
+ * The unique identifier of the endpoint.
2756
+ */
2757
+ VpcEndpointId?: VpcEndpointId;
2758
+ /**
2759
+ * The code associated with the error.
2760
+ */
2761
+ ErrorCode?: VpcEndpointErrorCode;
2762
+ /**
2763
+ * A message describing the error.
2764
+ */
2765
+ ErrorMessage?: String;
2766
+ }
2767
+ export type VpcEndpointErrorCode = "ENDPOINT_NOT_FOUND"|"SERVER_ERROR"|string;
2768
+ export type VpcEndpointErrorList = VpcEndpointError[];
2769
+ export type VpcEndpointId = string;
2770
+ export type VpcEndpointIdList = VpcEndpointId[];
2771
+ export type VpcEndpointStatus = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"UPDATING"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED"|string;
2772
+ export interface VpcEndpointSummary {
2773
+ /**
2774
+ * The unique identifier of the endpoint.
2775
+ */
2776
+ VpcEndpointId?: VpcEndpointId;
2777
+ /**
2778
+ * The creator of the endpoint.
2779
+ */
2780
+ VpcEndpointOwner?: String;
2781
+ /**
2782
+ * The Amazon Resource Name (ARN) of the domain associated with the endpoint.
2783
+ */
2784
+ DomainArn?: DomainArn;
2785
+ /**
2786
+ * The current status of the endpoint.
2787
+ */
2788
+ Status?: VpcEndpointStatus;
2789
+ }
2790
+ export type VpcEndpointSummaryList = VpcEndpointSummary[];
2791
+ export type VpcEndpoints = VpcEndpoint[];
2491
2792
  export interface ZoneAwarenessConfig {
2492
2793
  /**
2493
2794
  * An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled