{"version":"2","toolVersion":"1.84.0","snippets":{"943d89f0cc273791a6fa9838e87640501fbf055800ef5c28e215c471a8750b01":{"translations":{"python":{"source":"import aws_cdk.aws_organizations as organizations","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.Organizations;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.organizations.*;","version":"1"},"go":{"source":"import organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"","version":"1"},"$":{"source":"import * as organizations from '@aws-cdk/aws-organizations';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-organizations"},"field":{"field":"markdown","line":21}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as organizations from '@aws-cdk/aws-organizations';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"4de4e04adf193e2a2b300b968ef280af50a9e015281451764e5695b0aee58a8d":{"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_organizations as organizations\n\ncfn_account = organizations.CfnAccount(self, \"MyCfnAccount\",\n account_name=\"accountName\",\n email=\"email\",\n\n # the properties below are optional\n parent_ids=[\"parentIds\"],\n role_name=\"roleName\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\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.Organizations;\n\nvar cfnAccount = new CfnAccount(this, \"MyCfnAccount\", new CfnAccountProps {\n AccountName = \"accountName\",\n Email = \"email\",\n\n // the properties below are optional\n ParentIds = new [] { \"parentIds\" },\n RoleName = \"roleName\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\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.organizations.*;\n\nCfnAccount cfnAccount = CfnAccount.Builder.create(this, \"MyCfnAccount\")\n .accountName(\"accountName\")\n .email(\"email\")\n\n // the properties below are optional\n .parentIds(List.of(\"parentIds\"))\n .roleName(\"roleName\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\ncfnAccount := organizations.NewCfnAccount(this, jsii.String(\"MyCfnAccount\"), &CfnAccountProps{\n\tAccountName: jsii.String(\"accountName\"),\n\tEmail: jsii.String(\"email\"),\n\n\t// the properties below are optional\n\tParentIds: []*string{\n\t\tjsii.String(\"parentIds\"),\n\t},\n\tRoleName: jsii.String(\"roleName\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\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 organizations from '@aws-cdk/aws-organizations';\nconst cfnAccount = new organizations.CfnAccount(this, 'MyCfnAccount', {\n accountName: 'accountName',\n email: 'email',\n\n // the properties below are optional\n parentIds: ['parentIds'],\n roleName: 'roleName',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnAccount"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnAccount","@aws-cdk/aws-organizations.CfnAccountProps","@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 organizations from '@aws-cdk/aws-organizations';\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 cfnAccount = new organizations.CfnAccount(this, 'MyCfnAccount', {\n accountName: 'accountName',\n email: 'email',\n\n // the properties below are optional\n parentIds: ['parentIds'],\n roleName: 'roleName',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":8,"75":11,"104":1,"192":2,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":7,"290":1},"fqnsFingerprint":"25b7a0874144b0d4e8efa3fabe98b308892a4d7180cd6c617c94b46cf69ff1f6"},"c69e55f663b675bcec548f5347ca84e31bac5a21c2ac90e47d2b343c5ee16e8e":{"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_organizations as organizations\n\ncfn_account_props = organizations.CfnAccountProps(\n account_name=\"accountName\",\n email=\"email\",\n\n # the properties below are optional\n parent_ids=[\"parentIds\"],\n role_name=\"roleName\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\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.Organizations;\n\nvar cfnAccountProps = new CfnAccountProps {\n AccountName = \"accountName\",\n Email = \"email\",\n\n // the properties below are optional\n ParentIds = new [] { \"parentIds\" },\n RoleName = \"roleName\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\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.organizations.*;\n\nCfnAccountProps cfnAccountProps = CfnAccountProps.builder()\n .accountName(\"accountName\")\n .email(\"email\")\n\n // the properties below are optional\n .parentIds(List.of(\"parentIds\"))\n .roleName(\"roleName\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\ncfnAccountProps := &CfnAccountProps{\n\tAccountName: jsii.String(\"accountName\"),\n\tEmail: jsii.String(\"email\"),\n\n\t// the properties below are optional\n\tParentIds: []*string{\n\t\tjsii.String(\"parentIds\"),\n\t},\n\tRoleName: jsii.String(\"roleName\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\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 organizations from '@aws-cdk/aws-organizations';\nconst cfnAccountProps: organizations.CfnAccountProps = {\n accountName: 'accountName',\n email: 'email',\n\n // the properties below are optional\n parentIds: ['parentIds'],\n roleName: 'roleName',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnAccountProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnAccountProps"],"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 organizations from '@aws-cdk/aws-organizations';\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 cfnAccountProps: organizations.CfnAccountProps = {\n accountName: 'accountName',\n email: 'email',\n\n // the properties below are optional\n parentIds: ['parentIds'],\n roleName: 'roleName',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":7,"75":11,"153":1,"169":1,"192":2,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":7,"290":1},"fqnsFingerprint":"54e0806d7a1fca47ff5f073324f3dab1eef32519019af3fb914828fd05d028d9"},"161771b4032d19ab77c6c97c3f922e5dc5e83d12f2dcf838f75ab5cddb825215":{"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_organizations as organizations\n\ncfn_organizational_unit = organizations.CfnOrganizationalUnit(self, \"MyCfnOrganizationalUnit\",\n name=\"name\",\n parent_id=\"parentId\",\n\n # the properties below are optional\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\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.Organizations;\n\nvar cfnOrganizationalUnit = new CfnOrganizationalUnit(this, \"MyCfnOrganizationalUnit\", new CfnOrganizationalUnitProps {\n Name = \"name\",\n ParentId = \"parentId\",\n\n // the properties below are optional\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\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.organizations.*;\n\nCfnOrganizationalUnit cfnOrganizationalUnit = CfnOrganizationalUnit.Builder.create(this, \"MyCfnOrganizationalUnit\")\n .name(\"name\")\n .parentId(\"parentId\")\n\n // the properties below are optional\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\ncfnOrganizationalUnit := organizations.NewCfnOrganizationalUnit(this, jsii.String(\"MyCfnOrganizationalUnit\"), &CfnOrganizationalUnitProps{\n\tName: jsii.String(\"name\"),\n\tParentId: jsii.String(\"parentId\"),\n\n\t// the properties below are optional\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\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 organizations from '@aws-cdk/aws-organizations';\nconst cfnOrganizationalUnit = new organizations.CfnOrganizationalUnit(this, 'MyCfnOrganizationalUnit', {\n name: 'name',\n parentId: 'parentId',\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnOrganizationalUnit"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnOrganizationalUnit","@aws-cdk/aws-organizations.CfnOrganizationalUnitProps","@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 organizations from '@aws-cdk/aws-organizations';\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 cfnOrganizationalUnit = new organizations.CfnOrganizationalUnit(this, 'MyCfnOrganizationalUnit', {\n name: 'name',\n parentId: 'parentId',\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":6,"75":9,"104":1,"192":1,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":5,"290":1},"fqnsFingerprint":"e696506174ab75a638072d74ec52ddfd641915184793def313dcc269e5e91e32"},"33c373a9cdfc1dfaeaa4865d84a9664314155bd3406432f4483d7421c8ba199e":{"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_organizations as organizations\n\ncfn_organizational_unit_props = organizations.CfnOrganizationalUnitProps(\n name=\"name\",\n parent_id=\"parentId\",\n\n # the properties below are optional\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\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.Organizations;\n\nvar cfnOrganizationalUnitProps = new CfnOrganizationalUnitProps {\n Name = \"name\",\n ParentId = \"parentId\",\n\n // the properties below are optional\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\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.organizations.*;\n\nCfnOrganizationalUnitProps cfnOrganizationalUnitProps = CfnOrganizationalUnitProps.builder()\n .name(\"name\")\n .parentId(\"parentId\")\n\n // the properties below are optional\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\ncfnOrganizationalUnitProps := &CfnOrganizationalUnitProps{\n\tName: jsii.String(\"name\"),\n\tParentId: jsii.String(\"parentId\"),\n\n\t// the properties below are optional\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\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 organizations from '@aws-cdk/aws-organizations';\nconst cfnOrganizationalUnitProps: organizations.CfnOrganizationalUnitProps = {\n name: 'name',\n parentId: 'parentId',\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnOrganizationalUnitProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnOrganizationalUnitProps"],"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 organizations from '@aws-cdk/aws-organizations';\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 cfnOrganizationalUnitProps: organizations.CfnOrganizationalUnitProps = {\n name: 'name',\n parentId: 'parentId',\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":5,"75":9,"153":1,"169":1,"192":1,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":5,"290":1},"fqnsFingerprint":"113e10c0fb5f352c82f3cdd93822237aa539e0120a492b4586fcc3ada57f4d3d"},"f5f8341331b95313e52be6ad2895ec648e68631480a6a5535e323cea92a0d2c0":{"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_organizations as organizations\n\n# content: Any\n\ncfn_policy = organizations.CfnPolicy(self, \"MyCfnPolicy\",\n content=content,\n name=\"name\",\n type=\"type\",\n\n # the properties below are optional\n description=\"description\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )],\n target_ids=[\"targetIds\"]\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.Organizations;\n\nvar content;\n\nvar cfnPolicy = new CfnPolicy(this, \"MyCfnPolicy\", new CfnPolicyProps {\n Content = content,\n Name = \"name\",\n Type = \"type\",\n\n // the properties below are optional\n Description = \"description\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } },\n TargetIds = new [] { \"targetIds\" }\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.organizations.*;\n\nObject content;\n\nCfnPolicy cfnPolicy = CfnPolicy.Builder.create(this, \"MyCfnPolicy\")\n .content(content)\n .name(\"name\")\n .type(\"type\")\n\n // the properties below are optional\n .description(\"description\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .targetIds(List.of(\"targetIds\"))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\nvar content interface{}\n\ncfnPolicy := organizations.NewCfnPolicy(this, jsii.String(\"MyCfnPolicy\"), &CfnPolicyProps{\n\tContent: content,\n\tName: jsii.String(\"name\"),\n\tType: jsii.String(\"type\"),\n\n\t// the properties below are optional\n\tDescription: jsii.String(\"description\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\n\tTargetIds: []*string{\n\t\tjsii.String(\"targetIds\"),\n\t},\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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\nconst cfnPolicy = new organizations.CfnPolicy(this, 'MyCfnPolicy', {\n content: content,\n name: 'name',\n type: 'type',\n\n // the properties below are optional\n description: 'description',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n targetIds: ['targetIds'],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnPolicy"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnPolicy","@aws-cdk/aws-organizations.CfnPolicyProps","@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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\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 cfnPolicy = new organizations.CfnPolicy(this, 'MyCfnPolicy', {\n content: content,\n name: 'name',\n type: 'type',\n\n // the properties below are optional\n description: 'description',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n targetIds: ['targetIds'],\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":8,"75":14,"104":1,"125":1,"130":1,"192":2,"193":2,"194":1,"197":1,"225":2,"242":2,"243":2,"254":1,"255":1,"256":1,"281":8,"290":1},"fqnsFingerprint":"541646fe7320f99c99ba61922026b50bec7a8646c750489029a48b06d1546fff"},"24ed12067c7c9962503889cfe3e94ae3a980e52c9ecc2dc8faec63e7abadf068":{"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_organizations as organizations\n\n# content: Any\n\ncfn_policy_props = organizations.CfnPolicyProps(\n content=content,\n name=\"name\",\n type=\"type\",\n\n # the properties below are optional\n description=\"description\",\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )],\n target_ids=[\"targetIds\"]\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.Organizations;\n\nvar content;\n\nvar cfnPolicyProps = new CfnPolicyProps {\n Content = content,\n Name = \"name\",\n Type = \"type\",\n\n // the properties below are optional\n Description = \"description\",\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } },\n TargetIds = new [] { \"targetIds\" }\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.organizations.*;\n\nObject content;\n\nCfnPolicyProps cfnPolicyProps = CfnPolicyProps.builder()\n .content(content)\n .name(\"name\")\n .type(\"type\")\n\n // the properties below are optional\n .description(\"description\")\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .targetIds(List.of(\"targetIds\"))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\nvar content interface{}\n\ncfnPolicyProps := &CfnPolicyProps{\n\tContent: content,\n\tName: jsii.String(\"name\"),\n\tType: jsii.String(\"type\"),\n\n\t// the properties below are optional\n\tDescription: jsii.String(\"description\"),\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\n\tTargetIds: []*string{\n\t\tjsii.String(\"targetIds\"),\n\t},\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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\nconst cfnPolicyProps: organizations.CfnPolicyProps = {\n content: content,\n name: 'name',\n type: 'type',\n\n // the properties below are optional\n description: 'description',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n targetIds: ['targetIds'],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnPolicyProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnPolicyProps"],"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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\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 cfnPolicyProps: organizations.CfnPolicyProps = {\n content: content,\n name: 'name',\n type: 'type',\n\n // the properties below are optional\n description: 'description',\n tags: [{\n key: 'key',\n value: 'value',\n }],\n targetIds: ['targetIds'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":7,"75":14,"125":1,"130":1,"153":1,"169":1,"192":2,"193":2,"225":2,"242":2,"243":2,"254":1,"255":1,"256":1,"281":8,"290":1},"fqnsFingerprint":"cd3a7ae8158192d95ff2952366dec60e36a061e82626b96066e0c9b2983658fb"},"f9e3840ea9885d78bce3f50d5f524127a00a62e5baca59b0620129623549474b":{"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_organizations as organizations\n\n# content: Any\n\ncfn_resource_policy = organizations.CfnResourcePolicy(self, \"MyCfnResourcePolicy\",\n content=content,\n\n # the properties below are optional\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\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.Organizations;\n\nvar content;\n\nvar cfnResourcePolicy = new CfnResourcePolicy(this, \"MyCfnResourcePolicy\", new CfnResourcePolicyProps {\n Content = content,\n\n // the properties below are optional\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\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.organizations.*;\n\nObject content;\n\nCfnResourcePolicy cfnResourcePolicy = CfnResourcePolicy.Builder.create(this, \"MyCfnResourcePolicy\")\n .content(content)\n\n // the properties below are optional\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\nvar content interface{}\n\ncfnResourcePolicy := organizations.NewCfnResourcePolicy(this, jsii.String(\"MyCfnResourcePolicy\"), &CfnResourcePolicyProps{\n\tContent: content,\n\n\t// the properties below are optional\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\nconst cfnResourcePolicy = new organizations.CfnResourcePolicy(this, 'MyCfnResourcePolicy', {\n content: content,\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnResourcePolicy"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnResourcePolicy","@aws-cdk/aws-organizations.CfnResourcePolicyProps","@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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\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 cfnResourcePolicy = new organizations.CfnResourcePolicy(this, 'MyCfnResourcePolicy', {\n content: content,\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":4,"75":10,"104":1,"125":1,"130":1,"192":1,"193":2,"194":1,"197":1,"225":2,"242":2,"243":2,"254":1,"255":1,"256":1,"281":4,"290":1},"fqnsFingerprint":"d1f7b1ed6b9abc3c4eafe37c3cbed4acb5bfdcc2dde95d5c2a02fed37f8309d6"},"395e5ca11e14cf22dcb0e26c1099e3a9286af0f44a12d30500ff8bcaf0638f48":{"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_organizations as organizations\n\n# content: Any\n\ncfn_resource_policy_props = organizations.CfnResourcePolicyProps(\n content=content,\n\n # the properties below are optional\n tags=[CfnTag(\n key=\"key\",\n value=\"value\"\n )]\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.Organizations;\n\nvar content;\n\nvar cfnResourcePolicyProps = new CfnResourcePolicyProps {\n Content = content,\n\n // the properties below are optional\n Tags = new [] { new CfnTag {\n Key = \"key\",\n Value = \"value\"\n } }\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.organizations.*;\n\nObject content;\n\nCfnResourcePolicyProps cfnResourcePolicyProps = CfnResourcePolicyProps.builder()\n .content(content)\n\n // the properties below are optional\n .tags(List.of(CfnTag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\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 organizations \"github.com/aws-samples/dummy/awscdkawsorganizations\"\n\nvar content interface{}\n\ncfnResourcePolicyProps := &CfnResourcePolicyProps{\n\tContent: content,\n\n\t// the properties below are optional\n\tTags: []cfnTag{\n\t\t&cfnTag{\n\t\t\tKey: jsii.String(\"key\"),\n\t\t\tValue: jsii.String(\"value\"),\n\t\t},\n\t},\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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\nconst cfnResourcePolicyProps: organizations.CfnResourcePolicyProps = {\n content: content,\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-organizations.CfnResourcePolicyProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-organizations.CfnResourcePolicyProps"],"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 organizations from '@aws-cdk/aws-organizations';\n\ndeclare const content: any;\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 cfnResourcePolicyProps: organizations.CfnResourcePolicyProps = {\n content: content,\n\n // the properties below are optional\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":10,"125":1,"130":1,"153":1,"169":1,"192":1,"193":2,"225":2,"242":2,"243":2,"254":1,"255":1,"256":1,"281":4,"290":1},"fqnsFingerprint":"9e96e8a60670b6164f969b604de3eb8acc4feb04e1832eabb4a506a4ce7ad1ad"}}}