{"version":"2","toolVersion":"1.84.0","snippets":{"d831075498f6d2a9b738bddaa53af63f6885671233f54f91fe763e9034b27264":{"translations":{"python":{"source":"import aws_cdk.aws_aps as aps","version":"2"},"csharp":{"source":"using Amazon.CDK.AWS.APS;","version":"1"},"java":{"source":"import software.amazon.awscdk.services.aps.*;","version":"1"},"go":{"source":"import aps \"github.com/aws-samples/dummy/awscdkawsaps\"","version":"1"},"$":{"source":"import * as aps from '@aws-cdk/aws-aps';","version":"0"}},"location":{"api":{"api":"moduleReadme","moduleFqn":"@aws-cdk/aws-aps"},"field":{"field":"markdown","line":21}},"didCompile":true,"fqnsReferenced":[],"fullSource":"import * as aps from '@aws-cdk/aws-aps';","syntaxKindCounter":{"10":1,"75":1,"254":1,"255":1,"256":1,"290":1},"fqnsFingerprint":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},"4e9c73ea181b9a77291d028044a285aa3eb80543d06e213d6c83a4f89777af3b":{"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_aps as aps\n\ncfn_rule_groups_namespace = aps.CfnRuleGroupsNamespace(self, \"MyCfnRuleGroupsNamespace\",\n data=\"data\",\n name=\"name\",\n workspace=\"workspace\",\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.APS;\n\nvar cfnRuleGroupsNamespace = new CfnRuleGroupsNamespace(this, \"MyCfnRuleGroupsNamespace\", new CfnRuleGroupsNamespaceProps {\n Data = \"data\",\n Name = \"name\",\n Workspace = \"workspace\",\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.aps.*;\n\nCfnRuleGroupsNamespace cfnRuleGroupsNamespace = CfnRuleGroupsNamespace.Builder.create(this, \"MyCfnRuleGroupsNamespace\")\n .data(\"data\")\n .name(\"name\")\n .workspace(\"workspace\")\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 aps \"github.com/aws-samples/dummy/awscdkawsaps\"\n\ncfnRuleGroupsNamespace := aps.NewCfnRuleGroupsNamespace(this, jsii.String(\"MyCfnRuleGroupsNamespace\"), &CfnRuleGroupsNamespaceProps{\n\tData: jsii.String(\"data\"),\n\tName: jsii.String(\"name\"),\n\tWorkspace: jsii.String(\"workspace\"),\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 aps from '@aws-cdk/aws-aps';\nconst cfnRuleGroupsNamespace = new aps.CfnRuleGroupsNamespace(this, 'MyCfnRuleGroupsNamespace', {\n data: 'data',\n name: 'name',\n workspace: 'workspace',\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-aps.CfnRuleGroupsNamespace"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-aps.CfnRuleGroupsNamespace","@aws-cdk/aws-aps.CfnRuleGroupsNamespaceProps","@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 aps from '@aws-cdk/aws-aps';\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 cfnRuleGroupsNamespace = new aps.CfnRuleGroupsNamespace(this, 'MyCfnRuleGroupsNamespace', {\n data: 'data',\n name: 'name',\n workspace: 'workspace',\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":7,"75":10,"104":1,"192":1,"193":2,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":6,"290":1},"fqnsFingerprint":"18e8bf7f404a3c1e99c7c5140683641f7c9014fbe706e78a8d02fb064c2f2af1"},"78b812acde233177aebad4adcbbed10fb2959dcb71da941b911c5ba650971fa2":{"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_aps as aps\n\ncfn_rule_groups_namespace_props = aps.CfnRuleGroupsNamespaceProps(\n data=\"data\",\n name=\"name\",\n workspace=\"workspace\",\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.APS;\n\nvar cfnRuleGroupsNamespaceProps = new CfnRuleGroupsNamespaceProps {\n Data = \"data\",\n Name = \"name\",\n Workspace = \"workspace\",\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.aps.*;\n\nCfnRuleGroupsNamespaceProps cfnRuleGroupsNamespaceProps = CfnRuleGroupsNamespaceProps.builder()\n .data(\"data\")\n .name(\"name\")\n .workspace(\"workspace\")\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 aps \"github.com/aws-samples/dummy/awscdkawsaps\"\n\ncfnRuleGroupsNamespaceProps := &CfnRuleGroupsNamespaceProps{\n\tData: jsii.String(\"data\"),\n\tName: jsii.String(\"name\"),\n\tWorkspace: jsii.String(\"workspace\"),\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 aps from '@aws-cdk/aws-aps';\nconst cfnRuleGroupsNamespaceProps: aps.CfnRuleGroupsNamespaceProps = {\n data: 'data',\n name: 'name',\n workspace: 'workspace',\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-aps.CfnRuleGroupsNamespaceProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-aps.CfnRuleGroupsNamespaceProps"],"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 aps from '@aws-cdk/aws-aps';\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 cfnRuleGroupsNamespaceProps: aps.CfnRuleGroupsNamespaceProps = {\n data: 'data',\n name: 'name',\n workspace: 'workspace',\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":10,"153":1,"169":1,"192":1,"193":2,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":6,"290":1},"fqnsFingerprint":"e4471e1022900ab81d4fd1f948f968e9763873e0781ae4e7c73c82e266504b40"},"6adcd9685f79db7ccfbd43d09a0674e0213a91abf09bfea0951ec6ab59dfa0d4":{"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_aps as aps\n\ncfn_workspace = aps.CfnWorkspace(self, \"MyCfnWorkspace\",\n alert_manager_definition=\"alertManagerDefinition\",\n alias=\"alias\",\n logging_configuration=aps.CfnWorkspace.LoggingConfigurationProperty(\n log_group_arn=\"logGroupArn\"\n ),\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.APS;\n\nvar cfnWorkspace = new CfnWorkspace(this, \"MyCfnWorkspace\", new CfnWorkspaceProps {\n AlertManagerDefinition = \"alertManagerDefinition\",\n Alias = \"alias\",\n LoggingConfiguration = new LoggingConfigurationProperty {\n LogGroupArn = \"logGroupArn\"\n },\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.aps.*;\n\nCfnWorkspace cfnWorkspace = CfnWorkspace.Builder.create(this, \"MyCfnWorkspace\")\n .alertManagerDefinition(\"alertManagerDefinition\")\n .alias(\"alias\")\n .loggingConfiguration(LoggingConfigurationProperty.builder()\n .logGroupArn(\"logGroupArn\")\n .build())\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 aps \"github.com/aws-samples/dummy/awscdkawsaps\"\n\ncfnWorkspace := aps.NewCfnWorkspace(this, jsii.String(\"MyCfnWorkspace\"), &CfnWorkspaceProps{\n\tAlertManagerDefinition: jsii.String(\"alertManagerDefinition\"),\n\tAlias: jsii.String(\"alias\"),\n\tLoggingConfiguration: &LoggingConfigurationProperty{\n\t\tLogGroupArn: jsii.String(\"logGroupArn\"),\n\t},\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 aps from '@aws-cdk/aws-aps';\nconst cfnWorkspace = new aps.CfnWorkspace(this, 'MyCfnWorkspace', /* all optional props */ {\n alertManagerDefinition: 'alertManagerDefinition',\n alias: 'alias',\n loggingConfiguration: {\n logGroupArn: 'logGroupArn',\n },\n tags: [{\n key: 'key',\n value: 'value',\n }],\n});","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-aps.CfnWorkspace"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-aps.CfnWorkspace","@aws-cdk/aws-aps.CfnWorkspaceProps","@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 aps from '@aws-cdk/aws-aps';\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 cfnWorkspace = new aps.CfnWorkspace(this, 'MyCfnWorkspace', /* all optional props */ {\n alertManagerDefinition: 'alertManagerDefinition',\n alias: 'alias',\n loggingConfiguration: {\n logGroupArn: 'logGroupArn',\n },\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,"104":1,"192":1,"193":3,"194":1,"197":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":7,"290":1},"fqnsFingerprint":"b0530f855a85455ebb5b14999867a84cd9a2d303ac12b77ec8665da586227ae1"},"5c3004579277cc572efc2e38d6821f3b382d6b9607e133514d116cf7a5e70c9c":{"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_aps as aps\n\nlogging_configuration_property = aps.CfnWorkspace.LoggingConfigurationProperty(\n log_group_arn=\"logGroupArn\"\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.APS;\n\nvar loggingConfigurationProperty = new LoggingConfigurationProperty {\n LogGroupArn = \"logGroupArn\"\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.aps.*;\n\nLoggingConfigurationProperty loggingConfigurationProperty = LoggingConfigurationProperty.builder()\n .logGroupArn(\"logGroupArn\")\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 aps \"github.com/aws-samples/dummy/awscdkawsaps\"\n\nloggingConfigurationProperty := &LoggingConfigurationProperty{\n\tLogGroupArn: jsii.String(\"logGroupArn\"),\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 aps from '@aws-cdk/aws-aps';\nconst loggingConfigurationProperty: aps.CfnWorkspace.LoggingConfigurationProperty = {\n logGroupArn: 'logGroupArn',\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-aps.CfnWorkspace.LoggingConfigurationProperty"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-aps.CfnWorkspace.LoggingConfigurationProperty"],"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 aps from '@aws-cdk/aws-aps';\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 loggingConfigurationProperty: aps.CfnWorkspace.LoggingConfigurationProperty = {\n logGroupArn: 'logGroupArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }","syntaxKindCounter":{"10":2,"75":6,"153":2,"169":1,"193":1,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":1,"290":1},"fqnsFingerprint":"86423456a51cbd6710613e34897af60fc5b396dadca861db615862956d906e95"},"e1097b4002fcaaa52e2eb5657c4e4383fb22a376568d7bebb7be7e1adb86a09b":{"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_aps as aps\n\ncfn_workspace_props = aps.CfnWorkspaceProps(\n alert_manager_definition=\"alertManagerDefinition\",\n alias=\"alias\",\n logging_configuration=aps.CfnWorkspace.LoggingConfigurationProperty(\n log_group_arn=\"logGroupArn\"\n ),\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.APS;\n\nvar cfnWorkspaceProps = new CfnWorkspaceProps {\n AlertManagerDefinition = \"alertManagerDefinition\",\n Alias = \"alias\",\n LoggingConfiguration = new LoggingConfigurationProperty {\n LogGroupArn = \"logGroupArn\"\n },\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.aps.*;\n\nCfnWorkspaceProps cfnWorkspaceProps = CfnWorkspaceProps.builder()\n .alertManagerDefinition(\"alertManagerDefinition\")\n .alias(\"alias\")\n .loggingConfiguration(LoggingConfigurationProperty.builder()\n .logGroupArn(\"logGroupArn\")\n .build())\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 aps \"github.com/aws-samples/dummy/awscdkawsaps\"\n\ncfnWorkspaceProps := &CfnWorkspaceProps{\n\tAlertManagerDefinition: jsii.String(\"alertManagerDefinition\"),\n\tAlias: jsii.String(\"alias\"),\n\tLoggingConfiguration: &LoggingConfigurationProperty{\n\t\tLogGroupArn: jsii.String(\"logGroupArn\"),\n\t},\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 aps from '@aws-cdk/aws-aps';\nconst cfnWorkspaceProps: aps.CfnWorkspaceProps = {\n alertManagerDefinition: 'alertManagerDefinition',\n alias: 'alias',\n loggingConfiguration: {\n logGroupArn: 'logGroupArn',\n },\n tags: [{\n key: 'key',\n value: 'value',\n }],\n};","version":"0"}},"location":{"api":{"api":"type","fqn":"@aws-cdk/aws-aps.CfnWorkspaceProps"},"field":{"field":"example"}},"didCompile":true,"fqnsReferenced":["@aws-cdk/aws-aps.CfnWorkspaceProps"],"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 aps from '@aws-cdk/aws-aps';\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 cfnWorkspaceProps: aps.CfnWorkspaceProps = {\n alertManagerDefinition: 'alertManagerDefinition',\n alias: 'alias',\n loggingConfiguration: {\n logGroupArn: 'logGroupArn',\n },\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":11,"153":1,"169":1,"192":1,"193":3,"225":1,"242":1,"243":1,"254":1,"255":1,"256":1,"281":7,"290":1},"fqnsFingerprint":"78e29ac84cdc0304efb290bd8a5a5e7ed88e7be894d78e15be49b554b0a02b61"}}}