@aws-cdk/aws-dax
Advanced tools
Comparing version 1.198.1 to 1.199.0
@@ -1,456 +0,1 @@ | ||
{ | ||
"version": "2", | ||
"toolVersion": "1.74.0", | ||
"snippets": { | ||
"e9dcf97ae8aa00c9e2a44ee63d6cbccab87d4d28b5e96ff97c6333636abc105c": { | ||
"translations": { | ||
"python": { | ||
"source": "import aws_cdk.aws_dax as dax", | ||
"version": "2" | ||
}, | ||
"csharp": { | ||
"source": "using Amazon.CDK.AWS.DAX;", | ||
"version": "1" | ||
}, | ||
"java": { | ||
"source": "import software.amazon.awscdk.services.dax.*;", | ||
"version": "1" | ||
}, | ||
"go": { | ||
"source": "import dax \"github.com/aws-samples/dummy/awscdkawsdax\"", | ||
"version": "1" | ||
}, | ||
"$": { | ||
"source": "import * as dax from '@aws-cdk/aws-dax';", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "moduleReadme", | ||
"moduleFqn": "@aws-cdk/aws-dax" | ||
}, | ||
"field": { | ||
"field": "markdown", | ||
"line": 18 | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [], | ||
"fullSource": "import * as dax from '@aws-cdk/aws-dax';", | ||
"syntaxKindCounter": { | ||
"10": 1, | ||
"75": 1, | ||
"254": 1, | ||
"255": 1, | ||
"256": 1, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" | ||
}, | ||
"84f88ffc5e23b1ee09b6b468a245733fc136b4829eb6daa0b41c5fcd2aab5762": { | ||
"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_dax as dax\n\n# tags: Any\n\ncfn_cluster = dax.CfnCluster(self, \"MyCfnCluster\",\n iam_role_arn=\"iamRoleArn\",\n node_type=\"nodeType\",\n replication_factor=123,\n\n # the properties below are optional\n availability_zones=[\"availabilityZones\"],\n cluster_endpoint_encryption_type=\"clusterEndpointEncryptionType\",\n cluster_name=\"clusterName\",\n description=\"description\",\n notification_topic_arn=\"notificationTopicArn\",\n parameter_group_name=\"parameterGroupName\",\n preferred_maintenance_window=\"preferredMaintenanceWindow\",\n security_group_ids=[\"securityGroupIds\"],\n sse_specification=dax.CfnCluster.SSESpecificationProperty(\n sse_enabled=False\n ),\n subnet_group_name=\"subnetGroupName\",\n tags=tags\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.DAX;\n\nvar tags;\n\nCfnCluster cfnCluster = new CfnCluster(this, \"MyCfnCluster\", new CfnClusterProps {\n IamRoleArn = \"iamRoleArn\",\n NodeType = \"nodeType\",\n ReplicationFactor = 123,\n\n // the properties below are optional\n AvailabilityZones = new [] { \"availabilityZones\" },\n ClusterEndpointEncryptionType = \"clusterEndpointEncryptionType\",\n ClusterName = \"clusterName\",\n Description = \"description\",\n NotificationTopicArn = \"notificationTopicArn\",\n ParameterGroupName = \"parameterGroupName\",\n PreferredMaintenanceWindow = \"preferredMaintenanceWindow\",\n SecurityGroupIds = new [] { \"securityGroupIds\" },\n SseSpecification = new SSESpecificationProperty {\n SseEnabled = false\n },\n SubnetGroupName = \"subnetGroupName\",\n Tags = tags\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.dax.*;\n\nObject tags;\n\nCfnCluster cfnCluster = CfnCluster.Builder.create(this, \"MyCfnCluster\")\n .iamRoleArn(\"iamRoleArn\")\n .nodeType(\"nodeType\")\n .replicationFactor(123)\n\n // the properties below are optional\n .availabilityZones(List.of(\"availabilityZones\"))\n .clusterEndpointEncryptionType(\"clusterEndpointEncryptionType\")\n .clusterName(\"clusterName\")\n .description(\"description\")\n .notificationTopicArn(\"notificationTopicArn\")\n .parameterGroupName(\"parameterGroupName\")\n .preferredMaintenanceWindow(\"preferredMaintenanceWindow\")\n .securityGroupIds(List.of(\"securityGroupIds\"))\n .sseSpecification(SSESpecificationProperty.builder()\n .sseEnabled(false)\n .build())\n .subnetGroupName(\"subnetGroupName\")\n .tags(tags)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar tags interface{}\n\ncfnCluster := dax.NewCfnCluster(this, jsii.String(\"MyCfnCluster\"), &cfnClusterProps{\n\tiamRoleArn: jsii.String(\"iamRoleArn\"),\n\tnodeType: jsii.String(\"nodeType\"),\n\treplicationFactor: jsii.Number(123),\n\n\t// the properties below are optional\n\tavailabilityZones: []*string{\n\t\tjsii.String(\"availabilityZones\"),\n\t},\n\tclusterEndpointEncryptionType: jsii.String(\"clusterEndpointEncryptionType\"),\n\tclusterName: jsii.String(\"clusterName\"),\n\tdescription: jsii.String(\"description\"),\n\tnotificationTopicArn: jsii.String(\"notificationTopicArn\"),\n\tparameterGroupName: jsii.String(\"parameterGroupName\"),\n\tpreferredMaintenanceWindow: jsii.String(\"preferredMaintenanceWindow\"),\n\tsecurityGroupIds: []*string{\n\t\tjsii.String(\"securityGroupIds\"),\n\t},\n\tsseSpecification: &sSESpecificationProperty{\n\t\tsseEnabled: jsii.Boolean(false),\n\t},\n\tsubnetGroupName: jsii.String(\"subnetGroupName\"),\n\ttags: tags,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: any;\nconst cfnCluster = new dax.CfnCluster(this, 'MyCfnCluster', {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n});", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnCluster" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnCluster", | ||
"@aws-cdk/aws-dax.CfnClusterProps", | ||
"@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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: 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 cfnCluster = new dax.CfnCluster(this, 'MyCfnCluster', {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"8": 1, | ||
"10": 13, | ||
"75": 21, | ||
"91": 1, | ||
"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": 15, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "830de1541882c2111bf5805a1c94c738cea7f5f3a4f9e9b21acb598d4c2976e6" | ||
}, | ||
"bae0b153b48668d06f5872ed31c8f6ce3253784e0461680d34a404ea4bdfbd20": { | ||
"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_dax as dax\n\ns_sESpecification_property = dax.CfnCluster.SSESpecificationProperty(\n sse_enabled=False\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.DAX;\n\nSSESpecificationProperty sSESpecificationProperty = new SSESpecificationProperty {\n SseEnabled = false\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.dax.*;\n\nSSESpecificationProperty sSESpecificationProperty = SSESpecificationProperty.builder()\n .sseEnabled(false)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nsSESpecificationProperty := &sSESpecificationProperty{\n\tsseEnabled: jsii.Boolean(false),\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 dax from '@aws-cdk/aws-dax';\nconst sSESpecificationProperty: dax.CfnCluster.SSESpecificationProperty = {\n sseEnabled: false,\n};", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnCluster.SSESpecificationProperty" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnCluster.SSESpecificationProperty" | ||
], | ||
"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 dax from '@aws-cdk/aws-dax';\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 sSESpecificationProperty: dax.CfnCluster.SSESpecificationProperty = {\n sseEnabled: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"10": 1, | ||
"75": 6, | ||
"91": 1, | ||
"153": 2, | ||
"169": 1, | ||
"193": 1, | ||
"225": 1, | ||
"242": 1, | ||
"243": 1, | ||
"254": 1, | ||
"255": 1, | ||
"256": 1, | ||
"281": 1, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "1332b639d050daedfc7bf5d6eeb143614a415a6c7ba9e4652aba72ad2802c5ee" | ||
}, | ||
"ff57f718606f56176aa432d2a53b5971b7d2c1297bda2dd42778d020afc5734e": { | ||
"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_dax as dax\n\n# tags: Any\n\ncfn_cluster_props = dax.CfnClusterProps(\n iam_role_arn=\"iamRoleArn\",\n node_type=\"nodeType\",\n replication_factor=123,\n\n # the properties below are optional\n availability_zones=[\"availabilityZones\"],\n cluster_endpoint_encryption_type=\"clusterEndpointEncryptionType\",\n cluster_name=\"clusterName\",\n description=\"description\",\n notification_topic_arn=\"notificationTopicArn\",\n parameter_group_name=\"parameterGroupName\",\n preferred_maintenance_window=\"preferredMaintenanceWindow\",\n security_group_ids=[\"securityGroupIds\"],\n sse_specification=dax.CfnCluster.SSESpecificationProperty(\n sse_enabled=False\n ),\n subnet_group_name=\"subnetGroupName\",\n tags=tags\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.DAX;\n\nvar tags;\n\nCfnClusterProps cfnClusterProps = new CfnClusterProps {\n IamRoleArn = \"iamRoleArn\",\n NodeType = \"nodeType\",\n ReplicationFactor = 123,\n\n // the properties below are optional\n AvailabilityZones = new [] { \"availabilityZones\" },\n ClusterEndpointEncryptionType = \"clusterEndpointEncryptionType\",\n ClusterName = \"clusterName\",\n Description = \"description\",\n NotificationTopicArn = \"notificationTopicArn\",\n ParameterGroupName = \"parameterGroupName\",\n PreferredMaintenanceWindow = \"preferredMaintenanceWindow\",\n SecurityGroupIds = new [] { \"securityGroupIds\" },\n SseSpecification = new SSESpecificationProperty {\n SseEnabled = false\n },\n SubnetGroupName = \"subnetGroupName\",\n Tags = tags\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.dax.*;\n\nObject tags;\n\nCfnClusterProps cfnClusterProps = CfnClusterProps.builder()\n .iamRoleArn(\"iamRoleArn\")\n .nodeType(\"nodeType\")\n .replicationFactor(123)\n\n // the properties below are optional\n .availabilityZones(List.of(\"availabilityZones\"))\n .clusterEndpointEncryptionType(\"clusterEndpointEncryptionType\")\n .clusterName(\"clusterName\")\n .description(\"description\")\n .notificationTopicArn(\"notificationTopicArn\")\n .parameterGroupName(\"parameterGroupName\")\n .preferredMaintenanceWindow(\"preferredMaintenanceWindow\")\n .securityGroupIds(List.of(\"securityGroupIds\"))\n .sseSpecification(SSESpecificationProperty.builder()\n .sseEnabled(false)\n .build())\n .subnetGroupName(\"subnetGroupName\")\n .tags(tags)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar tags interface{}\n\ncfnClusterProps := &cfnClusterProps{\n\tiamRoleArn: jsii.String(\"iamRoleArn\"),\n\tnodeType: jsii.String(\"nodeType\"),\n\treplicationFactor: jsii.Number(123),\n\n\t// the properties below are optional\n\tavailabilityZones: []*string{\n\t\tjsii.String(\"availabilityZones\"),\n\t},\n\tclusterEndpointEncryptionType: jsii.String(\"clusterEndpointEncryptionType\"),\n\tclusterName: jsii.String(\"clusterName\"),\n\tdescription: jsii.String(\"description\"),\n\tnotificationTopicArn: jsii.String(\"notificationTopicArn\"),\n\tparameterGroupName: jsii.String(\"parameterGroupName\"),\n\tpreferredMaintenanceWindow: jsii.String(\"preferredMaintenanceWindow\"),\n\tsecurityGroupIds: []*string{\n\t\tjsii.String(\"securityGroupIds\"),\n\t},\n\tsseSpecification: &sSESpecificationProperty{\n\t\tsseEnabled: jsii.Boolean(false),\n\t},\n\tsubnetGroupName: jsii.String(\"subnetGroupName\"),\n\ttags: tags,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: any;\nconst cfnClusterProps: dax.CfnClusterProps = {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n};", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnClusterProps" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnClusterProps" | ||
], | ||
"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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: 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 cfnClusterProps: dax.CfnClusterProps = {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"8": 1, | ||
"10": 12, | ||
"75": 21, | ||
"91": 1, | ||
"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": 15, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "fe408a7831a0d9dc24d6e4a72a6fd399e9520eb51b34ac0dda96fd6fdde7e220" | ||
}, | ||
"77145ff4f892d0067e4f104fdff08960e88f944ff1e9ddc47160394aea44da7f": { | ||
"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_dax as dax\n\n# parameter_name_values: Any\n\ncfn_parameter_group = dax.CfnParameterGroup(self, \"MyCfnParameterGroup\",\n description=\"description\",\n parameter_group_name=\"parameterGroupName\",\n parameter_name_values=parameter_name_values\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.DAX;\n\nvar parameterNameValues;\n\nCfnParameterGroup cfnParameterGroup = new CfnParameterGroup(this, \"MyCfnParameterGroup\", new CfnParameterGroupProps {\n Description = \"description\",\n ParameterGroupName = \"parameterGroupName\",\n ParameterNameValues = parameterNameValues\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.dax.*;\n\nObject parameterNameValues;\n\nCfnParameterGroup cfnParameterGroup = CfnParameterGroup.Builder.create(this, \"MyCfnParameterGroup\")\n .description(\"description\")\n .parameterGroupName(\"parameterGroupName\")\n .parameterNameValues(parameterNameValues)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar parameterNameValues interface{}\n\ncfnParameterGroup := dax.NewCfnParameterGroup(this, jsii.String(\"MyCfnParameterGroup\"), &cfnParameterGroupProps{\n\tdescription: jsii.String(\"description\"),\n\tparameterGroupName: jsii.String(\"parameterGroupName\"),\n\tparameterNameValues: parameterNameValues,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: any;\nconst cfnParameterGroup = new dax.CfnParameterGroup(this, 'MyCfnParameterGroup', /* all optional props */ {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n});", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnParameterGroup" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnParameterGroup", | ||
"@aws-cdk/aws-dax.CfnParameterGroupProps", | ||
"@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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: 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 cfnParameterGroup = new dax.CfnParameterGroup(this, 'MyCfnParameterGroup', /* all optional props */ {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"10": 4, | ||
"75": 9, | ||
"104": 1, | ||
"125": 1, | ||
"130": 1, | ||
"193": 1, | ||
"194": 1, | ||
"197": 1, | ||
"225": 2, | ||
"242": 2, | ||
"243": 2, | ||
"254": 1, | ||
"255": 1, | ||
"256": 1, | ||
"281": 3, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "47ac6e6704804febd54709fc2afdf88423f5d993d461ba6fce05f4bfa2bf4991" | ||
}, | ||
"94909ce8383298b6f4613f89edef9963f37310f08611ccda89d042c050d667a8": { | ||
"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_dax as dax\n\n# parameter_name_values: Any\n\ncfn_parameter_group_props = dax.CfnParameterGroupProps(\n description=\"description\",\n parameter_group_name=\"parameterGroupName\",\n parameter_name_values=parameter_name_values\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.DAX;\n\nvar parameterNameValues;\n\nCfnParameterGroupProps cfnParameterGroupProps = new CfnParameterGroupProps {\n Description = \"description\",\n ParameterGroupName = \"parameterGroupName\",\n ParameterNameValues = parameterNameValues\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.dax.*;\n\nObject parameterNameValues;\n\nCfnParameterGroupProps cfnParameterGroupProps = CfnParameterGroupProps.builder()\n .description(\"description\")\n .parameterGroupName(\"parameterGroupName\")\n .parameterNameValues(parameterNameValues)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar parameterNameValues interface{}\n\ncfnParameterGroupProps := &cfnParameterGroupProps{\n\tdescription: jsii.String(\"description\"),\n\tparameterGroupName: jsii.String(\"parameterGroupName\"),\n\tparameterNameValues: parameterNameValues,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: any;\nconst cfnParameterGroupProps: dax.CfnParameterGroupProps = {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n};", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnParameterGroupProps" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnParameterGroupProps" | ||
], | ||
"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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: 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 cfnParameterGroupProps: dax.CfnParameterGroupProps = {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"10": 3, | ||
"75": 9, | ||
"125": 1, | ||
"130": 1, | ||
"153": 1, | ||
"169": 1, | ||
"193": 1, | ||
"225": 2, | ||
"242": 2, | ||
"243": 2, | ||
"254": 1, | ||
"255": 1, | ||
"256": 1, | ||
"281": 3, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "0fba3102cbfe4b2250b70202fe78c17125b09e0498d9c32863fb195e9d587ea2" | ||
}, | ||
"35211030df76b60bc23e192f7af4fb9eb4a690741408a2b91f8c472f99f1bf38": { | ||
"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_dax as dax\n\ncfn_subnet_group = dax.CfnSubnetGroup(self, \"MyCfnSubnetGroup\",\n subnet_ids=[\"subnetIds\"],\n\n # the properties below are optional\n description=\"description\",\n subnet_group_name=\"subnetGroupName\"\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.DAX;\n\nCfnSubnetGroup cfnSubnetGroup = new CfnSubnetGroup(this, \"MyCfnSubnetGroup\", new CfnSubnetGroupProps {\n SubnetIds = new [] { \"subnetIds\" },\n\n // the properties below are optional\n Description = \"description\",\n SubnetGroupName = \"subnetGroupName\"\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.dax.*;\n\nCfnSubnetGroup cfnSubnetGroup = CfnSubnetGroup.Builder.create(this, \"MyCfnSubnetGroup\")\n .subnetIds(List.of(\"subnetIds\"))\n\n // the properties below are optional\n .description(\"description\")\n .subnetGroupName(\"subnetGroupName\")\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\ncfnSubnetGroup := dax.NewCfnSubnetGroup(this, jsii.String(\"MyCfnSubnetGroup\"), &cfnSubnetGroupProps{\n\tsubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\n\t// the properties below are optional\n\tdescription: jsii.String(\"description\"),\n\tsubnetGroupName: jsii.String(\"subnetGroupName\"),\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 dax from '@aws-cdk/aws-dax';\nconst cfnSubnetGroup = new dax.CfnSubnetGroup(this, 'MyCfnSubnetGroup', {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n});", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnSubnetGroup" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnSubnetGroup", | ||
"@aws-cdk/aws-dax.CfnSubnetGroupProps", | ||
"@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 dax from '@aws-cdk/aws-dax';\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 cfnSubnetGroup = new dax.CfnSubnetGroup(this, 'MyCfnSubnetGroup', {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"10": 5, | ||
"75": 7, | ||
"104": 1, | ||
"192": 1, | ||
"193": 1, | ||
"194": 1, | ||
"197": 1, | ||
"225": 1, | ||
"242": 1, | ||
"243": 1, | ||
"254": 1, | ||
"255": 1, | ||
"256": 1, | ||
"281": 3, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "15fc04803f18949ff1367663d80f6686d28f0d4d2e8c085c801d24406c3d0ab7" | ||
}, | ||
"fa013041caa987d977dc72ca9da367ed3d92f2b25776dafa1486d17f0f23edd3": { | ||
"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_dax as dax\n\ncfn_subnet_group_props = dax.CfnSubnetGroupProps(\n subnet_ids=[\"subnetIds\"],\n\n # the properties below are optional\n description=\"description\",\n subnet_group_name=\"subnetGroupName\"\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.DAX;\n\nCfnSubnetGroupProps cfnSubnetGroupProps = new CfnSubnetGroupProps {\n SubnetIds = new [] { \"subnetIds\" },\n\n // the properties below are optional\n Description = \"description\",\n SubnetGroupName = \"subnetGroupName\"\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.dax.*;\n\nCfnSubnetGroupProps cfnSubnetGroupProps = CfnSubnetGroupProps.builder()\n .subnetIds(List.of(\"subnetIds\"))\n\n // the properties below are optional\n .description(\"description\")\n .subnetGroupName(\"subnetGroupName\")\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\ncfnSubnetGroupProps := &cfnSubnetGroupProps{\n\tsubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\n\t// the properties below are optional\n\tdescription: jsii.String(\"description\"),\n\tsubnetGroupName: jsii.String(\"subnetGroupName\"),\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 dax from '@aws-cdk/aws-dax';\nconst cfnSubnetGroupProps: dax.CfnSubnetGroupProps = {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n};", | ||
"version": "0" | ||
} | ||
}, | ||
"location": { | ||
"api": { | ||
"api": "type", | ||
"fqn": "@aws-cdk/aws-dax.CfnSubnetGroupProps" | ||
}, | ||
"field": { | ||
"field": "example" | ||
} | ||
}, | ||
"didCompile": true, | ||
"fqnsReferenced": [ | ||
"@aws-cdk/aws-dax.CfnSubnetGroupProps" | ||
], | ||
"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 dax from '@aws-cdk/aws-dax';\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 cfnSubnetGroupProps: dax.CfnSubnetGroupProps = {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }", | ||
"syntaxKindCounter": { | ||
"10": 4, | ||
"75": 7, | ||
"153": 1, | ||
"169": 1, | ||
"192": 1, | ||
"193": 1, | ||
"225": 1, | ||
"242": 1, | ||
"243": 1, | ||
"254": 1, | ||
"255": 1, | ||
"256": 1, | ||
"281": 3, | ||
"290": 1 | ||
}, | ||
"fqnsFingerprint": "21627c515b7425369a56a8f9f9e4e97fe2efd74ad6cdde5f001e4195dbb15adb" | ||
} | ||
} | ||
} | ||
{"version":"2","toolVersion":"1.80.0","snippets":{"e9dcf97ae8aa00c9e2a44ee63d6cbccab87d4d28b5e96ff97c6333636abc105c":{"translations":{"python":{"source":"import aws_cdk.aws_dax as dax","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.DAX;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.dax.*;","version":"1"},"go":{"source":"import dax \"github.com/aws-samples/dummy/awscdkawsdax\"","version":"1"},"$":{"source":"import * as dax from '@aws-cdk/aws-dax';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-dax"},"field":{"field":"markdown","line":18}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as dax from '@aws-cdk/aws-dax';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"84f88ffc5e23b1ee09b6b468a245733fc136b4829eb6daa0b41c5fcd2aab5762":{"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_dax as dax\n\n# tags: Any\n\ncfn_cluster = dax.CfnCluster(self, \"MyCfnCluster\",\n iam_role_arn=\"iamRoleArn\",\n node_type=\"nodeType\",\n replication_factor=123,\n\n # the properties below are optional\n availability_zones=[\"availabilityZones\"],\n cluster_endpoint_encryption_type=\"clusterEndpointEncryptionType\",\n cluster_name=\"clusterName\",\n description=\"description\",\n notification_topic_arn=\"notificationTopicArn\",\n parameter_group_name=\"parameterGroupName\",\n preferred_maintenance_window=\"preferredMaintenanceWindow\",\n security_group_ids=[\"securityGroupIds\"],\n sse_specification=dax.CfnCluster.SSESpecificationProperty(\n sse_enabled=False\n ),\n subnet_group_name=\"subnetGroupName\",\n tags=tags\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.DAX;\n\nvar tags;\n\nvar cfnCluster = new CfnCluster(this, \"MyCfnCluster\", new CfnClusterProps {\n IamRoleArn = \"iamRoleArn\",\n NodeType = \"nodeType\",\n ReplicationFactor = 123,\n\n // the properties below are optional\n AvailabilityZones = new [] { \"availabilityZones\" },\n ClusterEndpointEncryptionType = \"clusterEndpointEncryptionType\",\n ClusterName = \"clusterName\",\n Description = \"description\",\n NotificationTopicArn = \"notificationTopicArn\",\n ParameterGroupName = \"parameterGroupName\",\n PreferredMaintenanceWindow = \"preferredMaintenanceWindow\",\n SecurityGroupIds = new [] { \"securityGroupIds\" },\n SseSpecification = new SSESpecificationProperty {\n SseEnabled = false\n },\n SubnetGroupName = \"subnetGroupName\",\n Tags = tags\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.dax.*;\n\nObject tags;\n\nCfnCluster cfnCluster = CfnCluster.Builder.create(this, \"MyCfnCluster\")\n .iamRoleArn(\"iamRoleArn\")\n .nodeType(\"nodeType\")\n .replicationFactor(123)\n\n // the properties below are optional\n .availabilityZones(List.of(\"availabilityZones\"))\n .clusterEndpointEncryptionType(\"clusterEndpointEncryptionType\")\n .clusterName(\"clusterName\")\n .description(\"description\")\n .notificationTopicArn(\"notificationTopicArn\")\n .parameterGroupName(\"parameterGroupName\")\n .preferredMaintenanceWindow(\"preferredMaintenanceWindow\")\n .securityGroupIds(List.of(\"securityGroupIds\"))\n .sseSpecification(SSESpecificationProperty.builder()\n .sseEnabled(false)\n .build())\n .subnetGroupName(\"subnetGroupName\")\n .tags(tags)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar tags interface{}\n\ncfnCluster := dax.NewCfnCluster(this, jsii.String(\"MyCfnCluster\"), &CfnClusterProps{\n\tIamRoleArn: jsii.String(\"iamRoleArn\"),\n\tNodeType: jsii.String(\"nodeType\"),\n\tReplicationFactor: jsii.Number(123),\n\n\t// the properties below are optional\n\tAvailabilityZones: []*string{\n\t\tjsii.String(\"availabilityZones\"),\n\t},\n\tClusterEndpointEncryptionType: jsii.String(\"clusterEndpointEncryptionType\"),\n\tClusterName: jsii.String(\"clusterName\"),\n\tDescription: jsii.String(\"description\"),\n\tNotificationTopicArn: jsii.String(\"notificationTopicArn\"),\n\tParameterGroupName: jsii.String(\"parameterGroupName\"),\n\tPreferredMaintenanceWindow: jsii.String(\"preferredMaintenanceWindow\"),\n\tSecurityGroupIds: []*string{\n\t\tjsii.String(\"securityGroupIds\"),\n\t},\n\tSseSpecification: &SSESpecificationProperty{\n\t\tSseEnabled: jsii.Boolean(false),\n\t},\n\tSubnetGroupName: jsii.String(\"subnetGroupName\"),\n\tTags: tags,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: any;\nconst cfnCluster = new dax.CfnCluster(this, 'MyCfnCluster', {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnCluster"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnCluster","@aws-cdk/aws-dax.CfnClusterProps","@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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: 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 cfnCluster = new dax.CfnCluster(this, 'MyCfnCluster', {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":1,"10":13,"75":21,"91":1,"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":15,"290":1},"fqnsFingerprint":"830de1541882c2111bf5805a1c94c738cea7f5f3a4f9e9b21acb598d4c2976e6"},"bae0b153b48668d06f5872ed31c8f6ce3253784e0461680d34a404ea4bdfbd20":{"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_dax as dax\n\ns_sESpecification_property = dax.CfnCluster.SSESpecificationProperty(\n sse_enabled=False\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.DAX;\n\nvar sSESpecificationProperty = new SSESpecificationProperty {\n SseEnabled = false\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.dax.*;\n\nSSESpecificationProperty sSESpecificationProperty = SSESpecificationProperty.builder()\n .sseEnabled(false)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nsSESpecificationProperty := &SSESpecificationProperty{\n\tSseEnabled: jsii.Boolean(false),\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 dax from '@aws-cdk/aws-dax';\nconst sSESpecificationProperty: dax.CfnCluster.SSESpecificationProperty = {\n sseEnabled: false,\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnCluster.SSESpecificationProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnCluster.SSESpecificationProperty"],"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 dax from '@aws-cdk/aws-dax';\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 sSESpecificationProperty: dax.CfnCluster.SSESpecificationProperty = {\n sseEnabled: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":1,"75":6,"91":1,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":1,"290":1},"fqnsFingerprint":"1332b639d050daedfc7bf5d6eeb143614a415a6c7ba9e4652aba72ad2802c5ee"},"ff57f718606f56176aa432d2a53b5971b7d2c1297bda2dd42778d020afc5734e":{"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_dax as dax\n\n# tags: Any\n\ncfn_cluster_props = dax.CfnClusterProps(\n iam_role_arn=\"iamRoleArn\",\n node_type=\"nodeType\",\n replication_factor=123,\n\n # the properties below are optional\n availability_zones=[\"availabilityZones\"],\n cluster_endpoint_encryption_type=\"clusterEndpointEncryptionType\",\n cluster_name=\"clusterName\",\n description=\"description\",\n notification_topic_arn=\"notificationTopicArn\",\n parameter_group_name=\"parameterGroupName\",\n preferred_maintenance_window=\"preferredMaintenanceWindow\",\n security_group_ids=[\"securityGroupIds\"],\n sse_specification=dax.CfnCluster.SSESpecificationProperty(\n sse_enabled=False\n ),\n subnet_group_name=\"subnetGroupName\",\n tags=tags\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.DAX;\n\nvar tags;\n\nvar cfnClusterProps = new CfnClusterProps {\n IamRoleArn = \"iamRoleArn\",\n NodeType = \"nodeType\",\n ReplicationFactor = 123,\n\n // the properties below are optional\n AvailabilityZones = new [] { \"availabilityZones\" },\n ClusterEndpointEncryptionType = \"clusterEndpointEncryptionType\",\n ClusterName = \"clusterName\",\n Description = \"description\",\n NotificationTopicArn = \"notificationTopicArn\",\n ParameterGroupName = \"parameterGroupName\",\n PreferredMaintenanceWindow = \"preferredMaintenanceWindow\",\n SecurityGroupIds = new [] { \"securityGroupIds\" },\n SseSpecification = new SSESpecificationProperty {\n SseEnabled = false\n },\n SubnetGroupName = \"subnetGroupName\",\n Tags = tags\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.dax.*;\n\nObject tags;\n\nCfnClusterProps cfnClusterProps = CfnClusterProps.builder()\n .iamRoleArn(\"iamRoleArn\")\n .nodeType(\"nodeType\")\n .replicationFactor(123)\n\n // the properties below are optional\n .availabilityZones(List.of(\"availabilityZones\"))\n .clusterEndpointEncryptionType(\"clusterEndpointEncryptionType\")\n .clusterName(\"clusterName\")\n .description(\"description\")\n .notificationTopicArn(\"notificationTopicArn\")\n .parameterGroupName(\"parameterGroupName\")\n .preferredMaintenanceWindow(\"preferredMaintenanceWindow\")\n .securityGroupIds(List.of(\"securityGroupIds\"))\n .sseSpecification(SSESpecificationProperty.builder()\n .sseEnabled(false)\n .build())\n .subnetGroupName(\"subnetGroupName\")\n .tags(tags)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar tags interface{}\n\ncfnClusterProps := &CfnClusterProps{\n\tIamRoleArn: jsii.String(\"iamRoleArn\"),\n\tNodeType: jsii.String(\"nodeType\"),\n\tReplicationFactor: jsii.Number(123),\n\n\t// the properties below are optional\n\tAvailabilityZones: []*string{\n\t\tjsii.String(\"availabilityZones\"),\n\t},\n\tClusterEndpointEncryptionType: jsii.String(\"clusterEndpointEncryptionType\"),\n\tClusterName: jsii.String(\"clusterName\"),\n\tDescription: jsii.String(\"description\"),\n\tNotificationTopicArn: jsii.String(\"notificationTopicArn\"),\n\tParameterGroupName: jsii.String(\"parameterGroupName\"),\n\tPreferredMaintenanceWindow: jsii.String(\"preferredMaintenanceWindow\"),\n\tSecurityGroupIds: []*string{\n\t\tjsii.String(\"securityGroupIds\"),\n\t},\n\tSseSpecification: &SSESpecificationProperty{\n\t\tSseEnabled: jsii.Boolean(false),\n\t},\n\tSubnetGroupName: jsii.String(\"subnetGroupName\"),\n\tTags: tags,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: any;\nconst cfnClusterProps: dax.CfnClusterProps = {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnClusterProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnClusterProps"],"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 dax from '@aws-cdk/aws-dax';\n\ndeclare const tags: 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 cfnClusterProps: dax.CfnClusterProps = {\n iamRoleArn: 'iamRoleArn',\n nodeType: 'nodeType',\n replicationFactor: 123,\n\n // the properties below are optional\n availabilityZones: ['availabilityZones'],\n clusterEndpointEncryptionType: 'clusterEndpointEncryptionType',\n clusterName: 'clusterName',\n description: 'description',\n notificationTopicArn: 'notificationTopicArn',\n parameterGroupName: 'parameterGroupName',\n preferredMaintenanceWindow: 'preferredMaintenanceWindow',\n securityGroupIds: ['securityGroupIds'],\n sseSpecification: {\n sseEnabled: false,\n },\n subnetGroupName: 'subnetGroupName',\n tags: tags,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"8":1,"10":12,"75":21,"91":1,"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":15,"290":1},"fqnsFingerprint":"fe408a7831a0d9dc24d6e4a72a6fd399e9520eb51b34ac0dda96fd6fdde7e220"},"77145ff4f892d0067e4f104fdff08960e88f944ff1e9ddc47160394aea44da7f":{"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_dax as dax\n\n# parameter_name_values: Any\n\ncfn_parameter_group = dax.CfnParameterGroup(self, \"MyCfnParameterGroup\",\n description=\"description\",\n parameter_group_name=\"parameterGroupName\",\n parameter_name_values=parameter_name_values\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.DAX;\n\nvar parameterNameValues;\n\nvar cfnParameterGroup = new CfnParameterGroup(this, \"MyCfnParameterGroup\", new CfnParameterGroupProps {\n Description = \"description\",\n ParameterGroupName = \"parameterGroupName\",\n ParameterNameValues = parameterNameValues\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.dax.*;\n\nObject parameterNameValues;\n\nCfnParameterGroup cfnParameterGroup = CfnParameterGroup.Builder.create(this, \"MyCfnParameterGroup\")\n .description(\"description\")\n .parameterGroupName(\"parameterGroupName\")\n .parameterNameValues(parameterNameValues)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar parameterNameValues interface{}\n\ncfnParameterGroup := dax.NewCfnParameterGroup(this, jsii.String(\"MyCfnParameterGroup\"), &CfnParameterGroupProps{\n\tDescription: jsii.String(\"description\"),\n\tParameterGroupName: jsii.String(\"parameterGroupName\"),\n\tParameterNameValues: parameterNameValues,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: any;\nconst cfnParameterGroup = new dax.CfnParameterGroup(this, 'MyCfnParameterGroup', /* all optional props */ {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnParameterGroup"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnParameterGroup","@aws-cdk/aws-dax.CfnParameterGroupProps","@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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: 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 cfnParameterGroup = new dax.CfnParameterGroup(this, 'MyCfnParameterGroup', /* all optional props */ {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":4,"75":9,"104":1,"125":1,"130":1,"193":1,"194":1,"197":1,"225":2,"242":2,"243":2,"254":1,"255":1,"256":1,"281":3,"290":1},"fqnsFingerprint":"47ac6e6704804febd54709fc2afdf88423f5d993d461ba6fce05f4bfa2bf4991"},"94909ce8383298b6f4613f89edef9963f37310f08611ccda89d042c050d667a8":{"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_dax as dax\n\n# parameter_name_values: Any\n\ncfn_parameter_group_props = dax.CfnParameterGroupProps(\n description=\"description\",\n parameter_group_name=\"parameterGroupName\",\n parameter_name_values=parameter_name_values\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.DAX;\n\nvar parameterNameValues;\n\nvar cfnParameterGroupProps = new CfnParameterGroupProps {\n Description = \"description\",\n ParameterGroupName = \"parameterGroupName\",\n ParameterNameValues = parameterNameValues\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.dax.*;\n\nObject parameterNameValues;\n\nCfnParameterGroupProps cfnParameterGroupProps = CfnParameterGroupProps.builder()\n .description(\"description\")\n .parameterGroupName(\"parameterGroupName\")\n .parameterNameValues(parameterNameValues)\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\nvar parameterNameValues interface{}\n\ncfnParameterGroupProps := &CfnParameterGroupProps{\n\tDescription: jsii.String(\"description\"),\n\tParameterGroupName: jsii.String(\"parameterGroupName\"),\n\tParameterNameValues: parameterNameValues,\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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: any;\nconst cfnParameterGroupProps: dax.CfnParameterGroupProps = {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnParameterGroupProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnParameterGroupProps"],"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 dax from '@aws-cdk/aws-dax';\n\ndeclare const parameterNameValues: 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 cfnParameterGroupProps: dax.CfnParameterGroupProps = {\n description: 'description',\n parameterGroupName: 'parameterGroupName',\n parameterNameValues: parameterNameValues,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":3,"75":9,"125":1,"130":1,"153":1,"169":1,"193":1,"225":2,"242":2,"243":2,"254":1,"255":1,"256":1,"281":3,"290":1},"fqnsFingerprint":"0fba3102cbfe4b2250b70202fe78c17125b09e0498d9c32863fb195e9d587ea2"},"35211030df76b60bc23e192f7af4fb9eb4a690741408a2b91f8c472f99f1bf38":{"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_dax as dax\n\ncfn_subnet_group = dax.CfnSubnetGroup(self, \"MyCfnSubnetGroup\",\n subnet_ids=[\"subnetIds\"],\n\n # the properties below are optional\n description=\"description\",\n subnet_group_name=\"subnetGroupName\"\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.DAX;\n\nvar cfnSubnetGroup = new CfnSubnetGroup(this, \"MyCfnSubnetGroup\", new CfnSubnetGroupProps {\n SubnetIds = new [] { \"subnetIds\" },\n\n // the properties below are optional\n Description = \"description\",\n SubnetGroupName = \"subnetGroupName\"\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.dax.*;\n\nCfnSubnetGroup cfnSubnetGroup = CfnSubnetGroup.Builder.create(this, \"MyCfnSubnetGroup\")\n .subnetIds(List.of(\"subnetIds\"))\n\n // the properties below are optional\n .description(\"description\")\n .subnetGroupName(\"subnetGroupName\")\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\ncfnSubnetGroup := dax.NewCfnSubnetGroup(this, jsii.String(\"MyCfnSubnetGroup\"), &CfnSubnetGroupProps{\n\tSubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\n\t// the properties below are optional\n\tDescription: jsii.String(\"description\"),\n\tSubnetGroupName: jsii.String(\"subnetGroupName\"),\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 dax from '@aws-cdk/aws-dax';\nconst cfnSubnetGroup = new dax.CfnSubnetGroup(this, 'MyCfnSubnetGroup', {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnSubnetGroup"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnSubnetGroup","@aws-cdk/aws-dax.CfnSubnetGroupProps","@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 dax from '@aws-cdk/aws-dax';\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 cfnSubnetGroup = new dax.CfnSubnetGroup(this, 'MyCfnSubnetGroup', {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n});\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":5,"75":7,"104":1,"192":1,"193":1,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":3,"290":1},"fqnsFingerprint":"15fc04803f18949ff1367663d80f6686d28f0d4d2e8c085c801d24406c3d0ab7"},"fa013041caa987d977dc72ca9da367ed3d92f2b25776dafa1486d17f0f23edd3":{"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_dax as dax\n\ncfn_subnet_group_props = dax.CfnSubnetGroupProps(\n subnet_ids=[\"subnetIds\"],\n\n # the properties below are optional\n description=\"description\",\n subnet_group_name=\"subnetGroupName\"\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.DAX;\n\nvar cfnSubnetGroupProps = new CfnSubnetGroupProps {\n SubnetIds = new [] { \"subnetIds\" },\n\n // the properties below are optional\n Description = \"description\",\n SubnetGroupName = \"subnetGroupName\"\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.dax.*;\n\nCfnSubnetGroupProps cfnSubnetGroupProps = CfnSubnetGroupProps.builder()\n .subnetIds(List.of(\"subnetIds\"))\n\n // the properties below are optional\n .description(\"description\")\n .subnetGroupName(\"subnetGroupName\")\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 dax \"github.com/aws-samples/dummy/awscdkawsdax\"\n\ncfnSubnetGroupProps := &CfnSubnetGroupProps{\n\tSubnetIds: []*string{\n\t\tjsii.String(\"subnetIds\"),\n\t},\n\n\t// the properties below are optional\n\tDescription: jsii.String(\"description\"),\n\tSubnetGroupName: jsii.String(\"subnetGroupName\"),\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 dax from '@aws-cdk/aws-dax';\nconst cfnSubnetGroupProps: dax.CfnSubnetGroupProps = {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-dax.CfnSubnetGroupProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-dax.CfnSubnetGroupProps"],"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 dax from '@aws-cdk/aws-dax';\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 cfnSubnetGroupProps: dax.CfnSubnetGroupProps = {\n subnetIds: ['subnetIds'],\n\n // the properties below are optional\n description: 'description',\n subnetGroupName: 'subnetGroupName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":4,"75":7,"153":1,"169":1,"192":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":3,"290":1},"fqnsFingerprint":"21627c515b7425369a56a8f9f9e4e97fe2efd74ad6cdde5f001e4195dbb15adb"}}} |
{ | ||
"name": "@aws-cdk/aws-dax", | ||
"version": "1.198.1", | ||
"version": "1.199.0", | ||
"description": "The CDK Construct Library for AWS::DAX", | ||
@@ -82,10 +82,10 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@aws-cdk/assertions": "1.198.1", | ||
"@aws-cdk/cdk-build-tools": "1.198.1", | ||
"@aws-cdk/cfn2ts": "1.198.1", | ||
"@aws-cdk/pkglint": "1.198.1", | ||
"@aws-cdk/assertions": "1.199.0", | ||
"@aws-cdk/cdk-build-tools": "1.199.0", | ||
"@aws-cdk/cfn2ts": "1.199.0", | ||
"@aws-cdk/pkglint": "1.199.0", | ||
"@types/jest": "^27.5.2" | ||
}, | ||
"dependencies": { | ||
"@aws-cdk/core": "1.198.1", | ||
"@aws-cdk/core": "1.199.0", | ||
"constructs": "^3.3.69" | ||
@@ -95,3 +95,3 @@ }, | ||
"peerDependencies": { | ||
"@aws-cdk/core": "1.198.1", | ||
"@aws-cdk/core": "1.199.0", | ||
"constructs": "^3.3.69" | ||
@@ -98,0 +98,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
257550
1296
+ Added@aws-cdk/cloud-assembly-schema@1.199.0(transitive)
+ Added@aws-cdk/core@1.199.0(transitive)
+ Added@aws-cdk/cx-api@1.199.0(transitive)
+ Added@aws-cdk/region-info@1.199.0(transitive)
- Removed@aws-cdk/cloud-assembly-schema@1.198.1(transitive)
- Removed@aws-cdk/core@1.198.1(transitive)
- Removed@aws-cdk/cx-api@1.198.1(transitive)
- Removed@aws-cdk/region-info@1.198.1(transitive)
Updated@aws-cdk/core@1.199.0