Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aws-cdk/aws-directoryservice

Package Overview
Dependencies
Maintainers
4
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/aws-directoryservice - npm Package Compare versions

Comparing version 1.203.0 to 1.204.0

2

.jsii.tabl.json

@@ -1,1 +0,1 @@

{"version":"2","toolVersion":"1.80.0","snippets":{"6af27725a49fed7011011f203e2cc07324f190b56c14efa1a7a2aa301fc12cbc":{"translations":{"python":{"source":"import aws_cdk.aws_directoryservice as directoryservice","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.DirectoryService;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.directoryservice.*;","version":"1"},"go":{"source":"import directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"","version":"1"},"$":{"source":"import * as directoryservice from '@aws-cdk/aws-directoryservice';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-directoryservice"},"field":{"field":"markdown","line":18}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as directoryservice from '@aws-cdk/aws-directoryservice';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"98c53a8ac13ecaadd93215f1915779049e326e57495df73e840043c1f85bc7ea":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_microsoft_aD = directoryservice.CfnMicrosoftAD(self, \"MyCfnMicrosoftAD\",\n name=\"name\",\n password=\"password\",\n vpc_settings=directoryservice.CfnMicrosoftAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n edition=\"edition\",\n enable_sso=False,\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnMicrosoftAD = new CfnMicrosoftAD(this, \"MyCfnMicrosoftAD\", new CfnMicrosoftADProps {\n Name = \"name\",\n Password = \"password\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Edition = \"edition\",\n EnableSso = false,\n ShortName = \"shortName\"\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnMicrosoftAD cfnMicrosoftAD = CfnMicrosoftAD.Builder.create(this, \"MyCfnMicrosoftAD\")\n .name(\"name\")\n .password(\"password\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .edition(\"edition\")\n .enableSso(false)\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnMicrosoftAD := directoryservice.NewCfnMicrosoftAD(this, jsii.String(\"MyCfnMicrosoftAD\"), &CfnMicrosoftADProps{\n\tName: jsii.String(\"name\"),\n\tPassword: jsii.String(\"password\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tEdition: jsii.String(\"edition\"),\n\tEnableSso: jsii.Boolean(false),\n\tShortName: jsii.String(\"shortName\"),\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnMicrosoftAD = new directoryservice.CfnMicrosoftAD(this, 'MyCfnMicrosoftAD', {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnMicrosoftAD"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnMicrosoftAD","@aws-cdk/aws-directoryservice.CfnMicrosoftADProps","@aws-cdk/core.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnMicrosoftAD = new directoryservice.CfnMicrosoftAD(this, 'MyCfnMicrosoftAD', {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":8,"75":13,"91":2,"104":1,"192":1,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":9,"290":1},"fqnsFingerprint":"966d72329185a23b73aaf5ec9093eecb8bab2b2ab318da4d0bb70c8e699cc07a"},"8d89edcac8a8bc444740e4207a8ebef5b085ddf5d7cf0e511251410a770216ee":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\nvpc_settings_property = directoryservice.CfnMicrosoftAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar vpcSettingsProperty = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nVpcSettingsProperty vpcSettingsProperty = VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\nvpcSettingsProperty := &VpcSettingsProperty{\n\tSubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\tVpcId: jsii.String(\"vpcId\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst vpcSettingsProperty: directoryservice.CfnMicrosoftAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnMicrosoftAD.VpcSettingsProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnMicrosoftAD.VpcSettingsProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst vpcSettingsProperty: directoryservice.CfnMicrosoftAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"192":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"b94b02c8512da157f321b9c6859601dc1c8eef2d6cb143591699577247516174"},"d1b3556792cc0d429e7e13063457081c71df8c63d187037081142e84ede67e18":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_microsoft_aDProps = directoryservice.CfnMicrosoftADProps(\n name=\"name\",\n password=\"password\",\n vpc_settings=directoryservice.CfnMicrosoftAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n edition=\"edition\",\n enable_sso=False,\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnMicrosoftADProps = new CfnMicrosoftADProps {\n Name = \"name\",\n Password = \"password\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Edition = \"edition\",\n EnableSso = false,\n ShortName = \"shortName\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnMicrosoftADProps cfnMicrosoftADProps = CfnMicrosoftADProps.builder()\n .name(\"name\")\n .password(\"password\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .edition(\"edition\")\n .enableSso(false)\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnMicrosoftADProps := &CfnMicrosoftADProps{\n\tName: jsii.String(\"name\"),\n\tPassword: jsii.String(\"password\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tEdition: jsii.String(\"edition\"),\n\tEnableSso: jsii.Boolean(false),\n\tShortName: jsii.String(\"shortName\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnMicrosoftADProps: directoryservice.CfnMicrosoftADProps = {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnMicrosoftADProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnMicrosoftADProps"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnMicrosoftADProps: directoryservice.CfnMicrosoftADProps = {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":7,"75":13,"91":2,"153":1,"169":1,"192":1,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":9,"290":1},"fqnsFingerprint":"4947aa277b44de7bbec528b9acfc7c295e96468b7716c2c4a23ee2b03958bef0"},"c0dde091f04ae2183a351f31393812ffddfed745c8e44b035f12e00249efe87c":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_simple_aD = directoryservice.CfnSimpleAD(self, \"MyCfnSimpleAD\",\n name=\"name\",\n size=\"size\",\n vpc_settings=directoryservice.CfnSimpleAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n description=\"description\",\n enable_sso=False,\n password=\"password\",\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnSimpleAD = new CfnSimpleAD(this, \"MyCfnSimpleAD\", new CfnSimpleADProps {\n Name = \"name\",\n Size = \"size\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Description = \"description\",\n EnableSso = false,\n Password = \"password\",\n ShortName = \"shortName\"\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnSimpleAD cfnSimpleAD = CfnSimpleAD.Builder.create(this, \"MyCfnSimpleAD\")\n .name(\"name\")\n .size(\"size\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .description(\"description\")\n .enableSso(false)\n .password(\"password\")\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnSimpleAD := directoryservice.NewCfnSimpleAD(this, jsii.String(\"MyCfnSimpleAD\"), &CfnSimpleADProps{\n\tName: jsii.String(\"name\"),\n\tSize: jsii.String(\"size\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tDescription: jsii.String(\"description\"),\n\tEnableSso: jsii.Boolean(false),\n\tPassword: jsii.String(\"password\"),\n\tShortName: jsii.String(\"shortName\"),\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnSimpleAD = new directoryservice.CfnSimpleAD(this, 'MyCfnSimpleAD', {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnSimpleAD"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnSimpleAD","@aws-cdk/aws-directoryservice.CfnSimpleADProps","@aws-cdk/core.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnSimpleAD = new directoryservice.CfnSimpleAD(this, 'MyCfnSimpleAD', {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":9,"75":14,"91":2,"104":1,"192":1,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":10,"290":1},"fqnsFingerprint":"b80183f133769d3888d0e57e6f2ed773ac6b1c5c9cd8ea63a99262f7b443eb36"},"85c74e40cc030347fd203eccc12eca1c2543d832f1aa498060b7f6272641e537":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\nvpc_settings_property = directoryservice.CfnSimpleAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar vpcSettingsProperty = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nVpcSettingsProperty vpcSettingsProperty = VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\nvpcSettingsProperty := &VpcSettingsProperty{\n\tSubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\tVpcId: jsii.String(\"vpcId\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst vpcSettingsProperty: directoryservice.CfnSimpleAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnSimpleAD.VpcSettingsProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnSimpleAD.VpcSettingsProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst vpcSettingsProperty: directoryservice.CfnSimpleAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"192":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"86bf591164255419002b3e267939a4f6b13d8e08a094080c622be7137abf976d"},"6ce9759ce3083f44073828b1e177b61373ab9bd424f942207f6787d5c4ae88a8":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_simple_aDProps = directoryservice.CfnSimpleADProps(\n name=\"name\",\n size=\"size\",\n vpc_settings=directoryservice.CfnSimpleAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n description=\"description\",\n enable_sso=False,\n password=\"password\",\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnSimpleADProps = new CfnSimpleADProps {\n Name = \"name\",\n Size = \"size\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Description = \"description\",\n EnableSso = false,\n Password = \"password\",\n ShortName = \"shortName\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnSimpleADProps cfnSimpleADProps = CfnSimpleADProps.builder()\n .name(\"name\")\n .size(\"size\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .description(\"description\")\n .enableSso(false)\n .password(\"password\")\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnSimpleADProps := &CfnSimpleADProps{\n\tName: jsii.String(\"name\"),\n\tSize: jsii.String(\"size\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tDescription: jsii.String(\"description\"),\n\tEnableSso: jsii.Boolean(false),\n\tPassword: jsii.String(\"password\"),\n\tShortName: jsii.String(\"shortName\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnSimpleADProps: directoryservice.CfnSimpleADProps = {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnSimpleADProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnSimpleADProps"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnSimpleADProps: directoryservice.CfnSimpleADProps = {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":8,"75":14,"91":2,"153":1,"169":1,"192":1,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":10,"290":1},"fqnsFingerprint":"a69428662c092c5da06a57d0cf37249eeaf59e6b049ec95397df450fd8a68b29"}}}
{"version":"2","toolVersion":"1.84.0","snippets":{"6af27725a49fed7011011f203e2cc07324f190b56c14efa1a7a2aa301fc12cbc":{"translations":{"python":{"source":"import aws_cdk.aws_directoryservice as directoryservice","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.DirectoryService;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.directoryservice.*;","version":"1"},"go":{"source":"import directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"","version":"1"},"$":{"source":"import * as directoryservice from '@aws-cdk/aws-directoryservice';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-directoryservice"},"field":{"field":"markdown","line":21}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as directoryservice from '@aws-cdk/aws-directoryservice';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"98c53a8ac13ecaadd93215f1915779049e326e57495df73e840043c1f85bc7ea":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_microsoft_aD = directoryservice.CfnMicrosoftAD(self, \"MyCfnMicrosoftAD\",\n name=\"name\",\n password=\"password\",\n vpc_settings=directoryservice.CfnMicrosoftAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n edition=\"edition\",\n enable_sso=False,\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnMicrosoftAD = new CfnMicrosoftAD(this, \"MyCfnMicrosoftAD\", new CfnMicrosoftADProps {\n Name = \"name\",\n Password = \"password\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Edition = \"edition\",\n EnableSso = false,\n ShortName = \"shortName\"\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnMicrosoftAD cfnMicrosoftAD = CfnMicrosoftAD.Builder.create(this, \"MyCfnMicrosoftAD\")\n .name(\"name\")\n .password(\"password\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .edition(\"edition\")\n .enableSso(false)\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnMicrosoftAD := directoryservice.NewCfnMicrosoftAD(this, jsii.String(\"MyCfnMicrosoftAD\"), &CfnMicrosoftADProps{\n\tName: jsii.String(\"name\"),\n\tPassword: jsii.String(\"password\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tEdition: jsii.String(\"edition\"),\n\tEnableSso: jsii.Boolean(false),\n\tShortName: jsii.String(\"shortName\"),\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnMicrosoftAD = new directoryservice.CfnMicrosoftAD(this, 'MyCfnMicrosoftAD', {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnMicrosoftAD"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnMicrosoftAD","@aws-cdk/aws-directoryservice.CfnMicrosoftADProps","@aws-cdk/core.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnMicrosoftAD = new directoryservice.CfnMicrosoftAD(this, 'MyCfnMicrosoftAD', {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":8,"75":13,"91":2,"104":1,"192":1,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":9,"290":1},"fqnsFingerprint":"966d72329185a23b73aaf5ec9093eecb8bab2b2ab318da4d0bb70c8e699cc07a"},"8d89edcac8a8bc444740e4207a8ebef5b085ddf5d7cf0e511251410a770216ee":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\nvpc_settings_property = directoryservice.CfnMicrosoftAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar vpcSettingsProperty = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nVpcSettingsProperty vpcSettingsProperty = VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\nvpcSettingsProperty := &VpcSettingsProperty{\n\tSubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\tVpcId: jsii.String(\"vpcId\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst vpcSettingsProperty: directoryservice.CfnMicrosoftAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnMicrosoftAD.VpcSettingsProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnMicrosoftAD.VpcSettingsProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst vpcSettingsProperty: directoryservice.CfnMicrosoftAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"192":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"b94b02c8512da157f321b9c6859601dc1c8eef2d6cb143591699577247516174"},"d1b3556792cc0d429e7e13063457081c71df8c63d187037081142e84ede67e18":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_microsoft_aDProps = directoryservice.CfnMicrosoftADProps(\n name=\"name\",\n password=\"password\",\n vpc_settings=directoryservice.CfnMicrosoftAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n edition=\"edition\",\n enable_sso=False,\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnMicrosoftADProps = new CfnMicrosoftADProps {\n Name = \"name\",\n Password = \"password\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Edition = \"edition\",\n EnableSso = false,\n ShortName = \"shortName\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnMicrosoftADProps cfnMicrosoftADProps = CfnMicrosoftADProps.builder()\n .name(\"name\")\n .password(\"password\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .edition(\"edition\")\n .enableSso(false)\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnMicrosoftADProps := &CfnMicrosoftADProps{\n\tName: jsii.String(\"name\"),\n\tPassword: jsii.String(\"password\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tEdition: jsii.String(\"edition\"),\n\tEnableSso: jsii.Boolean(false),\n\tShortName: jsii.String(\"shortName\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnMicrosoftADProps: directoryservice.CfnMicrosoftADProps = {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnMicrosoftADProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnMicrosoftADProps"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnMicrosoftADProps: directoryservice.CfnMicrosoftADProps = {\n name: 'name',\n password: 'password',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n edition: 'edition',\n enableSso: false,\n shortName: 'shortName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":7,"75":13,"91":2,"153":1,"169":1,"192":1,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":9,"290":1},"fqnsFingerprint":"4947aa277b44de7bbec528b9acfc7c295e96468b7716c2c4a23ee2b03958bef0"},"c0dde091f04ae2183a351f31393812ffddfed745c8e44b035f12e00249efe87c":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_simple_aD = directoryservice.CfnSimpleAD(self, \"MyCfnSimpleAD\",\n name=\"name\",\n size=\"size\",\n vpc_settings=directoryservice.CfnSimpleAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n description=\"description\",\n enable_sso=False,\n password=\"password\",\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnSimpleAD = new CfnSimpleAD(this, \"MyCfnSimpleAD\", new CfnSimpleADProps {\n Name = \"name\",\n Size = \"size\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Description = \"description\",\n EnableSso = false,\n Password = \"password\",\n ShortName = \"shortName\"\n});","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnSimpleAD cfnSimpleAD = CfnSimpleAD.Builder.create(this, \"MyCfnSimpleAD\")\n .name(\"name\")\n .size(\"size\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .description(\"description\")\n .enableSso(false)\n .password(\"password\")\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnSimpleAD := directoryservice.NewCfnSimpleAD(this, jsii.String(\"MyCfnSimpleAD\"), &CfnSimpleADProps{\n\tName: jsii.String(\"name\"),\n\tSize: jsii.String(\"size\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tDescription: jsii.String(\"description\"),\n\tEnableSso: jsii.Boolean(false),\n\tPassword: jsii.String(\"password\"),\n\tShortName: jsii.String(\"shortName\"),\n})","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnSimpleAD = new directoryservice.CfnSimpleAD(this, 'MyCfnSimpleAD', {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnSimpleAD"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnSimpleAD","@aws-cdk/aws-directoryservice.CfnSimpleADProps","@aws-cdk/core.Construct"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnSimpleAD = new directoryservice.CfnSimpleAD(this, 'MyCfnSimpleAD', {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":9,"75":14,"91":2,"104":1,"192":1,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":10,"290":1},"fqnsFingerprint":"b80183f133769d3888d0e57e6f2ed773ac6b1c5c9cd8ea63a99262f7b443eb36"},"85c74e40cc030347fd203eccc12eca1c2543d832f1aa498060b7f6272641e537":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\nvpc_settings_property = directoryservice.CfnSimpleAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar vpcSettingsProperty = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nVpcSettingsProperty vpcSettingsProperty = VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\nvpcSettingsProperty := &VpcSettingsProperty{\n\tSubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\tVpcId: jsii.String(\"vpcId\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst vpcSettingsProperty: directoryservice.CfnSimpleAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnSimpleAD.VpcSettingsProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnSimpleAD.VpcSettingsProperty"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst vpcSettingsProperty: directoryservice.CfnSimpleAD.VpcSettingsProperty = {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":7,"153":2,"169":1,"192":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":2,"290":1},"fqnsFingerprint":"86bf591164255419002b3e267939a4f6b13d8e08a094080c622be7137abf976d"},"6ce9759ce3083f44073828b1e177b61373ab9bd424f942207f6787d5c4ae88a8":{"translations":{"python":{"source":"# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.aws_directoryservice as directoryservice\n\ncfn_simple_aDProps = directoryservice.CfnSimpleADProps(\n name=\"name\",\n size=\"size\",\n vpc_settings=directoryservice.CfnSimpleAD.VpcSettingsProperty(\n subnet_ids=[\"subnetIds\"],\n vpc_id=\"vpcId\"\n ),\n\n # the properties below are optional\n create_alias=False,\n description=\"description\",\n enable_sso=False,\n password=\"password\",\n short_name=\"shortName\"\n)","version":"2"},"csharp":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.AWS.DirectoryService;\n\nvar cfnSimpleADProps = new CfnSimpleADProps {\n Name = \"name\",\n Size = \"size\",\n VpcSettings = new VpcSettingsProperty {\n SubnetIds = new [] { \"subnetIds\" },\n VpcId = \"vpcId\"\n },\n\n // the properties below are optional\n CreateAlias = false,\n Description = \"description\",\n EnableSso = false,\n Password = \"password\",\n ShortName = \"shortName\"\n};","version":"1"},"java":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.services.directoryservice.*;\n\nCfnSimpleADProps cfnSimpleADProps = CfnSimpleADProps.builder()\n .name(\"name\")\n .size(\"size\")\n .vpcSettings(VpcSettingsProperty.builder()\n .subnetIds(List.of(\"subnetIds\"))\n .vpcId(\"vpcId\")\n .build())\n\n // the properties below are optional\n .createAlias(false)\n .description(\"description\")\n .enableSso(false)\n .password(\"password\")\n .shortName(\"shortName\")\n .build();","version":"1"},"go":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport directoryservice \"github.com/aws-samples/dummy/awscdkawsdirectoryservice\"\n\ncfnSimpleADProps := &CfnSimpleADProps{\n\tName: jsii.String(\"name\"),\n\tSize: jsii.String(\"size\"),\n\tVpcSettings: &VpcSettingsProperty{\n\t\tSubnetIds: []*string{\n\t\t\tjsii.String(\"subnetIds\"),\n\t\t},\n\t\tVpcId: jsii.String(\"vpcId\"),\n\t},\n\n\t// the properties below are optional\n\tCreateAlias: jsii.Boolean(false),\n\tDescription: jsii.String(\"description\"),\n\tEnableSso: jsii.Boolean(false),\n\tPassword: jsii.String(\"password\"),\n\tShortName: jsii.String(\"shortName\"),\n}","version":"1"},"$":{"source":"// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\nconst cfnSimpleADProps: directoryservice.CfnSimpleADProps = {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-directoryservice.CfnSimpleADProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-directoryservice.CfnSimpleADProps"],"fullSource":"// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as directoryservice from '@aws-cdk/aws-directoryservice';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"@aws-cdk/core\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cfnSimpleADProps: directoryservice.CfnSimpleADProps = {\n name: 'name',\n size: 'size',\n vpcSettings: {\n subnetIds: ['subnetIds'],\n vpcId: 'vpcId',\n },\n\n // the properties below are optional\n createAlias: false,\n description: 'description',\n enableSso: false,\n password: 'password',\n shortName: 'shortName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":8,"75":14,"91":2,"153":1,"169":1,"192":1,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":10,"290":1},"fqnsFingerprint":"a69428662c092c5da06a57d0cf37249eeaf59e6b049ec95397df450fd8a68b29"}}}
{
"name": "@aws-cdk/aws-directoryservice",
"version": "1.203.0",
"version": "1.204.0",
"description": "The CDK Construct Library for AWS::DirectoryService",

@@ -82,10 +82,10 @@ "main": "lib/index.js",

"devDependencies": {
"@aws-cdk/assertions": "1.203.0",
"@aws-cdk/cdk-build-tools": "1.203.0",
"@aws-cdk/cfn2ts": "1.203.0",
"@aws-cdk/pkglint": "1.203.0",
"@aws-cdk/assertions": "1.204.0",
"@aws-cdk/cdk-build-tools": "1.204.0",
"@aws-cdk/cfn2ts": "1.204.0",
"@aws-cdk/pkglint": "1.204.0",
"@types/jest": "^27.5.2"
},
"dependencies": {
"@aws-cdk/core": "1.203.0",
"@aws-cdk/core": "1.204.0",
"constructs": "^3.3.69"

@@ -95,3 +95,3 @@ },

"peerDependencies": {
"@aws-cdk/core": "1.203.0",
"@aws-cdk/core": "1.204.0",
"constructs": "^3.3.69"

@@ -103,3 +103,3 @@ },

"stability": "experimental",
"maturity": "cfn-only",
"maturity": "end-of-support",
"awscdkio": {

@@ -110,3 +110,4 @@ "announce": false

"tag": "latest"
}
},
"deprecated": "AWS CDK v1 has reached End-of-Support on 2023-06-01.\nThis package is no longer being updated, and users should migrate to AWS CDK v2.\n\nFor more information on how to migrate, see https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html"
}

@@ -6,7 +6,10 @@ # AWS Directory Service Construct Library

![cfn-resources: Stable](https://img.shields.io/badge/cfn--resources-stable-success.svg?style=for-the-badge)
![End-of-Support](https://img.shields.io/badge/End--of--Support-critical.svg?style=for-the-badge)
> All classes with the `Cfn` prefix in this module ([CFN Resources]) are always stable and safe to use.
> AWS CDK v1 has reached End-of-Support on 2023-06-01.
> This package is no longer being updated, and users should migrate to AWS CDK v2.
>
> [CFN Resources]: https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib
> For more information on how to migrate, see the [_Migrating to AWS CDK v2_ guide][doc].
>
> [doc]: https://docs.aws.amazon.com/cdk/v2/guide/migrating-v2.html

@@ -13,0 +16,0 @@ ---

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc