cdk-docker-image-deployment 0.0.75 → 0.0.76

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 (46) 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 +19 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +114 -47
  8. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +168 -68
  9. package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +78 -55
  10. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +2 -1
  11. package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +20 -16
  12. package/node_modules/aws-sdk/apis/ivschat-2020-07-14.min.json +255 -18
  13. package/node_modules/aws-sdk/apis/ivschat-2020-07-14.paginators.json +5 -0
  14. package/node_modules/aws-sdk/apis/personalize-2018-05-22.min.json +219 -25
  15. package/node_modules/aws-sdk/apis/personalize-2018-05-22.paginators.json +12 -0
  16. package/node_modules/aws-sdk/apis/rum-2018-05-10.min.json +20 -5
  17. package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +51 -9
  18. package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +8 -2
  19. package/node_modules/aws-sdk/apis/servicecatalog-appregistry-2020-06-24.min.json +54 -2
  20. package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +161 -84
  21. package/node_modules/aws-sdk/clients/amplify.d.ts +4 -4
  22. package/node_modules/aws-sdk/clients/appflow.d.ts +95 -4
  23. package/node_modules/aws-sdk/clients/appsync.d.ts +133 -4
  24. package/node_modules/aws-sdk/clients/dms.d.ts +51 -10
  25. package/node_modules/aws-sdk/clients/ec2.d.ts +11 -7
  26. package/node_modules/aws-sdk/clients/elbv2.d.ts +20 -20
  27. package/node_modules/aws-sdk/clients/emrserverless.d.ts +17 -0
  28. package/node_modules/aws-sdk/clients/ivschat.d.ts +322 -13
  29. package/node_modules/aws-sdk/clients/lambda.d.ts +12 -12
  30. package/node_modules/aws-sdk/clients/personalize.d.ts +267 -0
  31. package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
  32. package/node_modules/aws-sdk/clients/rum.d.ts +24 -5
  33. package/node_modules/aws-sdk/clients/s3control.d.ts +58 -16
  34. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +7 -7
  35. package/node_modules/aws-sdk/clients/securityhub.d.ts +16 -0
  36. package/node_modules/aws-sdk/clients/servicecatalogappregistry.d.ts +58 -7
  37. package/node_modules/aws-sdk/clients/sts.d.ts +18 -18
  38. package/node_modules/aws-sdk/clients/textract.d.ts +6 -6
  39. package/node_modules/aws-sdk/clients/workspaces.d.ts +115 -0
  40. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  41. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
  42. package/node_modules/aws-sdk/dist/aws-sdk.js +236 -29
  43. package/node_modules/aws-sdk/dist/aws-sdk.min.js +36 -36
  44. package/node_modules/aws-sdk/lib/core.js +1 -1
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/package.json +4 -4
@@ -67,6 +67,14 @@ declare class WorkSpaces extends Service {
67
67
  * Creates an IP access control group. An IP access control group provides you with the ability to control the IP addresses from which users are allowed to access their WorkSpaces. To specify the CIDR address ranges, add rules to your IP access control group and then associate the group with your directory. You can add rules when you create the group or at any time using AuthorizeIpRules. There is a default IP access control group associated with your directory. If you don't associate an IP access control group with your directory, the default group is used. The default group includes a default rule that allows users to access their WorkSpaces from anywhere. You cannot modify the default IP access control group for your directory.
68
68
  */
69
69
  createIpGroup(callback?: (err: AWSError, data: WorkSpaces.Types.CreateIpGroupResult) => void): Request<WorkSpaces.Types.CreateIpGroupResult, AWSError>;
70
+ /**
71
+ * Creates a Standby WorkSpace in a secondary region.
72
+ */
73
+ createStandbyWorkspaces(params: WorkSpaces.Types.CreateStandbyWorkspacesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.CreateStandbyWorkspacesResult) => void): Request<WorkSpaces.Types.CreateStandbyWorkspacesResult, AWSError>;
74
+ /**
75
+ * Creates a Standby WorkSpace in a secondary region.
76
+ */
77
+ createStandbyWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.CreateStandbyWorkspacesResult) => void): Request<WorkSpaces.Types.CreateStandbyWorkspacesResult, AWSError>;
70
78
  /**
71
79
  * Creates the specified tags for the specified WorkSpaces resource.
72
80
  */
@@ -607,6 +615,7 @@ declare namespace WorkSpaces {
607
615
  export type BundleIdList = BundleId[];
608
616
  export type BundleList = WorkspaceBundle[];
609
617
  export type BundleOwner = string;
618
+ export type BundleType = "REGULAR"|"STANDBY"|string;
610
619
  export type CertificateAuthorityArn = string;
611
620
  export interface CertificateBasedAuthProperties {
612
621
  /**
@@ -820,6 +829,26 @@ declare namespace WorkSpaces {
820
829
  */
821
830
  GroupId?: IpGroupId;
822
831
  }
832
+ export interface CreateStandbyWorkspacesRequest {
833
+ /**
834
+ * The Region of the primary WorkSpace.
835
+ */
836
+ PrimaryRegion: Region;
837
+ /**
838
+ * Information about the Standby WorkSpace to be created.
839
+ */
840
+ StandbyWorkspaces: StandbyWorkspacesList;
841
+ }
842
+ export interface CreateStandbyWorkspacesResult {
843
+ /**
844
+ * Information about the Standby WorkSpace that could not be created.
845
+ */
846
+ FailedStandbyRequests?: FailedCreateStandbyWorkspacesRequestList;
847
+ /**
848
+ * Information about the Standby WorkSpace that was created.
849
+ */
850
+ PendingStandbyRequests?: PendingCreateStandbyWorkspacesRequestList;
851
+ }
823
852
  export interface CreateTagsRequest {
824
853
  /**
825
854
  * The identifier of the WorkSpaces resource. The supported resource types are WorkSpaces, registered directories, images, custom bundles, IP access control groups, and connection aliases.
@@ -1497,6 +1526,21 @@ declare namespace WorkSpaces {
1497
1526
  export type DnsIpAddresses = IpAddress[];
1498
1527
  export type Ec2ImageId = string;
1499
1528
  export type ErrorType = string;
1529
+ export interface FailedCreateStandbyWorkspacesRequest {
1530
+ /**
1531
+ * Information about the Standby WorkSpace that could not be created.
1532
+ */
1533
+ StandbyWorkspaceRequest?: StandbyWorkspace;
1534
+ /**
1535
+ * The error code that is returned if the Standby WorkSpace could not be created.
1536
+ */
1537
+ ErrorCode?: WorkspaceErrorCode;
1538
+ /**
1539
+ * The text of the error message that is returned if the Standby WorkSpace could not be created.
1540
+ */
1541
+ ErrorMessage?: Description;
1542
+ }
1543
+ export type FailedCreateStandbyWorkspacesRequestList = FailedCreateStandbyWorkspacesRequest[];
1500
1544
  export interface FailedCreateWorkspaceRequest {
1501
1545
  /**
1502
1546
  * Information about the WorkSpace.
@@ -1896,6 +1940,25 @@ declare namespace WorkSpaces {
1896
1940
  }
1897
1941
  export type OperatingSystemType = "WINDOWS"|"LINUX"|string;
1898
1942
  export type PaginationToken = string;
1943
+ export interface PendingCreateStandbyWorkspacesRequest {
1944
+ /**
1945
+ * Describes the Standby WorkSpace that was created. Because this operation is asynchronous, the identifier returned is not immediately available for use with other operations. For example, if you call DescribeWorkspaces before the WorkSpace is created, the information returned can be incomplete.
1946
+ */
1947
+ UserName?: UserName;
1948
+ /**
1949
+ * The identifier of the directory for the Standby WorkSpace.
1950
+ */
1951
+ DirectoryId?: DirectoryId;
1952
+ /**
1953
+ * The operational state of the Standby WorkSpace.
1954
+ */
1955
+ State?: WorkspaceState;
1956
+ /**
1957
+ * The identifier of the Standby WorkSpace.
1958
+ */
1959
+ WorkspaceId?: WorkspaceId;
1960
+ }
1961
+ export type PendingCreateStandbyWorkspacesRequestList = PendingCreateStandbyWorkspacesRequest[];
1899
1962
  export type Protocol = "PCOIP"|"WSP"|string;
1900
1963
  export type ProtocolList = Protocol[];
1901
1964
  export interface RebootRequest {
@@ -1967,6 +2030,25 @@ declare namespace WorkSpaces {
1967
2030
  export interface RegisterWorkspaceDirectoryResult {
1968
2031
  }
1969
2032
  export type RegistrationCode = string;
2033
+ export interface RelatedWorkspaceProperties {
2034
+ /**
2035
+ * The identifier of the related WorkSpace.
2036
+ */
2037
+ WorkspaceId?: WorkspaceId;
2038
+ /**
2039
+ * The Region of the related WorkSpace.
2040
+ */
2041
+ Region?: Region;
2042
+ /**
2043
+ * Indicates the state of the WorkSpace.
2044
+ */
2045
+ State?: WorkspaceState;
2046
+ /**
2047
+ * Indicates the type of WorkSpace.
2048
+ */
2049
+ Type?: StandbyWorkspaceRelationshipType;
2050
+ }
2051
+ export type RelatedWorkspaces = RelatedWorkspaceProperties[];
1970
2052
  export type ResourceIdList = NonEmptyString[];
1971
2053
  export interface RestoreWorkspaceRequest {
1972
2054
  /**
@@ -2043,6 +2125,26 @@ declare namespace WorkSpaces {
2043
2125
  SnapshotTime?: Timestamp;
2044
2126
  }
2045
2127
  export type SnapshotList = Snapshot[];
2128
+ export interface StandbyWorkspace {
2129
+ /**
2130
+ * The identifier of the Standby WorkSpace.
2131
+ */
2132
+ PrimaryWorkspaceId: WorkspaceId;
2133
+ /**
2134
+ * The volume encryption key of the Standby WorkSpace.
2135
+ */
2136
+ VolumeEncryptionKey?: VolumeEncryptionKey;
2137
+ /**
2138
+ * The identifier of the directory for the Standby WorkSpace.
2139
+ */
2140
+ DirectoryId: DirectoryId;
2141
+ /**
2142
+ * The tags associated with the Standby WorkSpace.
2143
+ */
2144
+ Tags?: TagList;
2145
+ }
2146
+ export type StandbyWorkspaceRelationshipType = "PRIMARY"|"STANDBY"|string;
2147
+ export type StandbyWorkspacesList = StandbyWorkspace[];
2046
2148
  export interface StartRequest {
2047
2149
  /**
2048
2150
  * The identifier of the WorkSpace.
@@ -2272,6 +2374,10 @@ declare namespace WorkSpaces {
2272
2374
  * The modification states of the WorkSpace.
2273
2375
  */
2274
2376
  ModificationStates?: ModificationStateList;
2377
+ /**
2378
+ * The Standby WorkSpace or Primary WorkSpace related to the specified WorkSpace.
2379
+ */
2380
+ RelatedWorkspaces?: RelatedWorkspaces;
2275
2381
  }
2276
2382
  export interface WorkspaceAccessProperties {
2277
2383
  /**
@@ -2348,9 +2454,18 @@ declare namespace WorkSpaces {
2348
2454
  * The time when the bundle was created.
2349
2455
  */
2350
2456
  CreationTime?: Timestamp;
2457
+ /**
2458
+ * The state of the WorkSpace bundle.
2459
+ */
2460
+ State?: WorkspaceBundleState;
2461
+ /**
2462
+ * The type of WorkSpace bundle.
2463
+ */
2464
+ BundleType?: BundleType;
2351
2465
  }
2352
2466
  export type WorkspaceBundleDescription = string;
2353
2467
  export type WorkspaceBundleName = string;
2468
+ export type WorkspaceBundleState = "AVAILABLE"|"PENDING"|"ERROR"|string;
2354
2469
  export interface WorkspaceConnectionStatus {
2355
2470
  /**
2356
2471
  * The identifier of the WorkSpace.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1256.0',
86
+ VERSION: '2.1257.0',
87
87
 
88
88
  /**
89
89
  * @api private