@paulo_raca/cdk-skylight 0.0.6 → 0.0.7
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.
- package/.jsii +138 -114
- package/.jsii.tabl.json +1 -1
- package/API.md +411 -373
- package/lib/skylight-authentication/ad-authentication.d.ts +2 -2
- package/lib/skylight-authentication/ad-authentication.js +9 -11
- package/lib/skylight-compute/eks/windows-eks-cluster.js +1 -1
- package/lib/skylight-compute/eks/windows-eks-nodes.js +1 -1
- package/lib/skylight-compute/windows-node.js +7 -4
- package/lib/skylight-storage/fsx-windows.js +1 -1
- package/package.json +1 -1
package/.jsii
CHANGED
|
@@ -3019,7 +3019,7 @@
|
|
|
3019
3019
|
}
|
|
3020
3020
|
}
|
|
3021
3021
|
},
|
|
3022
|
-
"description": "
|
|
3022
|
+
"description": "cdk-skylight",
|
|
3023
3023
|
"docs": {
|
|
3024
3024
|
"stability": "experimental"
|
|
3025
3025
|
},
|
|
@@ -3037,7 +3037,7 @@
|
|
|
3037
3037
|
},
|
|
3038
3038
|
"tscRootDir": "src"
|
|
3039
3039
|
},
|
|
3040
|
-
"name": "
|
|
3040
|
+
"name": "cdk-skylight",
|
|
3041
3041
|
"readme": {
|
|
3042
3042
|
"markdown": "\n\n# CDK Skylight\n\nCDK Skylight is a set of **Level 3 constructs** for the [Microsoft products on AWS](https://aws.amazon.com/windows/) ecosystem (Windows OS, SQL Server, Active Directory, Windows Containers, Amazon FSx for Windows, and so on). **CDK Skylight Constructs are a natural fit for Platform Teams building Platform as a Product.**\n\nA few examples are:\n\n1. Windows Worker with Domain join and Powershell API that allows running complex automation with a single line of code\n2. Managed Active Directory configured with DNS Topology and an API to create new AD Group with a domain-joined machine.\n3. Amazon FSx library that creates Filesystem with API to create Folder on it\n4. Windows EKS Workers that joins to specified AD domain with APIs to create and configure complex integrations such as SMB with Global Mapping and Domain authentication with gMSA plugin.\n\nAll those examples are built with CDK Skylight libraries and can be used separately with maximum flexibility to change the default settings.\n\nCDK Skylight is set to address repetitive tasks and best practices involved with managing, deploying, and integrating those apps. In addition to the complexity of integrating the AWS side products, Microsoft technologies such as SQL, AD, Windows OS require OS-level integration and optimization. Skylight help in both the \"AWS-side\" and the \"OS-side,\" offering a complete end-to-end configuration and integration solution of AWS products.\n\n# Who should use CDK Skylight?\n\nThe primary persona to use CDK Skylight is the platform team owners to customize the stacks and provide them to the application owners teams.\n\nAs a vision, Project CDK-Skylight targets all Windows EC2 customers in all stages, specifically developers developing features integrated with the Microsoft-products ecosystem (SQL Server, Active Directory, Windows OS, etc.)\n\n# When to use CDK Skylight?\n\nCDK Skylight helps in all application lifecycle stages, starting from the developer machine to running production workloads. With CDK Skylight, the time it takes to move between stages and integrate new services is reduced dramatically.\n\n# How to use\n\n```bash\nnpm install cdk-skylight\n```\n\nIn your CDK App\n\n```typescript\nimport * as skylight from \"cdk-skylight\";\n\nnew skylight.authentication.AwsManagedMicrosoftAdR53(scope: Construct, id: string, props: IAwsManagedMicrosoftAdProps)\n\n```\n\n# CDK Skylight Constructs\n\n## Skylight-Compute\n\nLibrary of Custom Compute components\n\n### DomainWindowsNode\n\nA Domain Windows Node Construct represents one Windows EC2 instance configured with Active Directory.\n\nThe DomainWindowsNode can be customized to different instance sizes and additional permissions set just like any other EC2 Instance.\nYou can use this construct to run elevated domain tasks with domain permissions or run your application in a single instance setup.\n\nThe machine will be joined to the provided Active Directory domain using a custom CloudFormation bootstrap that will wait until the required reboot to join the domain. Then it will register the machine in SSM and pull tasks from the SSM State manager.\n\nYou can send tasks to that machine using the provided methods: runPsCommands() and runPSwithDomainAdmin()\n\n```typescript\nconst windowsNodeObject = new skylight.compute.DomainWindowsNode(\n stack,\n 'WindowsNode',\n {\n vpc: vpc,\n madSsmParameters: {}, //pointer to the Secret that holds the Domain Admin username and password\n }\n);\n\n// Special Methods:\nwindowsNodeObject.runPsCommands(['echo hello-world'], 'hello');\nwindowsNodeObject.runPSwithDomainAdmin(\n ['Write-Host hello-world'],\n 'hello-withPS'\n);\nwindowsNodeObject.openRDP('1.1.1.1/32');\n```\n\n## Skylight-Authentication\n\nLibrary of Custom Authentication components\n\n### **AwsManagedMicrosoftAd** - Managed Active Directory\n\nManaged AD with Secret stored in secret manager\n\nThe secret saved to SSM parameter store so others can use it with other Constructs (Such as Windows node or FSx)\nThe provided VPC or the new created VPC will be configured to forward DNS requests to the Managed AD with Route53 Resolvers\n\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createADGroup)\nThe createADGroup() method creates an Active Directory permission group in the domain, using the domain admin user.\n\nPlease note: When calling createADGroup() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete.\n\n```typescript\nconst ad = new skylight.authentication.AwsManagedMicrosoftAd(\n stack,\n 'AwsManagedMicrosoftAdR53',\n {\n vpc: vpc,\n edition: 'Enterprise', // Optional\n secret: new Secret(stack, 'test-secret'), // Optional\n domainName: 'test-domain', // Optional\n secretName: 'custom-secret-name', // Optional\n createWorker: false, // Optional\n }\n);\nad.managedActiveDirectory.createADGroup(\n 'MyADGroup', // AD group name\n 'My AD Group Created by CDK-Skylight!' //AD Description\n);\n```\n\n### **AwsManagedMicrosoftAdR53** - Extenstion of Manged Active Directory with R53 Resolvers\n\nAwsManagedMicrosoftAdR53 represents an integration pattern of Managed AD and Route 53 Resolver in a specific VPC, it will create Managed AD with the provided Secret (Secrets Manager) or generates a new Secret.\n\nExample:\n\n```typescript\nconst ad = new skylight.authentication.AwsManagedMicrosoftAdR53(\n stack,\n 'AwsManagedMicrosoftAdR53',\n {\n vpc: vpc,\n }\n);\n```\n\n## Skylight-Storage\n\n### FSxWindows\n\nA FSxWindows represents an integration pattern of Amazon FSx and Managed AD in a specific VPC.\nThe Construct creates Amazon FSx for Windows\n\nThe construct also creates t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createFolder)\nThe createFolder() method creates an SMB Folder in the FSx filesystem, using the domain admin user.\n\nPlease note: When calling createFolder() API, a Lambda will be created to start the worker machine (Using AWS-SDK), then each command will be scheduled with State Manager, and the instance will be shut down after complete.\n\nExample:\n\n```typescript\nthis.fsxWindows = new skylight.storage.FSxWindows(this, 'FSx', {\n vpc: vpc,\n adParametersStore: adParametersStore,\n});\nthis.fsxWindows.createFolder('myFolderStorageOnFSx');\n```\n\n# Very experimental Libraries\n\n### EKS Compute\n\nThe stack creates the Windows Autoscaling group with domain join script and the SSM Documents for gMSA and Global Mapping.\n\n### EKS Cluster\n\n```typescript\nconst cluster = new WindowsEKSCluster(stack, 'ElasticCluster', {\n vpc: new aws_ec2.Vpc(stack, 'MyVpc', {}),\n}); // Creates EKS Cluster with Windows support\n```\n\n### EKS Nodes\n\nThis stack takes the PersistentStorage stack as input and creates the EKS cluster with permissions to operate EKS clusters.\n\n```typescript\nconst myNodes = new WindowsEKSNodes(stack, 'WindowsEKSNodes', {\n // Creates AutoScaling group for Windows Support\n vpc: new aws_ec2.Vpc(stack, 'MyVpc', {}),\n});\n\nmyNodes.addAdDependency(secretObject);\nmyNodes.addStorageDependency(secretObject, storageMount);\nmyNodes.addEKSDependency(eks_cluster.eksCluster);\nmyNodes.addLocalCredFile(secretObject, 'myEKSNodes', 'myWebApp');\n```\n"
|
|
3043
3043
|
},
|
|
@@ -3047,21 +3047,21 @@
|
|
|
3047
3047
|
},
|
|
3048
3048
|
"schema": "jsii/0.10.0",
|
|
3049
3049
|
"submodules": {
|
|
3050
|
-
"
|
|
3050
|
+
"cdk-skylight.authentication": {
|
|
3051
3051
|
"locationInModule": {
|
|
3052
3052
|
"filename": "src/index.ts",
|
|
3053
3053
|
"line": 3
|
|
3054
3054
|
},
|
|
3055
3055
|
"symbolId": "src/skylight-authentication/index:"
|
|
3056
3056
|
},
|
|
3057
|
-
"
|
|
3057
|
+
"cdk-skylight.compute": {
|
|
3058
3058
|
"locationInModule": {
|
|
3059
3059
|
"filename": "src/index.ts",
|
|
3060
3060
|
"line": 1
|
|
3061
3061
|
},
|
|
3062
3062
|
"symbolId": "src/skylight-compute/index:"
|
|
3063
3063
|
},
|
|
3064
|
-
"
|
|
3064
|
+
"cdk-skylight.storage": {
|
|
3065
3065
|
"locationInModule": {
|
|
3066
3066
|
"filename": "src/index.ts",
|
|
3067
3067
|
"line": 2
|
|
@@ -3071,7 +3071,7 @@
|
|
|
3071
3071
|
},
|
|
3072
3072
|
"targets": {
|
|
3073
3073
|
"js": {
|
|
3074
|
-
"npm": "
|
|
3074
|
+
"npm": "cdk-skylight"
|
|
3075
3075
|
},
|
|
3076
3076
|
"python": {
|
|
3077
3077
|
"distName": "cdk-skylight",
|
|
@@ -3079,15 +3079,15 @@
|
|
|
3079
3079
|
}
|
|
3080
3080
|
},
|
|
3081
3081
|
"types": {
|
|
3082
|
-
"
|
|
3083
|
-
"assembly": "
|
|
3082
|
+
"cdk-skylight.authentication.AwsManagedMicrosoftAd": {
|
|
3083
|
+
"assembly": "cdk-skylight",
|
|
3084
3084
|
"base": "constructs.Construct",
|
|
3085
3085
|
"docs": {
|
|
3086
3086
|
"remarks": "The Construct creates Managed AD with the provided Secret (Secrets Manager) or generates a new Secret.\nThe secret saved to SSM parameter store so others can use it with other Constructs (Such as Windows node or FSx)\nThe provided VPC or the new created VPC will be configured to forward DNS requests to the Managed AD with Route53 Resolvers\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createADGroup)\n\nThe createADGroup() method creates an Active Directory permission group in the domain, using the domain admin user.\nPlease note: When calling createADGroup() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete.",
|
|
3087
3087
|
"stability": "experimental",
|
|
3088
3088
|
"summary": "A Ad Authentication represents an integration pattern of Managed AD and Route 53 Resolver in a specific VPC."
|
|
3089
3089
|
},
|
|
3090
|
-
"fqn": "
|
|
3090
|
+
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftAd",
|
|
3091
3091
|
"initializer": {
|
|
3092
3092
|
"docs": {
|
|
3093
3093
|
"stability": "experimental"
|
|
@@ -3112,7 +3112,7 @@
|
|
|
3112
3112
|
{
|
|
3113
3113
|
"name": "props",
|
|
3114
3114
|
"type": {
|
|
3115
|
-
"fqn": "
|
|
3115
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3116
3116
|
}
|
|
3117
3117
|
}
|
|
3118
3118
|
]
|
|
@@ -3177,6 +3177,35 @@
|
|
|
3177
3177
|
}
|
|
3178
3178
|
]
|
|
3179
3179
|
},
|
|
3180
|
+
{
|
|
3181
|
+
"docs": {
|
|
3182
|
+
"stability": "experimental"
|
|
3183
|
+
},
|
|
3184
|
+
"locationInModule": {
|
|
3185
|
+
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
3186
|
+
"line": 254
|
|
3187
|
+
},
|
|
3188
|
+
"name": "createWorker",
|
|
3189
|
+
"parameters": [
|
|
3190
|
+
{
|
|
3191
|
+
"name": "domainName",
|
|
3192
|
+
"type": {
|
|
3193
|
+
"primitive": "string"
|
|
3194
|
+
}
|
|
3195
|
+
},
|
|
3196
|
+
{
|
|
3197
|
+
"name": "domainPassword",
|
|
3198
|
+
"type": {
|
|
3199
|
+
"fqn": "aws-cdk-lib.aws_secretsmanager.ISecret"
|
|
3200
|
+
}
|
|
3201
|
+
}
|
|
3202
|
+
],
|
|
3203
|
+
"returns": {
|
|
3204
|
+
"type": {
|
|
3205
|
+
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
3206
|
+
}
|
|
3207
|
+
}
|
|
3208
|
+
},
|
|
3180
3209
|
{
|
|
3181
3210
|
"docs": {
|
|
3182
3211
|
"stability": "experimental"
|
|
@@ -3204,12 +3233,7 @@
|
|
|
3204
3233
|
"primitive": "string"
|
|
3205
3234
|
}
|
|
3206
3235
|
}
|
|
3207
|
-
]
|
|
3208
|
-
"returns": {
|
|
3209
|
-
"type": {
|
|
3210
|
-
"primitive": "boolean"
|
|
3211
|
-
}
|
|
3212
|
-
}
|
|
3236
|
+
]
|
|
3213
3237
|
}
|
|
3214
3238
|
],
|
|
3215
3239
|
"name": "AwsManagedMicrosoftAd",
|
|
@@ -3226,7 +3250,7 @@
|
|
|
3226
3250
|
},
|
|
3227
3251
|
"name": "adParameters",
|
|
3228
3252
|
"type": {
|
|
3229
|
-
"fqn": "
|
|
3253
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
3230
3254
|
}
|
|
3231
3255
|
},
|
|
3232
3256
|
{
|
|
@@ -3254,7 +3278,7 @@
|
|
|
3254
3278
|
},
|
|
3255
3279
|
"name": "props",
|
|
3256
3280
|
"type": {
|
|
3257
|
-
"fqn": "
|
|
3281
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3258
3282
|
}
|
|
3259
3283
|
},
|
|
3260
3284
|
{
|
|
@@ -3283,21 +3307,21 @@
|
|
|
3283
3307
|
"name": "domainWindowsNode",
|
|
3284
3308
|
"optional": true,
|
|
3285
3309
|
"type": {
|
|
3286
|
-
"fqn": "
|
|
3310
|
+
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
3287
3311
|
}
|
|
3288
3312
|
}
|
|
3289
3313
|
],
|
|
3290
3314
|
"symbolId": "src/skylight-authentication/ad-authentication:AwsManagedMicrosoftAd"
|
|
3291
3315
|
},
|
|
3292
|
-
"
|
|
3293
|
-
"assembly": "
|
|
3294
|
-
"base": "
|
|
3316
|
+
"cdk-skylight.authentication.AwsManagedMicrosoftAdR53": {
|
|
3317
|
+
"assembly": "cdk-skylight",
|
|
3318
|
+
"base": "cdk-skylight.authentication.AwsManagedMicrosoftAd",
|
|
3295
3319
|
"docs": {
|
|
3296
3320
|
"remarks": "The Construct creates Managed AD with the provided Secret (Secrets Manager) or generates a new Secret.\nThe secret saved to SSM parameter store so others can use it with other Constructs (Such as Windows node or FSx)\nThe provided VPC or the new created VPC will be configured to forward DNS requests to the Managed AD with Route53 Resolvers\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createADGroup)\n\nThe createADGroup() method creates an Active Directory permission group in the domain, using the domain admin user.\nPlease note: When calling createADGroup() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete.",
|
|
3297
3321
|
"stability": "experimental",
|
|
3298
3322
|
"summary": "A Ad Authentication represents an integration pattern of Managed AD and Route 53 Resolver in a specific VPC."
|
|
3299
3323
|
},
|
|
3300
|
-
"fqn": "
|
|
3324
|
+
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftAdR53",
|
|
3301
3325
|
"initializer": {
|
|
3302
3326
|
"docs": {
|
|
3303
3327
|
"stability": "experimental"
|
|
@@ -3322,7 +3346,7 @@
|
|
|
3322
3346
|
{
|
|
3323
3347
|
"name": "props",
|
|
3324
3348
|
"type": {
|
|
3325
|
-
"fqn": "
|
|
3349
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3326
3350
|
}
|
|
3327
3351
|
}
|
|
3328
3352
|
]
|
|
@@ -3336,12 +3360,12 @@
|
|
|
3336
3360
|
"namespace": "authentication",
|
|
3337
3361
|
"symbolId": "src/skylight-authentication/ad-authentication:AwsManagedMicrosoftAdR53"
|
|
3338
3362
|
},
|
|
3339
|
-
"
|
|
3340
|
-
"assembly": "
|
|
3363
|
+
"cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType": {
|
|
3364
|
+
"assembly": "cdk-skylight",
|
|
3341
3365
|
"docs": {
|
|
3342
3366
|
"stability": "experimental"
|
|
3343
3367
|
},
|
|
3344
|
-
"fqn": "
|
|
3368
|
+
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType",
|
|
3345
3369
|
"kind": "enum",
|
|
3346
3370
|
"locationInModule": {
|
|
3347
3371
|
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
@@ -3359,13 +3383,13 @@
|
|
|
3359
3383
|
"namespace": "authentication",
|
|
3360
3384
|
"symbolId": "src/skylight-authentication/ad-authentication:AwsManagedMicrosoftConfigurationStoreType"
|
|
3361
3385
|
},
|
|
3362
|
-
"
|
|
3363
|
-
"assembly": "
|
|
3386
|
+
"cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters": {
|
|
3387
|
+
"assembly": "cdk-skylight",
|
|
3364
3388
|
"docs": {
|
|
3365
3389
|
"stability": "experimental",
|
|
3366
3390
|
"summary": "The properties of an DomainWindowsNodeProps, requires Active Directory parameter to read the Secret to join the domain Default setting: Domain joined, m5.2xlarge, latest windows, Managed by SSM."
|
|
3367
3391
|
},
|
|
3368
|
-
"fqn": "
|
|
3392
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters",
|
|
3369
3393
|
"kind": "interface",
|
|
3370
3394
|
"locationInModule": {
|
|
3371
3395
|
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
@@ -3388,7 +3412,7 @@
|
|
|
3388
3412
|
"name": "configurationStoreType",
|
|
3389
3413
|
"optional": true,
|
|
3390
3414
|
"type": {
|
|
3391
|
-
"fqn": "
|
|
3415
|
+
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType"
|
|
3392
3416
|
}
|
|
3393
3417
|
},
|
|
3394
3418
|
{
|
|
@@ -3445,13 +3469,13 @@
|
|
|
3445
3469
|
],
|
|
3446
3470
|
"symbolId": "src/skylight-authentication/ad-authentication:IAwsManagedMicrosoftAdParameters"
|
|
3447
3471
|
},
|
|
3448
|
-
"
|
|
3449
|
-
"assembly": "
|
|
3472
|
+
"cdk-skylight.authentication.IAwsManagedMicrosoftAdProps": {
|
|
3473
|
+
"assembly": "cdk-skylight",
|
|
3450
3474
|
"docs": {
|
|
3451
3475
|
"stability": "experimental",
|
|
3452
3476
|
"summary": "The properties for the AwsManagedMicrosoftAd class."
|
|
3453
3477
|
},
|
|
3454
|
-
"fqn": "
|
|
3478
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps",
|
|
3455
3479
|
"kind": "interface",
|
|
3456
3480
|
"locationInModule": {
|
|
3457
3481
|
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
@@ -3488,7 +3512,7 @@
|
|
|
3488
3512
|
"name": "configurationStore",
|
|
3489
3513
|
"optional": true,
|
|
3490
3514
|
"type": {
|
|
3491
|
-
"fqn": "
|
|
3515
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
3492
3516
|
}
|
|
3493
3517
|
},
|
|
3494
3518
|
{
|
|
@@ -3597,22 +3621,22 @@
|
|
|
3597
3621
|
],
|
|
3598
3622
|
"symbolId": "src/skylight-authentication/ad-authentication:IAwsManagedMicrosoftAdProps"
|
|
3599
3623
|
},
|
|
3600
|
-
"
|
|
3601
|
-
"assembly": "
|
|
3624
|
+
"cdk-skylight.compute.DomainWindowsNode": {
|
|
3625
|
+
"assembly": "cdk-skylight",
|
|
3602
3626
|
"base": "constructs.Construct",
|
|
3603
3627
|
"docs": {
|
|
3604
3628
|
"remarks": "The DomainWindowsNode can be customized to different instance sizes and additional permissions set just like any other EC2 Instance.\nYou can use this construct to run elevated domain tasks with domain permissions or run your application in a single instance setup.\n\nThe machine will be joined to the provided Active Directory domain using a custom CloudFormation bootstrap that will wait until the required reboot to join the domain. Then it will register the machine in SSM and pull tasks from the SSM State manager.\n\nYou can send tasks to that machine using the provided methods: runPsCommands() and runPSwithDomainAdmin()",
|
|
3605
3629
|
"stability": "experimental",
|
|
3606
3630
|
"summary": "A Domain Windows Node represents one Windows EC2 instance configured with Active Directory."
|
|
3607
3631
|
},
|
|
3608
|
-
"fqn": "
|
|
3632
|
+
"fqn": "cdk-skylight.compute.DomainWindowsNode",
|
|
3609
3633
|
"initializer": {
|
|
3610
3634
|
"docs": {
|
|
3611
3635
|
"stability": "experimental"
|
|
3612
3636
|
},
|
|
3613
3637
|
"locationInModule": {
|
|
3614
3638
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3615
|
-
"line":
|
|
3639
|
+
"line": 100
|
|
3616
3640
|
},
|
|
3617
3641
|
"parameters": [
|
|
3618
3642
|
{
|
|
@@ -3630,7 +3654,7 @@
|
|
|
3630
3654
|
{
|
|
3631
3655
|
"name": "props",
|
|
3632
3656
|
"type": {
|
|
3633
|
-
"fqn": "
|
|
3657
|
+
"fqn": "cdk-skylight.compute.IDomainWindowsNodeProps"
|
|
3634
3658
|
}
|
|
3635
3659
|
}
|
|
3636
3660
|
]
|
|
@@ -3638,7 +3662,7 @@
|
|
|
3638
3662
|
"kind": "class",
|
|
3639
3663
|
"locationInModule": {
|
|
3640
3664
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3641
|
-
"line":
|
|
3665
|
+
"line": 94
|
|
3642
3666
|
},
|
|
3643
3667
|
"methods": [
|
|
3644
3668
|
{
|
|
@@ -3648,7 +3672,7 @@
|
|
|
3648
3672
|
},
|
|
3649
3673
|
"locationInModule": {
|
|
3650
3674
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3651
|
-
"line":
|
|
3675
|
+
"line": 270
|
|
3652
3676
|
},
|
|
3653
3677
|
"name": "openRDP",
|
|
3654
3678
|
"parameters": [
|
|
@@ -3668,7 +3692,7 @@
|
|
|
3668
3692
|
},
|
|
3669
3693
|
"locationInModule": {
|
|
3670
3694
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3671
|
-
"line":
|
|
3695
|
+
"line": 255
|
|
3672
3696
|
},
|
|
3673
3697
|
"name": "runPsCommands",
|
|
3674
3698
|
"parameters": [
|
|
@@ -3698,7 +3722,7 @@
|
|
|
3698
3722
|
},
|
|
3699
3723
|
"locationInModule": {
|
|
3700
3724
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3701
|
-
"line":
|
|
3725
|
+
"line": 283
|
|
3702
3726
|
},
|
|
3703
3727
|
"name": "runPSwithDomainAdmin",
|
|
3704
3728
|
"parameters": [
|
|
@@ -3729,7 +3753,7 @@
|
|
|
3729
3753
|
},
|
|
3730
3754
|
"locationInModule": {
|
|
3731
3755
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3732
|
-
"line":
|
|
3756
|
+
"line": 239
|
|
3733
3757
|
},
|
|
3734
3758
|
"name": "runShellCommands",
|
|
3735
3759
|
"parameters": [
|
|
@@ -3758,7 +3782,7 @@
|
|
|
3758
3782
|
},
|
|
3759
3783
|
"locationInModule": {
|
|
3760
3784
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3761
|
-
"line":
|
|
3785
|
+
"line": 319
|
|
3762
3786
|
},
|
|
3763
3787
|
"name": "startInstance"
|
|
3764
3788
|
}
|
|
@@ -3773,7 +3797,7 @@
|
|
|
3773
3797
|
"immutable": true,
|
|
3774
3798
|
"locationInModule": {
|
|
3775
3799
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3776
|
-
"line":
|
|
3800
|
+
"line": 95
|
|
3777
3801
|
},
|
|
3778
3802
|
"name": "instance",
|
|
3779
3803
|
"type": {
|
|
@@ -3787,7 +3811,7 @@
|
|
|
3787
3811
|
"immutable": true,
|
|
3788
3812
|
"locationInModule": {
|
|
3789
3813
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3790
|
-
"line":
|
|
3814
|
+
"line": 96
|
|
3791
3815
|
},
|
|
3792
3816
|
"name": "nodeRole",
|
|
3793
3817
|
"type": {
|
|
@@ -3801,7 +3825,7 @@
|
|
|
3801
3825
|
"immutable": true,
|
|
3802
3826
|
"locationInModule": {
|
|
3803
3827
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3804
|
-
"line":
|
|
3828
|
+
"line": 97
|
|
3805
3829
|
},
|
|
3806
3830
|
"name": "vpc",
|
|
3807
3831
|
"type": {
|
|
@@ -3815,7 +3839,7 @@
|
|
|
3815
3839
|
"immutable": true,
|
|
3816
3840
|
"locationInModule": {
|
|
3817
3841
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3818
|
-
"line":
|
|
3842
|
+
"line": 98
|
|
3819
3843
|
},
|
|
3820
3844
|
"name": "passwordObject",
|
|
3821
3845
|
"optional": true,
|
|
@@ -3826,17 +3850,17 @@
|
|
|
3826
3850
|
],
|
|
3827
3851
|
"symbolId": "src/skylight-compute/windows-node:DomainWindowsNode"
|
|
3828
3852
|
},
|
|
3829
|
-
"
|
|
3830
|
-
"assembly": "
|
|
3853
|
+
"cdk-skylight.compute.IDomainWindowsNodeProps": {
|
|
3854
|
+
"assembly": "cdk-skylight",
|
|
3831
3855
|
"docs": {
|
|
3832
3856
|
"stability": "experimental",
|
|
3833
3857
|
"summary": "The properties of an DomainWindowsNodeProps, requires Active Directory parameter to read the Secret to join the domain Default setting: Domain joined, m5.2xlarge, latest windows, Managed by SSM."
|
|
3834
3858
|
},
|
|
3835
|
-
"fqn": "
|
|
3859
|
+
"fqn": "cdk-skylight.compute.IDomainWindowsNodeProps",
|
|
3836
3860
|
"kind": "interface",
|
|
3837
3861
|
"locationInModule": {
|
|
3838
3862
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3839
|
-
"line":
|
|
3863
|
+
"line": 36
|
|
3840
3864
|
},
|
|
3841
3865
|
"name": "IDomainWindowsNodeProps",
|
|
3842
3866
|
"namespace": "compute",
|
|
@@ -3849,7 +3873,7 @@
|
|
|
3849
3873
|
},
|
|
3850
3874
|
"locationInModule": {
|
|
3851
3875
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3852
|
-
"line":
|
|
3876
|
+
"line": 80
|
|
3853
3877
|
},
|
|
3854
3878
|
"name": "vpc",
|
|
3855
3879
|
"type": {
|
|
@@ -3865,7 +3889,7 @@
|
|
|
3865
3889
|
},
|
|
3866
3890
|
"locationInModule": {
|
|
3867
3891
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3868
|
-
"line":
|
|
3892
|
+
"line": 59
|
|
3869
3893
|
},
|
|
3870
3894
|
"name": "amiName",
|
|
3871
3895
|
"optional": true,
|
|
@@ -3880,7 +3904,7 @@
|
|
|
3880
3904
|
},
|
|
3881
3905
|
"locationInModule": {
|
|
3882
3906
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3883
|
-
"line":
|
|
3907
|
+
"line": 69
|
|
3884
3908
|
},
|
|
3885
3909
|
"name": "domainName",
|
|
3886
3910
|
"optional": true,
|
|
@@ -3897,7 +3921,7 @@
|
|
|
3897
3921
|
},
|
|
3898
3922
|
"locationInModule": {
|
|
3899
3923
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3900
|
-
"line":
|
|
3924
|
+
"line": 41
|
|
3901
3925
|
},
|
|
3902
3926
|
"name": "iamManagedPoliciesList",
|
|
3903
3927
|
"optional": true,
|
|
@@ -3919,7 +3943,7 @@
|
|
|
3919
3943
|
},
|
|
3920
3944
|
"locationInModule": {
|
|
3921
3945
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3922
|
-
"line":
|
|
3946
|
+
"line": 47
|
|
3923
3947
|
},
|
|
3924
3948
|
"name": "instanceType",
|
|
3925
3949
|
"optional": true,
|
|
@@ -3934,7 +3958,7 @@
|
|
|
3934
3958
|
},
|
|
3935
3959
|
"locationInModule": {
|
|
3936
3960
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3937
|
-
"line":
|
|
3961
|
+
"line": 70
|
|
3938
3962
|
},
|
|
3939
3963
|
"name": "passwordObject",
|
|
3940
3964
|
"optional": true,
|
|
@@ -3952,7 +3976,7 @@
|
|
|
3952
3976
|
},
|
|
3953
3977
|
"locationInModule": {
|
|
3954
3978
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3955
|
-
"line":
|
|
3979
|
+
"line": 54
|
|
3956
3980
|
},
|
|
3957
3981
|
"name": "usePrivateSubnet",
|
|
3958
3982
|
"optional": true,
|
|
@@ -3970,7 +3994,7 @@
|
|
|
3970
3994
|
},
|
|
3971
3995
|
"locationInModule": {
|
|
3972
3996
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3973
|
-
"line":
|
|
3997
|
+
"line": 67
|
|
3974
3998
|
},
|
|
3975
3999
|
"name": "userData",
|
|
3976
4000
|
"optional": true,
|
|
@@ -3986,7 +4010,7 @@
|
|
|
3986
4010
|
},
|
|
3987
4011
|
"locationInModule": {
|
|
3988
4012
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3989
|
-
"line":
|
|
4013
|
+
"line": 75
|
|
3990
4014
|
},
|
|
3991
4015
|
"name": "windowsMachine",
|
|
3992
4016
|
"optional": true,
|
|
@@ -3997,12 +4021,12 @@
|
|
|
3997
4021
|
],
|
|
3998
4022
|
"symbolId": "src/skylight-compute/windows-node:IDomainWindowsNodeProps"
|
|
3999
4023
|
},
|
|
4000
|
-
"
|
|
4001
|
-
"assembly": "
|
|
4024
|
+
"cdk-skylight.compute.IRuntimeNodes": {
|
|
4025
|
+
"assembly": "cdk-skylight",
|
|
4002
4026
|
"docs": {
|
|
4003
4027
|
"stability": "experimental"
|
|
4004
4028
|
},
|
|
4005
|
-
"fqn": "
|
|
4029
|
+
"fqn": "cdk-skylight.compute.IRuntimeNodes",
|
|
4006
4030
|
"kind": "interface",
|
|
4007
4031
|
"locationInModule": {
|
|
4008
4032
|
"filename": "src/skylight-compute/eks/windows-eks-nodes.ts",
|
|
@@ -4024,7 +4048,7 @@
|
|
|
4024
4048
|
{
|
|
4025
4049
|
"name": "adParametersStore",
|
|
4026
4050
|
"type": {
|
|
4027
|
-
"fqn": "
|
|
4051
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4028
4052
|
}
|
|
4029
4053
|
}
|
|
4030
4054
|
]
|
|
@@ -4064,7 +4088,7 @@
|
|
|
4064
4088
|
{
|
|
4065
4089
|
"name": "adParametersStore",
|
|
4066
4090
|
"type": {
|
|
4067
|
-
"fqn": "
|
|
4091
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4068
4092
|
}
|
|
4069
4093
|
},
|
|
4070
4094
|
{
|
|
@@ -4096,13 +4120,13 @@
|
|
|
4096
4120
|
{
|
|
4097
4121
|
"name": "adParametersStore",
|
|
4098
4122
|
"type": {
|
|
4099
|
-
"fqn": "
|
|
4123
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4100
4124
|
}
|
|
4101
4125
|
},
|
|
4102
4126
|
{
|
|
4103
4127
|
"name": "fsxParametersStore",
|
|
4104
4128
|
"type": {
|
|
4105
|
-
"fqn": "
|
|
4129
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4106
4130
|
}
|
|
4107
4131
|
},
|
|
4108
4132
|
{
|
|
@@ -4140,12 +4164,12 @@
|
|
|
4140
4164
|
"namespace": "compute",
|
|
4141
4165
|
"symbolId": "src/skylight-compute/eks/windows-eks-nodes:IRuntimeNodes"
|
|
4142
4166
|
},
|
|
4143
|
-
"
|
|
4144
|
-
"assembly": "
|
|
4167
|
+
"cdk-skylight.compute.IWindowsEKSClusterParameters": {
|
|
4168
|
+
"assembly": "cdk-skylight",
|
|
4145
4169
|
"docs": {
|
|
4146
4170
|
"stability": "experimental"
|
|
4147
4171
|
},
|
|
4148
|
-
"fqn": "
|
|
4172
|
+
"fqn": "cdk-skylight.compute.IWindowsEKSClusterParameters",
|
|
4149
4173
|
"kind": "interface",
|
|
4150
4174
|
"locationInModule": {
|
|
4151
4175
|
"filename": "src/skylight-compute/eks/windows-eks-cluster.ts",
|
|
@@ -4191,12 +4215,12 @@
|
|
|
4191
4215
|
],
|
|
4192
4216
|
"symbolId": "src/skylight-compute/eks/windows-eks-cluster:IWindowsEKSClusterParameters"
|
|
4193
4217
|
},
|
|
4194
|
-
"
|
|
4195
|
-
"assembly": "
|
|
4218
|
+
"cdk-skylight.compute.IWindowsEKSClusterProps": {
|
|
4219
|
+
"assembly": "cdk-skylight",
|
|
4196
4220
|
"docs": {
|
|
4197
4221
|
"stability": "experimental"
|
|
4198
4222
|
},
|
|
4199
|
-
"fqn": "
|
|
4223
|
+
"fqn": "cdk-skylight.compute.IWindowsEKSClusterProps",
|
|
4200
4224
|
"kind": "interface",
|
|
4201
4225
|
"locationInModule": {
|
|
4202
4226
|
"filename": "src/skylight-compute/eks/windows-eks-cluster.ts",
|
|
@@ -4233,18 +4257,18 @@
|
|
|
4233
4257
|
"name": "eksSsmParameters",
|
|
4234
4258
|
"optional": true,
|
|
4235
4259
|
"type": {
|
|
4236
|
-
"fqn": "
|
|
4260
|
+
"fqn": "cdk-skylight.compute.IWindowsEKSClusterParameters"
|
|
4237
4261
|
}
|
|
4238
4262
|
}
|
|
4239
4263
|
],
|
|
4240
4264
|
"symbolId": "src/skylight-compute/eks/windows-eks-cluster:IWindowsEKSClusterProps"
|
|
4241
4265
|
},
|
|
4242
|
-
"
|
|
4243
|
-
"assembly": "
|
|
4266
|
+
"cdk-skylight.compute.IWindowsEKSNodesProps": {
|
|
4267
|
+
"assembly": "cdk-skylight",
|
|
4244
4268
|
"docs": {
|
|
4245
4269
|
"stability": "experimental"
|
|
4246
4270
|
},
|
|
4247
|
-
"fqn": "
|
|
4271
|
+
"fqn": "cdk-skylight.compute.IWindowsEKSNodesProps",
|
|
4248
4272
|
"kind": "interface",
|
|
4249
4273
|
"locationInModule": {
|
|
4250
4274
|
"filename": "src/skylight-compute/eks/windows-eks-nodes.ts",
|
|
@@ -4304,13 +4328,13 @@
|
|
|
4304
4328
|
],
|
|
4305
4329
|
"symbolId": "src/skylight-compute/eks/windows-eks-nodes:IWindowsEKSNodesProps"
|
|
4306
4330
|
},
|
|
4307
|
-
"
|
|
4308
|
-
"assembly": "
|
|
4331
|
+
"cdk-skylight.compute.WindowsEKSCluster": {
|
|
4332
|
+
"assembly": "cdk-skylight",
|
|
4309
4333
|
"base": "constructs.Construct",
|
|
4310
4334
|
"docs": {
|
|
4311
4335
|
"stability": "experimental"
|
|
4312
4336
|
},
|
|
4313
|
-
"fqn": "
|
|
4337
|
+
"fqn": "cdk-skylight.compute.WindowsEKSCluster",
|
|
4314
4338
|
"initializer": {
|
|
4315
4339
|
"docs": {
|
|
4316
4340
|
"stability": "experimental"
|
|
@@ -4335,7 +4359,7 @@
|
|
|
4335
4359
|
{
|
|
4336
4360
|
"name": "props",
|
|
4337
4361
|
"type": {
|
|
4338
|
-
"fqn": "
|
|
4362
|
+
"fqn": "cdk-skylight.compute.IWindowsEKSClusterProps"
|
|
4339
4363
|
}
|
|
4340
4364
|
}
|
|
4341
4365
|
]
|
|
@@ -4365,13 +4389,13 @@
|
|
|
4365
4389
|
],
|
|
4366
4390
|
"symbolId": "src/skylight-compute/eks/windows-eks-cluster:WindowsEKSCluster"
|
|
4367
4391
|
},
|
|
4368
|
-
"
|
|
4369
|
-
"assembly": "
|
|
4392
|
+
"cdk-skylight.compute.WindowsEKSNodes": {
|
|
4393
|
+
"assembly": "cdk-skylight",
|
|
4370
4394
|
"base": "constructs.Construct",
|
|
4371
4395
|
"docs": {
|
|
4372
4396
|
"stability": "experimental"
|
|
4373
4397
|
},
|
|
4374
|
-
"fqn": "
|
|
4398
|
+
"fqn": "cdk-skylight.compute.WindowsEKSNodes",
|
|
4375
4399
|
"initializer": {
|
|
4376
4400
|
"docs": {
|
|
4377
4401
|
"stability": "experimental"
|
|
@@ -4396,13 +4420,13 @@
|
|
|
4396
4420
|
{
|
|
4397
4421
|
"name": "props",
|
|
4398
4422
|
"type": {
|
|
4399
|
-
"fqn": "
|
|
4423
|
+
"fqn": "cdk-skylight.compute.IWindowsEKSNodesProps"
|
|
4400
4424
|
}
|
|
4401
4425
|
}
|
|
4402
4426
|
]
|
|
4403
4427
|
},
|
|
4404
4428
|
"interfaces": [
|
|
4405
|
-
"
|
|
4429
|
+
"cdk-skylight.compute.IRuntimeNodes"
|
|
4406
4430
|
],
|
|
4407
4431
|
"kind": "class",
|
|
4408
4432
|
"locationInModule": {
|
|
@@ -4420,12 +4444,12 @@
|
|
|
4420
4444
|
"line": 162
|
|
4421
4445
|
},
|
|
4422
4446
|
"name": "addAdDependency",
|
|
4423
|
-
"overrides": "
|
|
4447
|
+
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4424
4448
|
"parameters": [
|
|
4425
4449
|
{
|
|
4426
4450
|
"name": "adParametersStore",
|
|
4427
4451
|
"type": {
|
|
4428
|
-
"fqn": "
|
|
4452
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4429
4453
|
}
|
|
4430
4454
|
}
|
|
4431
4455
|
]
|
|
@@ -4440,7 +4464,7 @@
|
|
|
4440
4464
|
"line": 343
|
|
4441
4465
|
},
|
|
4442
4466
|
"name": "addEKSDependency",
|
|
4443
|
-
"overrides": "
|
|
4467
|
+
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4444
4468
|
"parameters": [
|
|
4445
4469
|
{
|
|
4446
4470
|
"name": "eksCluster",
|
|
@@ -4460,12 +4484,12 @@
|
|
|
4460
4484
|
"line": 363
|
|
4461
4485
|
},
|
|
4462
4486
|
"name": "addLocalCredFile",
|
|
4463
|
-
"overrides": "
|
|
4487
|
+
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4464
4488
|
"parameters": [
|
|
4465
4489
|
{
|
|
4466
4490
|
"name": "adParametersStore",
|
|
4467
4491
|
"type": {
|
|
4468
|
-
"fqn": "
|
|
4492
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4469
4493
|
}
|
|
4470
4494
|
},
|
|
4471
4495
|
{
|
|
@@ -4492,18 +4516,18 @@
|
|
|
4492
4516
|
"line": 295
|
|
4493
4517
|
},
|
|
4494
4518
|
"name": "addStorageDependency",
|
|
4495
|
-
"overrides": "
|
|
4519
|
+
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4496
4520
|
"parameters": [
|
|
4497
4521
|
{
|
|
4498
4522
|
"name": "adParametersStore",
|
|
4499
4523
|
"type": {
|
|
4500
|
-
"fqn": "
|
|
4524
|
+
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4501
4525
|
}
|
|
4502
4526
|
},
|
|
4503
4527
|
{
|
|
4504
4528
|
"name": "fsxParametersStore",
|
|
4505
4529
|
"type": {
|
|
4506
|
-
"fqn": "
|
|
4530
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4507
4531
|
}
|
|
4508
4532
|
},
|
|
4509
4533
|
{
|
|
@@ -4524,7 +4548,7 @@
|
|
|
4524
4548
|
"line": 158
|
|
4525
4549
|
},
|
|
4526
4550
|
"name": "addUserData",
|
|
4527
|
-
"overrides": "
|
|
4551
|
+
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4528
4552
|
"parameters": [
|
|
4529
4553
|
{
|
|
4530
4554
|
"name": "commands",
|
|
@@ -4678,15 +4702,15 @@
|
|
|
4678
4702
|
],
|
|
4679
4703
|
"symbolId": "src/skylight-compute/eks/windows-eks-nodes:WindowsEKSNodes"
|
|
4680
4704
|
},
|
|
4681
|
-
"
|
|
4682
|
-
"assembly": "
|
|
4705
|
+
"cdk-skylight.storage.FSxWindows": {
|
|
4706
|
+
"assembly": "cdk-skylight",
|
|
4683
4707
|
"base": "constructs.Construct",
|
|
4684
4708
|
"docs": {
|
|
4685
4709
|
"remarks": "The Construct creates Amazon FSx for Windows\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createFolder)\n\nThe createFolder() method creates an SMB Folder in the FSx filesystem, using the domain admin user.\nPlease note: When calling createFolder() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete .",
|
|
4686
4710
|
"stability": "experimental",
|
|
4687
4711
|
"summary": "A FSxWindows represents an integration pattern of Amazon FSx and Managed AD in a specific VPC."
|
|
4688
4712
|
},
|
|
4689
|
-
"fqn": "
|
|
4713
|
+
"fqn": "cdk-skylight.storage.FSxWindows",
|
|
4690
4714
|
"initializer": {
|
|
4691
4715
|
"docs": {
|
|
4692
4716
|
"stability": "experimental"
|
|
@@ -4711,7 +4735,7 @@
|
|
|
4711
4735
|
{
|
|
4712
4736
|
"name": "props",
|
|
4713
4737
|
"type": {
|
|
4714
|
-
"fqn": "
|
|
4738
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsProps"
|
|
4715
4739
|
}
|
|
4716
4740
|
}
|
|
4717
4741
|
]
|
|
@@ -4735,7 +4759,7 @@
|
|
|
4735
4759
|
{
|
|
4736
4760
|
"name": "worker",
|
|
4737
4761
|
"type": {
|
|
4738
|
-
"fqn": "
|
|
4762
|
+
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
4739
4763
|
}
|
|
4740
4764
|
},
|
|
4741
4765
|
{
|
|
@@ -4777,7 +4801,7 @@
|
|
|
4777
4801
|
],
|
|
4778
4802
|
"returns": {
|
|
4779
4803
|
"type": {
|
|
4780
|
-
"fqn": "
|
|
4804
|
+
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
4781
4805
|
}
|
|
4782
4806
|
}
|
|
4783
4807
|
}
|
|
@@ -4810,7 +4834,7 @@
|
|
|
4810
4834
|
},
|
|
4811
4835
|
"name": "props",
|
|
4812
4836
|
"type": {
|
|
4813
|
-
"fqn": "
|
|
4837
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsProps"
|
|
4814
4838
|
}
|
|
4815
4839
|
},
|
|
4816
4840
|
{
|
|
@@ -4824,18 +4848,18 @@
|
|
|
4824
4848
|
},
|
|
4825
4849
|
"name": "ssmParameters",
|
|
4826
4850
|
"type": {
|
|
4827
|
-
"fqn": "
|
|
4851
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4828
4852
|
}
|
|
4829
4853
|
}
|
|
4830
4854
|
],
|
|
4831
4855
|
"symbolId": "src/skylight-storage/fsx-windows:FSxWindows"
|
|
4832
4856
|
},
|
|
4833
|
-
"
|
|
4834
|
-
"assembly": "
|
|
4857
|
+
"cdk-skylight.storage.IFSxWindowsParameters": {
|
|
4858
|
+
"assembly": "cdk-skylight",
|
|
4835
4859
|
"docs": {
|
|
4836
4860
|
"stability": "experimental"
|
|
4837
4861
|
},
|
|
4838
|
-
"fqn": "
|
|
4862
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsParameters",
|
|
4839
4863
|
"kind": "interface",
|
|
4840
4864
|
"locationInModule": {
|
|
4841
4865
|
"filename": "src/skylight-storage/fsx-windows.ts",
|
|
@@ -4881,13 +4905,13 @@
|
|
|
4881
4905
|
],
|
|
4882
4906
|
"symbolId": "src/skylight-storage/fsx-windows:IFSxWindowsParameters"
|
|
4883
4907
|
},
|
|
4884
|
-
"
|
|
4885
|
-
"assembly": "
|
|
4908
|
+
"cdk-skylight.storage.IFSxWindowsProps": {
|
|
4909
|
+
"assembly": "cdk-skylight",
|
|
4886
4910
|
"docs": {
|
|
4887
4911
|
"stability": "experimental",
|
|
4888
4912
|
"summary": "The properties for the PersistentStorage class."
|
|
4889
4913
|
},
|
|
4890
|
-
"fqn": "
|
|
4914
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsProps",
|
|
4891
4915
|
"kind": "interface",
|
|
4892
4916
|
"locationInModule": {
|
|
4893
4917
|
"filename": "src/skylight-storage/fsx-windows.ts",
|
|
@@ -4988,7 +5012,7 @@
|
|
|
4988
5012
|
"name": "ssmParameters",
|
|
4989
5013
|
"optional": true,
|
|
4990
5014
|
"type": {
|
|
4991
|
-
"fqn": "
|
|
5015
|
+
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4992
5016
|
}
|
|
4993
5017
|
},
|
|
4994
5018
|
{
|
|
@@ -5013,5 +5037,5 @@
|
|
|
5013
5037
|
}
|
|
5014
5038
|
},
|
|
5015
5039
|
"version": "0.0.0",
|
|
5016
|
-
"fingerprint": "
|
|
5040
|
+
"fingerprint": "qE79iP4yPirkDc5+wjenJPdWDAUf+wEjJ9XLNePXnqQ="
|
|
5017
5041
|
}
|