@aws-cdk/cloud-assembly-schema 2.40.0 → 2.41.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii.tabl.json DELETED
@@ -1,2570 +0,0 @@
1
- {
2
- "version": "2",
3
- "toolVersion": "1.66.0",
4
- "snippets": {
5
- "cecc4b6be0cf4accc3e46f1670579b731439bd3e3b6efffdbd431eb0130d724c": {
6
- "translations": {
7
- "python": {
8
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nami_context_query = cloud_assembly_schema.AmiContextQuery(\n account=\"account\",\n filters={\n \"filters_key\": [\"filters\"]\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n owners=[\"owners\"]\n)",
9
- "version": "2"
10
- },
11
- "csharp": {
12
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAmiContextQuery amiContextQuery = new AmiContextQuery {\n Account = \"account\",\n Filters = new Dictionary<string, string[]> {\n { \"filtersKey\", new [] { \"filters\" } }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n Owners = new [] { \"owners\" }\n};",
13
- "version": "1"
14
- },
15
- "java": {
16
- "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.cloudassembly.schema.*;\n\nAmiContextQuery amiContextQuery = AmiContextQuery.builder()\n .account(\"account\")\n .filters(Map.of(\n \"filtersKey\", List.of(\"filters\")))\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .owners(List.of(\"owners\"))\n .build();",
17
- "version": "1"
18
- },
19
- "go": {
20
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\namiContextQuery := &amiContextQuery{\n\taccount: jsii.String(\"account\"),\n\tfilters: map[string][]*string{\n\t\t\"filtersKey\": []*string{\n\t\t\tjsii.String(\"filters\"),\n\t\t},\n\t},\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n\towners: []*string{\n\t\tjsii.String(\"owners\"),\n\t},\n}",
21
- "version": "1"
22
- },
23
- "$": {
24
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst amiContextQuery: cloud_assembly_schema.AmiContextQuery = {\n account: 'account',\n filters: {\n filtersKey: ['filters'],\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n owners: ['owners'],\n};",
25
- "version": "0"
26
- }
27
- },
28
- "location": {
29
- "api": {
30
- "api": "type",
31
- "fqn": "@aws-cdk/cloud-assembly-schema.AmiContextQuery"
32
- },
33
- "field": {
34
- "field": "example"
35
- }
36
- },
37
- "didCompile": true,
38
- "fqnsReferenced": [
39
- "@aws-cdk/cloud-assembly-schema.AmiContextQuery"
40
- ],
41
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst amiContextQuery: cloud_assembly_schema.AmiContextQuery = {\n account: 'account',\n filters: {\n filtersKey: ['filters'],\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n owners: ['owners'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
42
- "syntaxKindCounter": {
43
- "10": 6,
44
- "75": 10,
45
- "153": 1,
46
- "169": 1,
47
- "192": 2,
48
- "193": 2,
49
- "225": 1,
50
- "242": 1,
51
- "243": 1,
52
- "254": 1,
53
- "255": 1,
54
- "256": 1,
55
- "281": 6,
56
- "290": 1
57
- },
58
- "fqnsFingerprint": "37f5b63c2889bb4d664b8935d1e1bd58ca8cbea3eee39ff067ad25ac6b869d1f"
59
- },
60
- "8a22f1619dbaab88e6efe034852102f4342b62797f1ced0c54bb9b918813d159": {
61
- "translations": {
62
- "python": {
63
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nartifact_manifest = cloud_assembly_schema.ArtifactManifest(\n type=cloud_assembly_schema.ArtifactType.NONE,\n\n # the properties below are optional\n dependencies=[\"dependencies\"],\n display_name=\"displayName\",\n environment=\"environment\",\n metadata={\n \"metadata_key\": [cloud_assembly_schema.MetadataEntry(\n type=\"type\",\n\n # the properties below are optional\n data=\"data\",\n trace=[\"trace\"]\n )]\n },\n properties=cloud_assembly_schema.AwsCloudFormationStackProperties(\n template_file=\"templateFile\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n cloud_formation_execution_role_arn=\"cloudFormationExecutionRoleArn\",\n lookup_role=cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n ),\n parameters={\n \"parameters_key\": \"parameters\"\n },\n requires_bootstrap_stack_version=123,\n stack_name=\"stackName\",\n stack_template_asset_object_url=\"stackTemplateAssetObjectUrl\",\n tags={\n \"tags_key\": \"tags\"\n },\n termination_protection=False,\n validate_on_synth=False\n )\n)",
64
- "version": "2"
65
- },
66
- "csharp": {
67
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nArtifactManifest artifactManifest = new ArtifactManifest {\n Type = ArtifactType.NONE,\n\n // the properties below are optional\n Dependencies = new [] { \"dependencies\" },\n DisplayName = \"displayName\",\n Environment = \"environment\",\n Metadata = new Dictionary<string, MetadataEntry[]> {\n { \"metadataKey\", new [] { new MetadataEntry {\n Type = \"type\",\n\n // the properties below are optional\n Data = \"data\",\n Trace = new [] { \"trace\" }\n } } }\n },\n Properties = new AwsCloudFormationStackProperties {\n TemplateFile = \"templateFile\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n CloudFormationExecutionRoleArn = \"cloudFormationExecutionRoleArn\",\n LookupRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n },\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n RequiresBootstrapStackVersion = 123,\n StackName = \"stackName\",\n StackTemplateAssetObjectUrl = \"stackTemplateAssetObjectUrl\",\n Tags = new Dictionary<string, string> {\n { \"tagsKey\", \"tags\" }\n },\n TerminationProtection = false,\n ValidateOnSynth = false\n }\n};",
68
- "version": "1"
69
- },
70
- "java": {
71
- "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.cloudassembly.schema.*;\n\nArtifactManifest artifactManifest = ArtifactManifest.builder()\n .type(ArtifactType.NONE)\n\n // the properties below are optional\n .dependencies(List.of(\"dependencies\"))\n .displayName(\"displayName\")\n .environment(\"environment\")\n .metadata(Map.of(\n \"metadataKey\", List.of(MetadataEntry.builder()\n .type(\"type\")\n\n // the properties below are optional\n .data(\"data\")\n .trace(List.of(\"trace\"))\n .build())))\n .properties(AwsCloudFormationStackProperties.builder()\n .templateFile(\"templateFile\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .cloudFormationExecutionRoleArn(\"cloudFormationExecutionRoleArn\")\n .lookupRole(BootstrapRole.builder()\n .arn(\"arn\")\n\n // the properties below are optional\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .requiresBootstrapStackVersion(123)\n .build())\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .requiresBootstrapStackVersion(123)\n .stackName(\"stackName\")\n .stackTemplateAssetObjectUrl(\"stackTemplateAssetObjectUrl\")\n .tags(Map.of(\n \"tagsKey\", \"tags\"))\n .terminationProtection(false)\n .validateOnSynth(false)\n .build())\n .build();",
72
- "version": "1"
73
- },
74
- "go": {
75
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nartifactManifest := &artifactManifest{\n\ttype: cloud_assembly_schema.artifactType_NONE,\n\n\t// the properties below are optional\n\tdependencies: []*string{\n\t\tjsii.String(\"dependencies\"),\n\t},\n\tdisplayName: jsii.String(\"displayName\"),\n\tenvironment: jsii.String(\"environment\"),\n\tmetadata: map[string][]metadataEntry{\n\t\t\"metadataKey\": []*metadataEntry{\n\t\t\t&metadataEntry{\n\t\t\t\t\"type\": jsii.String(\"type\"),\n\n\t\t\t\t// the properties below are optional\n\t\t\t\t\"data\": jsii.String(\"data\"),\n\t\t\t\t\"trace\": []*string{\n\t\t\t\t\tjsii.String(\"trace\"),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t},\n\tproperties: &awsCloudFormationStackProperties{\n\t\ttemplateFile: jsii.String(\"templateFile\"),\n\n\t\t// the properties below are optional\n\t\tassumeRoleArn: jsii.String(\"assumeRoleArn\"),\n\t\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\t\tbootstrapStackVersionSsmParameter: jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\t\tcloudFormationExecutionRoleArn: jsii.String(\"cloudFormationExecutionRoleArn\"),\n\t\tlookupRole: &bootstrapRole{\n\t\t\tarn: jsii.String(\"arn\"),\n\n\t\t\t// the properties below are optional\n\t\t\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\t\t\tbootstrapStackVersionSsmParameter: jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\t\t\trequiresBootstrapStackVersion: jsii.Number(123),\n\t\t},\n\t\tparameters: map[string]*string{\n\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t},\n\t\trequiresBootstrapStackVersion: jsii.Number(123),\n\t\tstackName: jsii.String(\"stackName\"),\n\t\tstackTemplateAssetObjectUrl: jsii.String(\"stackTemplateAssetObjectUrl\"),\n\t\ttags: map[string]*string{\n\t\t\t\"tagsKey\": jsii.String(\"tags\"),\n\t\t},\n\t\tterminationProtection: jsii.Boolean(false),\n\t\tvalidateOnSynth: jsii.Boolean(false),\n\t},\n}",
76
- "version": "1"
77
- },
78
- "$": {
79
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst artifactManifest: cloud_assembly_schema.ArtifactManifest = {\n type: cloud_assembly_schema.ArtifactType.NONE,\n\n // the properties below are optional\n dependencies: ['dependencies'],\n displayName: 'displayName',\n environment: 'environment',\n metadata: {\n metadataKey: [{\n type: 'type',\n\n // the properties below are optional\n data: 'data',\n trace: ['trace'],\n }],\n },\n properties: {\n templateFile: 'templateFile',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',\n lookupRole: {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n },\n parameters: {\n parametersKey: 'parameters',\n },\n requiresBootstrapStackVersion: 123,\n stackName: 'stackName',\n stackTemplateAssetObjectUrl: 'stackTemplateAssetObjectUrl',\n tags: {\n tagsKey: 'tags',\n },\n terminationProtection: false,\n validateOnSynth: false,\n },\n};",
80
- "version": "0"
81
- }
82
- },
83
- "location": {
84
- "api": {
85
- "api": "type",
86
- "fqn": "@aws-cdk/cloud-assembly-schema.ArtifactManifest"
87
- },
88
- "field": {
89
- "field": "example"
90
- }
91
- },
92
- "didCompile": true,
93
- "fqnsReferenced": [
94
- "@aws-cdk/cloud-assembly-schema.ArtifactManifest",
95
- "@aws-cdk/cloud-assembly-schema.ArtifactType",
96
- "@aws-cdk/cloud-assembly-schema.ArtifactType#NONE",
97
- "@aws-cdk/cloud-assembly-schema.BootstrapRole"
98
- ],
99
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst artifactManifest: cloud_assembly_schema.ArtifactManifest = {\n type: cloud_assembly_schema.ArtifactType.NONE,\n\n // the properties below are optional\n dependencies: ['dependencies'],\n displayName: 'displayName',\n environment: 'environment',\n metadata: {\n metadataKey: [{\n type: 'type',\n\n // the properties below are optional\n data: 'data',\n trace: ['trace'],\n }],\n },\n properties: {\n templateFile: 'templateFile',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',\n lookupRole: {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n },\n parameters: {\n parametersKey: 'parameters',\n },\n requiresBootstrapStackVersion: 123,\n stackName: 'stackName',\n stackTemplateAssetObjectUrl: 'stackTemplateAssetObjectUrl',\n tags: {\n tagsKey: 'tags',\n },\n terminationProtection: false,\n validateOnSynth: false,\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
100
- "syntaxKindCounter": {
101
- "8": 2,
102
- "10": 19,
103
- "75": 36,
104
- "91": 2,
105
- "153": 1,
106
- "169": 1,
107
- "192": 3,
108
- "193": 7,
109
- "194": 2,
110
- "225": 1,
111
- "242": 1,
112
- "243": 1,
113
- "254": 1,
114
- "255": 1,
115
- "256": 1,
116
- "281": 29,
117
- "290": 1
118
- },
119
- "fqnsFingerprint": "eb7788cf20261ea5e42f29f1f6680d6f1a2e4fc435ad2a88073aaded8027ff44"
120
- },
121
- "51b9f560219f00280c95ce85c64fec1e95f59ed1de150b9a0323d891c0d9870c": {
122
- "translations": {
123
- "python": {
124
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nassembly_manifest = cloud_assembly_schema.AssemblyManifest(\n version=\"version\",\n\n # the properties below are optional\n artifacts={\n \"artifacts_key\": cloud_assembly_schema.ArtifactManifest(\n type=cloud_assembly_schema.ArtifactType.NONE,\n\n # the properties below are optional\n dependencies=[\"dependencies\"],\n display_name=\"displayName\",\n environment=\"environment\",\n metadata={\n \"metadata_key\": [cloud_assembly_schema.MetadataEntry(\n type=\"type\",\n\n # the properties below are optional\n data=\"data\",\n trace=[\"trace\"]\n )]\n },\n properties=cloud_assembly_schema.AwsCloudFormationStackProperties(\n template_file=\"templateFile\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n cloud_formation_execution_role_arn=\"cloudFormationExecutionRoleArn\",\n lookup_role=cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n ),\n parameters={\n \"parameters_key\": \"parameters\"\n },\n requires_bootstrap_stack_version=123,\n stack_name=\"stackName\",\n stack_template_asset_object_url=\"stackTemplateAssetObjectUrl\",\n tags={\n \"tags_key\": \"tags\"\n },\n termination_protection=False,\n validate_on_synth=False\n )\n )\n },\n missing=[cloud_assembly_schema.MissingContext(\n key=\"key\",\n props=cloud_assembly_schema.AmiContextQuery(\n account=\"account\",\n filters={\n \"filters_key\": [\"filters\"]\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n owners=[\"owners\"]\n ),\n provider=cloud_assembly_schema.ContextProvider.AMI_PROVIDER\n )],\n runtime=cloud_assembly_schema.RuntimeInfo(\n libraries={\n \"libraries_key\": \"libraries\"\n }\n )\n)",
125
- "version": "2"
126
- },
127
- "csharp": {
128
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssemblyManifest assemblyManifest = new AssemblyManifest {\n Version = \"version\",\n\n // the properties below are optional\n Artifacts = new Dictionary<string, ArtifactManifest> {\n { \"artifactsKey\", new ArtifactManifest {\n Type = ArtifactType.NONE,\n\n // the properties below are optional\n Dependencies = new [] { \"dependencies\" },\n DisplayName = \"displayName\",\n Environment = \"environment\",\n Metadata = new Dictionary<string, MetadataEntry[]> {\n { \"metadataKey\", new [] { new MetadataEntry {\n Type = \"type\",\n\n // the properties below are optional\n Data = \"data\",\n Trace = new [] { \"trace\" }\n } } }\n },\n Properties = new AwsCloudFormationStackProperties {\n TemplateFile = \"templateFile\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n CloudFormationExecutionRoleArn = \"cloudFormationExecutionRoleArn\",\n LookupRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n },\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n RequiresBootstrapStackVersion = 123,\n StackName = \"stackName\",\n StackTemplateAssetObjectUrl = \"stackTemplateAssetObjectUrl\",\n Tags = new Dictionary<string, string> {\n { \"tagsKey\", \"tags\" }\n },\n TerminationProtection = false,\n ValidateOnSynth = false\n }\n } }\n },\n Missing = new [] { new MissingContext {\n Key = \"key\",\n Props = new AmiContextQuery {\n Account = \"account\",\n Filters = new Dictionary<string, string[]> {\n { \"filtersKey\", new [] { \"filters\" } }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n Owners = new [] { \"owners\" }\n },\n Provider = ContextProvider.AMI_PROVIDER\n } },\n Runtime = new RuntimeInfo {\n Libraries = new Dictionary<string, string> {\n { \"librariesKey\", \"libraries\" }\n }\n }\n};",
129
- "version": "1"
130
- },
131
- "java": {
132
- "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.cloudassembly.schema.*;\n\nAssemblyManifest assemblyManifest = AssemblyManifest.builder()\n .version(\"version\")\n\n // the properties below are optional\n .artifacts(Map.of(\n \"artifactsKey\", ArtifactManifest.builder()\n .type(ArtifactType.NONE)\n\n // the properties below are optional\n .dependencies(List.of(\"dependencies\"))\n .displayName(\"displayName\")\n .environment(\"environment\")\n .metadata(Map.of(\n \"metadataKey\", List.of(MetadataEntry.builder()\n .type(\"type\")\n\n // the properties below are optional\n .data(\"data\")\n .trace(List.of(\"trace\"))\n .build())))\n .properties(AwsCloudFormationStackProperties.builder()\n .templateFile(\"templateFile\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .cloudFormationExecutionRoleArn(\"cloudFormationExecutionRoleArn\")\n .lookupRole(BootstrapRole.builder()\n .arn(\"arn\")\n\n // the properties below are optional\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .requiresBootstrapStackVersion(123)\n .build())\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .requiresBootstrapStackVersion(123)\n .stackName(\"stackName\")\n .stackTemplateAssetObjectUrl(\"stackTemplateAssetObjectUrl\")\n .tags(Map.of(\n \"tagsKey\", \"tags\"))\n .terminationProtection(false)\n .validateOnSynth(false)\n .build())\n .build()))\n .missing(List.of(MissingContext.builder()\n .key(\"key\")\n .props(AmiContextQuery.builder()\n .account(\"account\")\n .filters(Map.of(\n \"filtersKey\", List.of(\"filters\")))\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .owners(List.of(\"owners\"))\n .build())\n .provider(ContextProvider.AMI_PROVIDER)\n .build()))\n .runtime(RuntimeInfo.builder()\n .libraries(Map.of(\n \"librariesKey\", \"libraries\"))\n .build())\n .build();",
133
- "version": "1"
134
- },
135
- "go": {
136
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nassemblyManifest := &assemblyManifest{\n\tversion: jsii.String(\"version\"),\n\n\t// the properties below are optional\n\tartifacts: map[string]artifactManifest{\n\t\t\"artifactsKey\": &artifactManifest{\n\t\t\t\"type\": cloud_assembly_schema.ArtifactType_NONE,\n\n\t\t\t// the properties below are optional\n\t\t\t\"dependencies\": []*string{\n\t\t\t\tjsii.String(\"dependencies\"),\n\t\t\t},\n\t\t\t\"displayName\": jsii.String(\"displayName\"),\n\t\t\t\"environment\": jsii.String(\"environment\"),\n\t\t\t\"metadata\": map[string][]MetadataEntry{\n\t\t\t\t\"metadataKey\": []MetadataEntry{\n\t\t\t\t\t&MetadataEntry{\n\t\t\t\t\t\t\"type\": jsii.String(\"type\"),\n\n\t\t\t\t\t\t// the properties below are optional\n\t\t\t\t\t\t\"data\": jsii.String(\"data\"),\n\t\t\t\t\t\t\"trace\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"trace\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"properties\": &AwsCloudFormationStackProperties{\n\t\t\t\t\"templateFile\": jsii.String(\"templateFile\"),\n\n\t\t\t\t// the properties below are optional\n\t\t\t\t\"assumeRoleArn\": jsii.String(\"assumeRoleArn\"),\n\t\t\t\t\"assumeRoleExternalId\": jsii.String(\"assumeRoleExternalId\"),\n\t\t\t\t\"bootstrapStackVersionSsmParameter\": jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\t\t\t\t\"cloudFormationExecutionRoleArn\": jsii.String(\"cloudFormationExecutionRoleArn\"),\n\t\t\t\t\"lookupRole\": &BootstrapRole{\n\t\t\t\t\t\"arn\": jsii.String(\"arn\"),\n\n\t\t\t\t\t// the properties below are optional\n\t\t\t\t\t\"assumeRoleExternalId\": jsii.String(\"assumeRoleExternalId\"),\n\t\t\t\t\t\"bootstrapStackVersionSsmParameter\": jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\t\t\t\t\t\"requiresBootstrapStackVersion\": jsii.Number(123),\n\t\t\t\t},\n\t\t\t\t\"parameters\": map[string]*string{\n\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t},\n\t\t\t\t\"requiresBootstrapStackVersion\": jsii.Number(123),\n\t\t\t\t\"stackName\": jsii.String(\"stackName\"),\n\t\t\t\t\"stackTemplateAssetObjectUrl\": jsii.String(\"stackTemplateAssetObjectUrl\"),\n\t\t\t\t\"tags\": map[string]*string{\n\t\t\t\t\t\"tagsKey\": jsii.String(\"tags\"),\n\t\t\t\t},\n\t\t\t\t\"terminationProtection\": jsii.Boolean(false),\n\t\t\t\t\"validateOnSynth\": jsii.Boolean(false),\n\t\t\t},\n\t\t},\n\t},\n\tmissing: []missingContext{\n\t\t&missingContext{\n\t\t\tkey: jsii.String(\"key\"),\n\t\t\tprops: &amiContextQuery{\n\t\t\t\taccount: jsii.String(\"account\"),\n\t\t\t\tfilters: map[string][]*string{\n\t\t\t\t\t\"filtersKey\": []*string{\n\t\t\t\t\t\tjsii.String(\"filters\"),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tregion: jsii.String(\"region\"),\n\n\t\t\t\t// the properties below are optional\n\t\t\t\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n\t\t\t\towners: []interface{}{\n\t\t\t\t\tjsii.String(\"owners\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\tprovider: cloud_assembly_schema.contextProvider_AMI_PROVIDER,\n\t\t},\n\t},\n\truntime: &runtimeInfo{\n\t\tlibraries: map[string]*string{\n\t\t\t\"librariesKey\": jsii.String(\"libraries\"),\n\t\t},\n\t},\n}",
137
- "version": "1"
138
- },
139
- "$": {
140
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst assemblyManifest: cloud_assembly_schema.AssemblyManifest = {\n version: 'version',\n\n // the properties below are optional\n artifacts: {\n artifactsKey: {\n type: cloud_assembly_schema.ArtifactType.NONE,\n\n // the properties below are optional\n dependencies: ['dependencies'],\n displayName: 'displayName',\n environment: 'environment',\n metadata: {\n metadataKey: [{\n type: 'type',\n\n // the properties below are optional\n data: 'data',\n trace: ['trace'],\n }],\n },\n properties: {\n templateFile: 'templateFile',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',\n lookupRole: {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n },\n parameters: {\n parametersKey: 'parameters',\n },\n requiresBootstrapStackVersion: 123,\n stackName: 'stackName',\n stackTemplateAssetObjectUrl: 'stackTemplateAssetObjectUrl',\n tags: {\n tagsKey: 'tags',\n },\n terminationProtection: false,\n validateOnSynth: false,\n },\n },\n },\n missing: [{\n key: 'key',\n props: {\n account: 'account',\n filters: {\n filtersKey: ['filters'],\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n owners: ['owners'],\n },\n provider: cloud_assembly_schema.ContextProvider.AMI_PROVIDER,\n }],\n runtime: {\n libraries: {\n librariesKey: 'libraries',\n },\n },\n};",
141
- "version": "0"
142
- }
143
- },
144
- "location": {
145
- "api": {
146
- "api": "type",
147
- "fqn": "@aws-cdk/cloud-assembly-schema.AssemblyManifest"
148
- },
149
- "field": {
150
- "field": "example"
151
- }
152
- },
153
- "didCompile": true,
154
- "fqnsReferenced": [
155
- "@aws-cdk/cloud-assembly-schema.ArtifactManifest",
156
- "@aws-cdk/cloud-assembly-schema.ArtifactType",
157
- "@aws-cdk/cloud-assembly-schema.ArtifactType#NONE",
158
- "@aws-cdk/cloud-assembly-schema.AssemblyManifest",
159
- "@aws-cdk/cloud-assembly-schema.BootstrapRole",
160
- "@aws-cdk/cloud-assembly-schema.ContextProvider",
161
- "@aws-cdk/cloud-assembly-schema.ContextProvider#AMI_PROVIDER",
162
- "@aws-cdk/cloud-assembly-schema.RuntimeInfo"
163
- ],
164
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assemblyManifest: cloud_assembly_schema.AssemblyManifest = {\n version: 'version',\n\n // the properties below are optional\n artifacts: {\n artifactsKey: {\n type: cloud_assembly_schema.ArtifactType.NONE,\n\n // the properties below are optional\n dependencies: ['dependencies'],\n displayName: 'displayName',\n environment: 'environment',\n metadata: {\n metadataKey: [{\n type: 'type',\n\n // the properties below are optional\n data: 'data',\n trace: ['trace'],\n }],\n },\n properties: {\n templateFile: 'templateFile',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',\n lookupRole: {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n },\n parameters: {\n parametersKey: 'parameters',\n },\n requiresBootstrapStackVersion: 123,\n stackName: 'stackName',\n stackTemplateAssetObjectUrl: 'stackTemplateAssetObjectUrl',\n tags: {\n tagsKey: 'tags',\n },\n terminationProtection: false,\n validateOnSynth: false,\n },\n },\n },\n missing: [{\n key: 'key',\n props: {\n account: 'account',\n filters: {\n filtersKey: ['filters'],\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n owners: ['owners'],\n },\n provider: cloud_assembly_schema.ContextProvider.AMI_PROVIDER,\n }],\n runtime: {\n libraries: {\n librariesKey: 'libraries',\n },\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
165
- "syntaxKindCounter": {
166
- "8": 2,
167
- "10": 27,
168
- "75": 55,
169
- "91": 2,
170
- "153": 1,
171
- "169": 1,
172
- "192": 6,
173
- "193": 14,
174
- "194": 4,
175
- "225": 1,
176
- "242": 1,
177
- "243": 1,
178
- "254": 1,
179
- "255": 1,
180
- "256": 1,
181
- "281": 45,
182
- "290": 1
183
- },
184
- "fqnsFingerprint": "39f0c7160aca5b5fddc74e88da93416ff2c3bbc8c259d94ad11f42a956b2e3ba"
185
- },
186
- "6683729a413a63c601f246c117c382fc14f7a0e56614f8a6b8bfd9779c71590d": {
187
- "translations": {
188
- "python": {
189
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nasset_manifest = cloud_assembly_schema.AssetManifest(\n version=\"version\",\n\n # the properties below are optional\n docker_images={\n \"docker_images_key\": cloud_assembly_schema.DockerImageAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"],\n network_mode=\"networkMode\",\n platform=\"platform\"\n )\n )\n },\n files={\n \"files_key\": cloud_assembly_schema.FileAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n )\n )\n }\n)",
190
- "version": "2"
191
- },
192
- "csharp": {
193
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssetManifest assetManifest = new AssetManifest {\n Version = \"version\",\n\n // the properties below are optional\n DockerImages = new Dictionary<string, DockerImageAsset> {\n { \"dockerImagesKey\", new DockerImageAsset {\n Destinations = new Dictionary<string, DockerImageDestination> {\n { \"destinationsKey\", new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" },\n NetworkMode = \"networkMode\",\n Platform = \"platform\"\n }\n } }\n },\n Files = new Dictionary<string, FileAsset> {\n { \"filesKey\", new FileAsset {\n Destinations = new Dictionary<string, FileDestination> {\n { \"destinationsKey\", new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n }\n } }\n }\n};",
194
- "version": "1"
195
- },
196
- "java": {
197
- "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.cloudassembly.schema.*;\n\nAssetManifest assetManifest = AssetManifest.builder()\n .version(\"version\")\n\n // the properties below are optional\n .dockerImages(Map.of(\n \"dockerImagesKey\", DockerImageAsset.builder()\n .destinations(Map.of(\n \"destinationsKey\", DockerImageDestination.builder()\n .imageTag(\"imageTag\")\n .repositoryName(\"repositoryName\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build()))\n .source(DockerImageSource.builder()\n .directory(\"directory\")\n .dockerBuildArgs(Map.of(\n \"dockerBuildArgsKey\", \"dockerBuildArgs\"))\n .dockerBuildTarget(\"dockerBuildTarget\")\n .dockerFile(\"dockerFile\")\n .executable(List.of(\"executable\"))\n .networkMode(\"networkMode\")\n .platform(\"platform\")\n .build())\n .build()))\n .files(Map.of(\n \"filesKey\", FileAsset.builder()\n .destinations(Map.of(\n \"destinationsKey\", FileDestination.builder()\n .bucketName(\"bucketName\")\n .objectKey(\"objectKey\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build()))\n .source(FileSource.builder()\n .executable(List.of(\"executable\"))\n .packaging(FileAssetPackaging.FILE)\n .path(\"path\")\n .build())\n .build()))\n .build();",
198
- "version": "1"
199
- },
200
- "go": {
201
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nassetManifest := &assetManifest{\n\tversion: jsii.String(\"version\"),\n\n\t// the properties below are optional\n\tdockerImages: map[string]dockerImageAsset{\n\t\t\"dockerImagesKey\": &dockerImageAsset{\n\t\t\t\"destinations\": map[string]DockerImageDestination{\n\t\t\t\t\"destinationsKey\": &DockerImageDestination{\n\t\t\t\t\t\"imageTag\": jsii.String(\"imageTag\"),\n\t\t\t\t\t\"repositoryName\": jsii.String(\"repositoryName\"),\n\n\t\t\t\t\t// the properties below are optional\n\t\t\t\t\t\"assumeRoleArn\": jsii.String(\"assumeRoleArn\"),\n\t\t\t\t\t\"assumeRoleExternalId\": jsii.String(\"assumeRoleExternalId\"),\n\t\t\t\t\t\"region\": jsii.String(\"region\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"source\": &DockerImageSource{\n\t\t\t\t\"directory\": jsii.String(\"directory\"),\n\t\t\t\t\"dockerBuildArgs\": map[string]*string{\n\t\t\t\t\t\"dockerBuildArgsKey\": jsii.String(\"dockerBuildArgs\"),\n\t\t\t\t},\n\t\t\t\t\"dockerBuildTarget\": jsii.String(\"dockerBuildTarget\"),\n\t\t\t\t\"dockerFile\": jsii.String(\"dockerFile\"),\n\t\t\t\t\"executable\": []*string{\n\t\t\t\t\tjsii.String(\"executable\"),\n\t\t\t\t},\n\t\t\t\t\"networkMode\": jsii.String(\"networkMode\"),\n\t\t\t\t\"platform\": jsii.String(\"platform\"),\n\t\t\t},\n\t\t},\n\t},\n\tfiles: map[string]fileAsset{\n\t\t\"filesKey\": &fileAsset{\n\t\t\t\"destinations\": map[string]FileDestination{\n\t\t\t\t\"destinationsKey\": &FileDestination{\n\t\t\t\t\t\"bucketName\": jsii.String(\"bucketName\"),\n\t\t\t\t\t\"objectKey\": jsii.String(\"objectKey\"),\n\n\t\t\t\t\t// the properties below are optional\n\t\t\t\t\t\"assumeRoleArn\": jsii.String(\"assumeRoleArn\"),\n\t\t\t\t\t\"assumeRoleExternalId\": jsii.String(\"assumeRoleExternalId\"),\n\t\t\t\t\t\"region\": jsii.String(\"region\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"source\": &FileSource{\n\t\t\t\t\"executable\": []*string{\n\t\t\t\t\tjsii.String(\"executable\"),\n\t\t\t\t},\n\t\t\t\t\"packaging\": cloud_assembly_schema.FileAssetPackaging_FILE,\n\t\t\t\t\"path\": jsii.String(\"path\"),\n\t\t\t},\n\t\t},\n\t},\n}",
202
- "version": "1"
203
- },
204
- "$": {
205
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst assetManifest: cloud_assembly_schema.AssetManifest = {\n version: 'version',\n\n // the properties below are optional\n dockerImages: {\n dockerImagesKey: {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n platform: 'platform',\n },\n },\n },\n files: {\n filesKey: {\n destinations: {\n destinationsKey: {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n },\n },\n },\n};",
206
- "version": "0"
207
- }
208
- },
209
- "location": {
210
- "api": {
211
- "api": "type",
212
- "fqn": "@aws-cdk/cloud-assembly-schema.AssetManifest"
213
- },
214
- "field": {
215
- "field": "example"
216
- }
217
- },
218
- "didCompile": true,
219
- "fqnsReferenced": [
220
- "@aws-cdk/cloud-assembly-schema.AssetManifest",
221
- "@aws-cdk/cloud-assembly-schema.DockerImageAsset",
222
- "@aws-cdk/cloud-assembly-schema.DockerImageDestination",
223
- "@aws-cdk/cloud-assembly-schema.DockerImageSource",
224
- "@aws-cdk/cloud-assembly-schema.FileAsset",
225
- "@aws-cdk/cloud-assembly-schema.FileAssetPackaging",
226
- "@aws-cdk/cloud-assembly-schema.FileAssetPackaging#FILE",
227
- "@aws-cdk/cloud-assembly-schema.FileDestination",
228
- "@aws-cdk/cloud-assembly-schema.FileSource"
229
- ],
230
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assetManifest: cloud_assembly_schema.AssetManifest = {\n version: 'version',\n\n // the properties below are optional\n dockerImages: {\n dockerImagesKey: {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n platform: 'platform',\n },\n },\n },\n files: {\n filesKey: {\n destinations: {\n destinationsKey: {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n },\n },\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
231
- "syntaxKindCounter": {
232
- "10": 21,
233
- "75": 39,
234
- "153": 1,
235
- "169": 1,
236
- "192": 2,
237
- "193": 12,
238
- "194": 2,
239
- "225": 1,
240
- "242": 1,
241
- "243": 1,
242
- "254": 1,
243
- "255": 1,
244
- "256": 1,
245
- "281": 32,
246
- "290": 1
247
- },
248
- "fqnsFingerprint": "dbe2e4361bc0248570e34c9f444353d69d7002c4af38c4087497179cef7643dd"
249
- },
250
- "473cefad1aeafa51cd5283cec6bdb716fbc338d433ea32231c51139c95227a6d": {
251
- "translations": {
252
- "python": {
253
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nasset_manifest_properties = cloud_assembly_schema.AssetManifestProperties(\n file=\"file\",\n\n # the properties below are optional\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n)",
254
- "version": "2"
255
- },
256
- "csharp": {
257
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssetManifestProperties assetManifestProperties = new AssetManifestProperties {\n File = \"file\",\n\n // the properties below are optional\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n};",
258
- "version": "1"
259
- },
260
- "java": {
261
- "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.cloudassembly.schema.*;\n\nAssetManifestProperties assetManifestProperties = AssetManifestProperties.builder()\n .file(\"file\")\n\n // the properties below are optional\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .requiresBootstrapStackVersion(123)\n .build();",
262
- "version": "1"
263
- },
264
- "go": {
265
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nassetManifestProperties := &assetManifestProperties{\n\tfile: jsii.String(\"file\"),\n\n\t// the properties below are optional\n\tbootstrapStackVersionSsmParameter: jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\trequiresBootstrapStackVersion: jsii.Number(123),\n}",
266
- "version": "1"
267
- },
268
- "$": {
269
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst assetManifestProperties: cloud_assembly_schema.AssetManifestProperties = {\n file: 'file',\n\n // the properties below are optional\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n};",
270
- "version": "0"
271
- }
272
- },
273
- "location": {
274
- "api": {
275
- "api": "type",
276
- "fqn": "@aws-cdk/cloud-assembly-schema.AssetManifestProperties"
277
- },
278
- "field": {
279
- "field": "example"
280
- }
281
- },
282
- "didCompile": true,
283
- "fqnsReferenced": [
284
- "@aws-cdk/cloud-assembly-schema.AssetManifestProperties"
285
- ],
286
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assetManifestProperties: cloud_assembly_schema.AssetManifestProperties = {\n file: 'file',\n\n // the properties below are optional\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
287
- "syntaxKindCounter": {
288
- "8": 1,
289
- "10": 3,
290
- "75": 7,
291
- "153": 1,
292
- "169": 1,
293
- "193": 1,
294
- "225": 1,
295
- "242": 1,
296
- "243": 1,
297
- "254": 1,
298
- "255": 1,
299
- "256": 1,
300
- "281": 3,
301
- "290": 1
302
- },
303
- "fqnsFingerprint": "6fa4dafd5ba99c700a02dc4ab8953382c12e54407e32a7a1a4d9b458c0e8df3f"
304
- },
305
- "3e88ed85cf90bc22bc9f9e684954f4e8fec254700a725062c7ce0e689b417305": {
306
- "translations": {
307
- "python": {
308
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\navailability_zones_context_query = cloud_assembly_schema.AvailabilityZonesContextQuery(\n account=\"account\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
309
- "version": "2"
310
- },
311
- "csharp": {
312
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAvailabilityZonesContextQuery availabilityZonesContextQuery = new AvailabilityZonesContextQuery {\n Account = \"account\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
313
- "version": "1"
314
- },
315
- "java": {
316
- "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.cloudassembly.schema.*;\n\nAvailabilityZonesContextQuery availabilityZonesContextQuery = AvailabilityZonesContextQuery.builder()\n .account(\"account\")\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .build();",
317
- "version": "1"
318
- },
319
- "go": {
320
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\navailabilityZonesContextQuery := &availabilityZonesContextQuery{\n\taccount: jsii.String(\"account\"),\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n}",
321
- "version": "1"
322
- },
323
- "$": {
324
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst availabilityZonesContextQuery: cloud_assembly_schema.AvailabilityZonesContextQuery = {\n account: 'account',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};",
325
- "version": "0"
326
- }
327
- },
328
- "location": {
329
- "api": {
330
- "api": "type",
331
- "fqn": "@aws-cdk/cloud-assembly-schema.AvailabilityZonesContextQuery"
332
- },
333
- "field": {
334
- "field": "example"
335
- }
336
- },
337
- "didCompile": true,
338
- "fqnsReferenced": [
339
- "@aws-cdk/cloud-assembly-schema.AvailabilityZonesContextQuery"
340
- ],
341
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst availabilityZonesContextQuery: cloud_assembly_schema.AvailabilityZonesContextQuery = {\n account: 'account',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
342
- "syntaxKindCounter": {
343
- "10": 4,
344
- "75": 7,
345
- "153": 1,
346
- "169": 1,
347
- "193": 1,
348
- "225": 1,
349
- "242": 1,
350
- "243": 1,
351
- "254": 1,
352
- "255": 1,
353
- "256": 1,
354
- "281": 3,
355
- "290": 1
356
- },
357
- "fqnsFingerprint": "5843491fa882f688ddab5c8c27ec5364c432fa91369fdf4434a65c0d66e00da2"
358
- },
359
- "210001af9ea4fdab1dd7cde9580cecadb1d87fda5fe8a230e3a8945f3915f284": {
360
- "translations": {
361
- "python": {
362
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\naws_cloud_formation_stack_properties = cloud_assembly_schema.AwsCloudFormationStackProperties(\n template_file=\"templateFile\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n cloud_formation_execution_role_arn=\"cloudFormationExecutionRoleArn\",\n lookup_role=cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n ),\n parameters={\n \"parameters_key\": \"parameters\"\n },\n requires_bootstrap_stack_version=123,\n stack_name=\"stackName\",\n stack_template_asset_object_url=\"stackTemplateAssetObjectUrl\",\n tags={\n \"tags_key\": \"tags\"\n },\n termination_protection=False,\n validate_on_synth=False\n)",
363
- "version": "2"
364
- },
365
- "csharp": {
366
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAwsCloudFormationStackProperties awsCloudFormationStackProperties = new AwsCloudFormationStackProperties {\n TemplateFile = \"templateFile\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n CloudFormationExecutionRoleArn = \"cloudFormationExecutionRoleArn\",\n LookupRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n },\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n RequiresBootstrapStackVersion = 123,\n StackName = \"stackName\",\n StackTemplateAssetObjectUrl = \"stackTemplateAssetObjectUrl\",\n Tags = new Dictionary<string, string> {\n { \"tagsKey\", \"tags\" }\n },\n TerminationProtection = false,\n ValidateOnSynth = false\n};",
367
- "version": "1"
368
- },
369
- "java": {
370
- "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.cloudassembly.schema.*;\n\nAwsCloudFormationStackProperties awsCloudFormationStackProperties = AwsCloudFormationStackProperties.builder()\n .templateFile(\"templateFile\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .cloudFormationExecutionRoleArn(\"cloudFormationExecutionRoleArn\")\n .lookupRole(BootstrapRole.builder()\n .arn(\"arn\")\n\n // the properties below are optional\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .requiresBootstrapStackVersion(123)\n .build())\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .requiresBootstrapStackVersion(123)\n .stackName(\"stackName\")\n .stackTemplateAssetObjectUrl(\"stackTemplateAssetObjectUrl\")\n .tags(Map.of(\n \"tagsKey\", \"tags\"))\n .terminationProtection(false)\n .validateOnSynth(false)\n .build();",
371
- "version": "1"
372
- },
373
- "go": {
374
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nawsCloudFormationStackProperties := &awsCloudFormationStackProperties{\n\ttemplateFile: jsii.String(\"templateFile\"),\n\n\t// the properties below are optional\n\tassumeRoleArn: jsii.String(\"assumeRoleArn\"),\n\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\tbootstrapStackVersionSsmParameter: jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\tcloudFormationExecutionRoleArn: jsii.String(\"cloudFormationExecutionRoleArn\"),\n\tlookupRole: &bootstrapRole{\n\t\tarn: jsii.String(\"arn\"),\n\n\t\t// the properties below are optional\n\t\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\t\tbootstrapStackVersionSsmParameter: jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\t\trequiresBootstrapStackVersion: jsii.Number(123),\n\t},\n\tparameters: map[string]*string{\n\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t},\n\trequiresBootstrapStackVersion: jsii.Number(123),\n\tstackName: jsii.String(\"stackName\"),\n\tstackTemplateAssetObjectUrl: jsii.String(\"stackTemplateAssetObjectUrl\"),\n\ttags: map[string]*string{\n\t\t\"tagsKey\": jsii.String(\"tags\"),\n\t},\n\tterminationProtection: jsii.Boolean(false),\n\tvalidateOnSynth: jsii.Boolean(false),\n}",
375
- "version": "1"
376
- },
377
- "$": {
378
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst awsCloudFormationStackProperties: cloud_assembly_schema.AwsCloudFormationStackProperties = {\n templateFile: 'templateFile',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',\n lookupRole: {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n },\n parameters: {\n parametersKey: 'parameters',\n },\n requiresBootstrapStackVersion: 123,\n stackName: 'stackName',\n stackTemplateAssetObjectUrl: 'stackTemplateAssetObjectUrl',\n tags: {\n tagsKey: 'tags',\n },\n terminationProtection: false,\n validateOnSynth: false,\n};",
379
- "version": "0"
380
- }
381
- },
382
- "location": {
383
- "api": {
384
- "api": "type",
385
- "fqn": "@aws-cdk/cloud-assembly-schema.AwsCloudFormationStackProperties"
386
- },
387
- "field": {
388
- "field": "example"
389
- }
390
- },
391
- "didCompile": true,
392
- "fqnsReferenced": [
393
- "@aws-cdk/cloud-assembly-schema.AwsCloudFormationStackProperties",
394
- "@aws-cdk/cloud-assembly-schema.BootstrapRole"
395
- ],
396
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst awsCloudFormationStackProperties: cloud_assembly_schema.AwsCloudFormationStackProperties = {\n templateFile: 'templateFile',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',\n lookupRole: {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n },\n parameters: {\n parametersKey: 'parameters',\n },\n requiresBootstrapStackVersion: 123,\n stackName: 'stackName',\n stackTemplateAssetObjectUrl: 'stackTemplateAssetObjectUrl',\n tags: {\n tagsKey: 'tags',\n },\n terminationProtection: false,\n validateOnSynth: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
397
- "syntaxKindCounter": {
398
- "8": 2,
399
- "10": 13,
400
- "75": 23,
401
- "91": 2,
402
- "153": 1,
403
- "169": 1,
404
- "193": 4,
405
- "225": 1,
406
- "242": 1,
407
- "243": 1,
408
- "254": 1,
409
- "255": 1,
410
- "256": 1,
411
- "281": 19,
412
- "290": 1
413
- },
414
- "fqnsFingerprint": "979c43277ee2c1d3d98c93911b8f1f2d4980f4d540fe8d3181ef75064f097ad3"
415
- },
416
- "f0c091ab0d76f7def8f7593714572ee73dd9b4be11c3308bd524be2dedf6710a": {
417
- "translations": {
418
- "python": {
419
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\naws_destination = cloud_assembly_schema.AwsDestination(\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n)",
420
- "version": "2"
421
- },
422
- "csharp": {
423
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAwsDestination awsDestination = new AwsDestination {\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n};",
424
- "version": "1"
425
- },
426
- "java": {
427
- "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.cloudassembly.schema.*;\n\nAwsDestination awsDestination = AwsDestination.builder()\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build();",
428
- "version": "1"
429
- },
430
- "go": {
431
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nawsDestination := &awsDestination{\n\tassumeRoleArn: jsii.String(\"assumeRoleArn\"),\n\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\tregion: jsii.String(\"region\"),\n}",
432
- "version": "1"
433
- },
434
- "$": {
435
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst awsDestination: cloud_assembly_schema.AwsDestination = {\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n};",
436
- "version": "0"
437
- }
438
- },
439
- "location": {
440
- "api": {
441
- "api": "type",
442
- "fqn": "@aws-cdk/cloud-assembly-schema.AwsDestination"
443
- },
444
- "field": {
445
- "field": "example"
446
- }
447
- },
448
- "didCompile": true,
449
- "fqnsReferenced": [
450
- "@aws-cdk/cloud-assembly-schema.AwsDestination"
451
- ],
452
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst awsDestination: cloud_assembly_schema.AwsDestination = {\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
453
- "syntaxKindCounter": {
454
- "10": 4,
455
- "75": 7,
456
- "153": 1,
457
- "169": 1,
458
- "193": 1,
459
- "225": 1,
460
- "242": 1,
461
- "243": 1,
462
- "254": 1,
463
- "255": 1,
464
- "256": 1,
465
- "281": 3,
466
- "290": 1
467
- },
468
- "fqnsFingerprint": "f7451737350cdc8cc4bc8c5339a5b8d32153ae61773c95f4f64f735b63415e58"
469
- },
470
- "03b1dfef36a618699bb85a0d61322c7b463d7bd335c602e106dd3728d0629d18": {
471
- "translations": {
472
- "python": {
473
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nbootstrap_role = cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n)",
474
- "version": "2"
475
- },
476
- "csharp": {
477
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nBootstrapRole bootstrapRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n};",
478
- "version": "1"
479
- },
480
- "java": {
481
- "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.cloudassembly.schema.*;\n\nBootstrapRole bootstrapRole = BootstrapRole.builder()\n .arn(\"arn\")\n\n // the properties below are optional\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .bootstrapStackVersionSsmParameter(\"bootstrapStackVersionSsmParameter\")\n .requiresBootstrapStackVersion(123)\n .build();",
482
- "version": "1"
483
- },
484
- "go": {
485
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nbootstrapRole := &bootstrapRole{\n\tarn: jsii.String(\"arn\"),\n\n\t// the properties below are optional\n\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\tbootstrapStackVersionSsmParameter: jsii.String(\"bootstrapStackVersionSsmParameter\"),\n\trequiresBootstrapStackVersion: jsii.Number(123),\n}",
486
- "version": "1"
487
- },
488
- "$": {
489
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst bootstrapRole: cloud_assembly_schema.BootstrapRole = {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n};",
490
- "version": "0"
491
- }
492
- },
493
- "location": {
494
- "api": {
495
- "api": "type",
496
- "fqn": "@aws-cdk/cloud-assembly-schema.BootstrapRole"
497
- },
498
- "field": {
499
- "field": "example"
500
- }
501
- },
502
- "didCompile": true,
503
- "fqnsReferenced": [
504
- "@aws-cdk/cloud-assembly-schema.BootstrapRole"
505
- ],
506
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst bootstrapRole: cloud_assembly_schema.BootstrapRole = {\n arn: 'arn',\n\n // the properties below are optional\n assumeRoleExternalId: 'assumeRoleExternalId',\n bootstrapStackVersionSsmParameter: 'bootstrapStackVersionSsmParameter',\n requiresBootstrapStackVersion: 123,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
507
- "syntaxKindCounter": {
508
- "8": 1,
509
- "10": 4,
510
- "75": 8,
511
- "153": 1,
512
- "169": 1,
513
- "193": 1,
514
- "225": 1,
515
- "242": 1,
516
- "243": 1,
517
- "254": 1,
518
- "255": 1,
519
- "256": 1,
520
- "281": 4,
521
- "290": 1
522
- },
523
- "fqnsFingerprint": "3b7fe1842f0cc0f13ad1684247b5b04a45b80ce59b32df4f294894aeb087781b"
524
- },
525
- "667e9c913de44b491e0d8b565101bc973a93a3bd49ed883bf6bcb065b8c52ef2": {
526
- "translations": {
527
- "python": {
528
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ncdk_command = cloud_assembly_schema.CdkCommand(\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n)",
529
- "version": "2"
530
- },
531
- "csharp": {
532
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nCdkCommand cdkCommand = new CdkCommand {\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n};",
533
- "version": "1"
534
- },
535
- "java": {
536
- "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.cloudassembly.schema.*;\n\nCdkCommand cdkCommand = CdkCommand.builder()\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build();",
537
- "version": "1"
538
- },
539
- "go": {
540
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ncdkCommand := &cdkCommand{\n\tenabled: jsii.Boolean(false),\n\texpectedMessage: jsii.String(\"expectedMessage\"),\n\texpectError: jsii.Boolean(false),\n}",
541
- "version": "1"
542
- },
543
- "$": {
544
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst cdkCommand: cloud_assembly_schema.CdkCommand = {\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
545
- "version": "0"
546
- }
547
- },
548
- "location": {
549
- "api": {
550
- "api": "type",
551
- "fqn": "@aws-cdk/cloud-assembly-schema.CdkCommand"
552
- },
553
- "field": {
554
- "field": "example"
555
- }
556
- },
557
- "didCompile": true,
558
- "fqnsReferenced": [
559
- "@aws-cdk/cloud-assembly-schema.CdkCommand"
560
- ],
561
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cdkCommand: cloud_assembly_schema.CdkCommand = {\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
562
- "syntaxKindCounter": {
563
- "10": 2,
564
- "75": 7,
565
- "91": 2,
566
- "153": 1,
567
- "169": 1,
568
- "193": 1,
569
- "225": 1,
570
- "242": 1,
571
- "243": 1,
572
- "254": 1,
573
- "255": 1,
574
- "256": 1,
575
- "281": 3,
576
- "290": 1
577
- },
578
- "fqnsFingerprint": "865a836cb27f42e709ad29a1f033399133017c1b7613ee028434d7ef7255a9ee"
579
- },
580
- "a5ed2422b3e83e2529b420b46c98c8553b381d1629a87e490891a96d1e2a0b39": {
581
- "translations": {
582
- "python": {
583
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ncdk_commands = cloud_assembly_schema.CdkCommands(\n deploy=cloud_assembly_schema.DeployCommand(\n args=cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n ),\n destroy=cloud_assembly_schema.DestroyCommand(\n args=cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n )\n)",
584
- "version": "2"
585
- },
586
- "csharp": {
587
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nCdkCommands cdkCommands = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Execute = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n NotificationArns = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n ToolkitStackName = \"toolkitStackName\",\n Trace = false,\n UsePreviousParameters = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n }\n};",
588
- "version": "1"
589
- },
590
- "java": {
591
- "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.cloudassembly.schema.*;\n\nCdkCommands cdkCommands = CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .execute(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .notificationArns(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .build();",
592
- "version": "1"
593
- },
594
- "go": {
595
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ncdkCommands := &cdkCommands{\n\tdeploy: &deployCommand{\n\t\targs: &deployOptions{\n\t\t\tall: jsii.Boolean(false),\n\t\t\tapp: jsii.String(\"app\"),\n\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\t\tci: jsii.Boolean(false),\n\t\t\tcolor: jsii.Boolean(false),\n\t\t\tcontext: map[string]*string{\n\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t},\n\t\t\tdebug: jsii.Boolean(false),\n\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\texclusively: jsii.Boolean(false),\n\t\t\texecute: jsii.Boolean(false),\n\t\t\tforce: jsii.Boolean(false),\n\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\tjson: jsii.Boolean(false),\n\t\t\tlookups: jsii.Boolean(false),\n\t\t\tnotices: jsii.Boolean(false),\n\t\t\tnotificationArns: []*string{\n\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t},\n\t\t\toutput: jsii.String(\"output\"),\n\t\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\t\tparameters: map[string]*string{\n\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t},\n\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\t\treuseAssets: []*string{\n\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t},\n\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\trollback: jsii.Boolean(false),\n\t\t\tstacks: []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\t\t\tstaging: jsii.Boolean(false),\n\t\t\tstrict: jsii.Boolean(false),\n\t\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\t\ttrace: jsii.Boolean(false),\n\t\t\tusePreviousParameters: jsii.Boolean(false),\n\t\t\tverbose: jsii.Boolean(false),\n\t\t\tversionReporting: jsii.Boolean(false),\n\t\t},\n\t\tenabled: jsii.Boolean(false),\n\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\texpectError: jsii.Boolean(false),\n\t},\n\tdestroy: &destroyCommand{\n\t\targs: &destroyOptions{\n\t\t\tall: jsii.Boolean(false),\n\t\t\tapp: jsii.String(\"app\"),\n\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\tcolor: jsii.Boolean(false),\n\t\t\tcontext: map[string]*string{\n\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t},\n\t\t\tdebug: jsii.Boolean(false),\n\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\texclusively: jsii.Boolean(false),\n\t\t\tforce: jsii.Boolean(false),\n\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\tjson: jsii.Boolean(false),\n\t\t\tlookups: jsii.Boolean(false),\n\t\t\tnotices: jsii.Boolean(false),\n\t\t\toutput: jsii.String(\"output\"),\n\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\tstacks: []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\t\t\tstaging: jsii.Boolean(false),\n\t\t\tstrict: jsii.Boolean(false),\n\t\t\ttrace: jsii.Boolean(false),\n\t\t\tverbose: jsii.Boolean(false),\n\t\t\tversionReporting: jsii.Boolean(false),\n\t\t},\n\t\tenabled: jsii.Boolean(false),\n\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\texpectError: jsii.Boolean(false),\n\t},\n}",
596
- "version": "1"
597
- },
598
- "$": {
599
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst cdkCommands: cloud_assembly_schema.CdkCommands = {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n};",
600
- "version": "0"
601
- }
602
- },
603
- "location": {
604
- "api": {
605
- "api": "type",
606
- "fqn": "@aws-cdk/cloud-assembly-schema.CdkCommands"
607
- },
608
- "field": {
609
- "field": "example"
610
- }
611
- },
612
- "didCompile": true,
613
- "fqnsReferenced": [
614
- "@aws-cdk/cloud-assembly-schema.CdkCommands",
615
- "@aws-cdk/cloud-assembly-schema.DeployCommand",
616
- "@aws-cdk/cloud-assembly-schema.DeployOptions",
617
- "@aws-cdk/cloud-assembly-schema.DestroyCommand",
618
- "@aws-cdk/cloud-assembly-schema.DestroyOptions",
619
- "@aws-cdk/cloud-assembly-schema.RequireApproval",
620
- "@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
621
- ],
622
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst cdkCommands: cloud_assembly_schema.CdkCommands = {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
623
- "syntaxKindCounter": {
624
- "10": 25,
625
- "75": 81,
626
- "91": 42,
627
- "153": 1,
628
- "169": 1,
629
- "192": 4,
630
- "193": 8,
631
- "194": 2,
632
- "225": 1,
633
- "242": 1,
634
- "243": 1,
635
- "254": 1,
636
- "255": 1,
637
- "256": 1,
638
- "281": 74,
639
- "290": 1
640
- },
641
- "fqnsFingerprint": "c5d3ceb788115e623cc23a29a6034f93b930ada545f0fcf53ea9146dbb03586b"
642
- },
643
- "21c0b42068c39ea6dc636100b83a0b506221a25d1b29f53cefc26648b7a43e6d": {
644
- "translations": {
645
- "python": {
646
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ncontainer_image_asset_metadata_entry = cloud_assembly_schema.ContainerImageAssetMetadataEntry(\n id=\"id\",\n packaging=\"packaging\",\n path=\"path\",\n source_hash=\"sourceHash\",\n\n # the properties below are optional\n build_args={\n \"build_args_key\": \"buildArgs\"\n },\n file=\"file\",\n image_name_parameter=\"imageNameParameter\",\n image_tag=\"imageTag\",\n network_mode=\"networkMode\",\n platform=\"platform\",\n repository_name=\"repositoryName\",\n target=\"target\"\n)",
647
- "version": "2"
648
- },
649
- "csharp": {
650
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nContainerImageAssetMetadataEntry containerImageAssetMetadataEntry = new ContainerImageAssetMetadataEntry {\n Id = \"id\",\n Packaging = \"packaging\",\n Path = \"path\",\n SourceHash = \"sourceHash\",\n\n // the properties below are optional\n BuildArgs = new Dictionary<string, string> {\n { \"buildArgsKey\", \"buildArgs\" }\n },\n File = \"file\",\n ImageNameParameter = \"imageNameParameter\",\n ImageTag = \"imageTag\",\n NetworkMode = \"networkMode\",\n Platform = \"platform\",\n RepositoryName = \"repositoryName\",\n Target = \"target\"\n};",
651
- "version": "1"
652
- },
653
- "java": {
654
- "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.cloudassembly.schema.*;\n\nContainerImageAssetMetadataEntry containerImageAssetMetadataEntry = ContainerImageAssetMetadataEntry.builder()\n .id(\"id\")\n .packaging(\"packaging\")\n .path(\"path\")\n .sourceHash(\"sourceHash\")\n\n // the properties below are optional\n .buildArgs(Map.of(\n \"buildArgsKey\", \"buildArgs\"))\n .file(\"file\")\n .imageNameParameter(\"imageNameParameter\")\n .imageTag(\"imageTag\")\n .networkMode(\"networkMode\")\n .platform(\"platform\")\n .repositoryName(\"repositoryName\")\n .target(\"target\")\n .build();",
655
- "version": "1"
656
- },
657
- "go": {
658
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ncontainerImageAssetMetadataEntry := &containerImageAssetMetadataEntry{\n\tid: jsii.String(\"id\"),\n\tpackaging: jsii.String(\"packaging\"),\n\tpath: jsii.String(\"path\"),\n\tsourceHash: jsii.String(\"sourceHash\"),\n\n\t// the properties below are optional\n\tbuildArgs: map[string]*string{\n\t\t\"buildArgsKey\": jsii.String(\"buildArgs\"),\n\t},\n\tfile: jsii.String(\"file\"),\n\timageNameParameter: jsii.String(\"imageNameParameter\"),\n\timageTag: jsii.String(\"imageTag\"),\n\tnetworkMode: jsii.String(\"networkMode\"),\n\tplatform: jsii.String(\"platform\"),\n\trepositoryName: jsii.String(\"repositoryName\"),\n\ttarget: jsii.String(\"target\"),\n}",
659
- "version": "1"
660
- },
661
- "$": {
662
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst containerImageAssetMetadataEntry: cloud_assembly_schema.ContainerImageAssetMetadataEntry = {\n id: 'id',\n packaging: 'packaging',\n path: 'path',\n sourceHash: 'sourceHash',\n\n // the properties below are optional\n buildArgs: {\n buildArgsKey: 'buildArgs',\n },\n file: 'file',\n imageNameParameter: 'imageNameParameter',\n imageTag: 'imageTag',\n networkMode: 'networkMode',\n platform: 'platform',\n repositoryName: 'repositoryName',\n target: 'target',\n};",
663
- "version": "0"
664
- }
665
- },
666
- "location": {
667
- "api": {
668
- "api": "type",
669
- "fqn": "@aws-cdk/cloud-assembly-schema.ContainerImageAssetMetadataEntry"
670
- },
671
- "field": {
672
- "field": "example"
673
- }
674
- },
675
- "didCompile": false,
676
- "fqnsReferenced": [
677
- "@aws-cdk/cloud-assembly-schema.ContainerImageAssetMetadataEntry"
678
- ],
679
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst containerImageAssetMetadataEntry: cloud_assembly_schema.ContainerImageAssetMetadataEntry = {\n id: 'id',\n packaging: 'packaging',\n path: 'path',\n sourceHash: 'sourceHash',\n\n // the properties below are optional\n buildArgs: {\n buildArgsKey: 'buildArgs',\n },\n file: 'file',\n imageNameParameter: 'imageNameParameter',\n imageTag: 'imageTag',\n networkMode: 'networkMode',\n platform: 'platform',\n repositoryName: 'repositoryName',\n target: 'target',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
680
- "syntaxKindCounter": {
681
- "10": 13,
682
- "75": 17,
683
- "153": 1,
684
- "169": 1,
685
- "193": 2,
686
- "225": 1,
687
- "242": 1,
688
- "243": 1,
689
- "254": 1,
690
- "255": 1,
691
- "256": 1,
692
- "281": 13,
693
- "290": 1
694
- },
695
- "fqnsFingerprint": "b2b13cee1896c62359ff8fbcfc4ed6cb6f2c76d0c02497a8b8f7e5d4658929f1"
696
- },
697
- "446fbe4ef57d065169198f8cc45bb64f69409c17ca8b277fb2d2e8b9b84d44a1": {
698
- "translations": {
699
- "python": {
700
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndefault_cdk_options = cloud_assembly_schema.DefaultCdkOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n)",
701
- "version": "2"
702
- },
703
- "csharp": {
704
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDefaultCdkOptions defaultCdkOptions = new DefaultCdkOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n};",
705
- "version": "1"
706
- },
707
- "java": {
708
- "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.cloudassembly.schema.*;\n\nDefaultCdkOptions defaultCdkOptions = DefaultCdkOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build();",
709
- "version": "1"
710
- },
711
- "go": {
712
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndefaultCdkOptions := &defaultCdkOptions{\n\tall: jsii.Boolean(false),\n\tapp: jsii.String(\"app\"),\n\tassetMetadata: jsii.Boolean(false),\n\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\tcolor: jsii.Boolean(false),\n\tcontext: map[string]*string{\n\t\t\"contextKey\": jsii.String(\"context\"),\n\t},\n\tdebug: jsii.Boolean(false),\n\tec2Creds: jsii.Boolean(false),\n\tignoreErrors: jsii.Boolean(false),\n\tjson: jsii.Boolean(false),\n\tlookups: jsii.Boolean(false),\n\tnotices: jsii.Boolean(false),\n\toutput: jsii.String(\"output\"),\n\tpathMetadata: jsii.Boolean(false),\n\tprofile: jsii.String(\"profile\"),\n\tproxy: jsii.String(\"proxy\"),\n\troleArn: jsii.String(\"roleArn\"),\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\tstaging: jsii.Boolean(false),\n\tstrict: jsii.Boolean(false),\n\ttrace: jsii.Boolean(false),\n\tverbose: jsii.Boolean(false),\n\tversionReporting: jsii.Boolean(false),\n}",
713
- "version": "1"
714
- },
715
- "$": {
716
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst defaultCdkOptions: cloud_assembly_schema.DefaultCdkOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n};",
717
- "version": "0"
718
- }
719
- },
720
- "location": {
721
- "api": {
722
- "api": "type",
723
- "fqn": "@aws-cdk/cloud-assembly-schema.DefaultCdkOptions"
724
- },
725
- "field": {
726
- "field": "example"
727
- }
728
- },
729
- "didCompile": true,
730
- "fqnsReferenced": [
731
- "@aws-cdk/cloud-assembly-schema.DefaultCdkOptions"
732
- ],
733
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst defaultCdkOptions: cloud_assembly_schema.DefaultCdkOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
734
- "syntaxKindCounter": {
735
- "10": 9,
736
- "75": 28,
737
- "91": 15,
738
- "153": 1,
739
- "169": 1,
740
- "192": 1,
741
- "193": 2,
742
- "225": 1,
743
- "242": 1,
744
- "243": 1,
745
- "254": 1,
746
- "255": 1,
747
- "256": 1,
748
- "281": 24,
749
- "290": 1
750
- },
751
- "fqnsFingerprint": "f16cd9f149a62c877e1157dcab005757f63025a11ef35bfa96f204678c213aff"
752
- },
753
- "7ccd5fffe0e79a964aaf18c366e0a06521189a4d8bb6a3efa74271369f9b545a": {
754
- "translations": {
755
- "python": {
756
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndeploy_command = cloud_assembly_schema.DeployCommand(\n args=cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n)",
757
- "version": "2"
758
- },
759
- "csharp": {
760
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDeployCommand deployCommand = new DeployCommand {\n Args = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Execute = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n NotificationArns = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n ToolkitStackName = \"toolkitStackName\",\n Trace = false,\n UsePreviousParameters = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n};",
761
- "version": "1"
762
- },
763
- "java": {
764
- "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.cloudassembly.schema.*;\n\nDeployCommand deployCommand = DeployCommand.builder()\n .args(DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .execute(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .notificationArns(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build();",
765
- "version": "1"
766
- },
767
- "go": {
768
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndeployCommand := &deployCommand{\n\targs: &deployOptions{\n\t\tall: jsii.Boolean(false),\n\t\tapp: jsii.String(\"app\"),\n\t\tassetMetadata: jsii.Boolean(false),\n\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\tci: jsii.Boolean(false),\n\t\tcolor: jsii.Boolean(false),\n\t\tcontext: map[string]*string{\n\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t},\n\t\tdebug: jsii.Boolean(false),\n\t\tec2Creds: jsii.Boolean(false),\n\t\texclusively: jsii.Boolean(false),\n\t\texecute: jsii.Boolean(false),\n\t\tforce: jsii.Boolean(false),\n\t\tignoreErrors: jsii.Boolean(false),\n\t\tjson: jsii.Boolean(false),\n\t\tlookups: jsii.Boolean(false),\n\t\tnotices: jsii.Boolean(false),\n\t\tnotificationArns: []*string{\n\t\t\tjsii.String(\"notificationArns\"),\n\t\t},\n\t\toutput: jsii.String(\"output\"),\n\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\tparameters: map[string]*string{\n\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t},\n\t\tpathMetadata: jsii.Boolean(false),\n\t\tprofile: jsii.String(\"profile\"),\n\t\tproxy: jsii.String(\"proxy\"),\n\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\treuseAssets: []*string{\n\t\t\tjsii.String(\"reuseAssets\"),\n\t\t},\n\t\troleArn: jsii.String(\"roleArn\"),\n\t\trollback: jsii.Boolean(false),\n\t\tstacks: []*string{\n\t\t\tjsii.String(\"stacks\"),\n\t\t},\n\t\tstaging: jsii.Boolean(false),\n\t\tstrict: jsii.Boolean(false),\n\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\ttrace: jsii.Boolean(false),\n\t\tusePreviousParameters: jsii.Boolean(false),\n\t\tverbose: jsii.Boolean(false),\n\t\tversionReporting: jsii.Boolean(false),\n\t},\n\tenabled: jsii.Boolean(false),\n\texpectedMessage: jsii.String(\"expectedMessage\"),\n\texpectError: jsii.Boolean(false),\n}",
769
- "version": "1"
770
- },
771
- "$": {
772
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst deployCommand: cloud_assembly_schema.DeployCommand = {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
773
- "version": "0"
774
- }
775
- },
776
- "location": {
777
- "api": {
778
- "api": "type",
779
- "fqn": "@aws-cdk/cloud-assembly-schema.DeployCommand"
780
- },
781
- "field": {
782
- "field": "example"
783
- }
784
- },
785
- "didCompile": true,
786
- "fqnsReferenced": [
787
- "@aws-cdk/cloud-assembly-schema.DeployCommand",
788
- "@aws-cdk/cloud-assembly-schema.DeployOptions",
789
- "@aws-cdk/cloud-assembly-schema.RequireApproval",
790
- "@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
791
- ],
792
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst deployCommand: cloud_assembly_schema.DeployCommand = {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
793
- "syntaxKindCounter": {
794
- "10": 16,
795
- "75": 49,
796
- "91": 23,
797
- "153": 1,
798
- "169": 1,
799
- "192": 3,
800
- "193": 4,
801
- "194": 2,
802
- "225": 1,
803
- "242": 1,
804
- "243": 1,
805
- "254": 1,
806
- "255": 1,
807
- "256": 1,
808
- "281": 42,
809
- "290": 1
810
- },
811
- "fqnsFingerprint": "4ff0e777a36242b4ec55302cee22446cb2357f7a75b1cf70664eb3fe91952cc7"
812
- },
813
- "5fc475378a62b2de583b2786eadeb018c94f98434e093805a659ce31f8b47b8e": {
814
- "translations": {
815
- "python": {
816
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndeploy_options = cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n)",
817
- "version": "2"
818
- },
819
- "csharp": {
820
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDeployOptions deployOptions = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Execute = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n NotificationArns = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n ToolkitStackName = \"toolkitStackName\",\n Trace = false,\n UsePreviousParameters = false,\n Verbose = false,\n VersionReporting = false\n};",
821
- "version": "1"
822
- },
823
- "java": {
824
- "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.cloudassembly.schema.*;\n\nDeployOptions deployOptions = DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .execute(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .notificationArns(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build();",
825
- "version": "1"
826
- },
827
- "go": {
828
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndeployOptions := &deployOptions{\n\tall: jsii.Boolean(false),\n\tapp: jsii.String(\"app\"),\n\tassetMetadata: jsii.Boolean(false),\n\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\tchangeSetName: jsii.String(\"changeSetName\"),\n\tci: jsii.Boolean(false),\n\tcolor: jsii.Boolean(false),\n\tcontext: map[string]*string{\n\t\t\"contextKey\": jsii.String(\"context\"),\n\t},\n\tdebug: jsii.Boolean(false),\n\tec2Creds: jsii.Boolean(false),\n\texclusively: jsii.Boolean(false),\n\texecute: jsii.Boolean(false),\n\tforce: jsii.Boolean(false),\n\tignoreErrors: jsii.Boolean(false),\n\tjson: jsii.Boolean(false),\n\tlookups: jsii.Boolean(false),\n\tnotices: jsii.Boolean(false),\n\tnotificationArns: []*string{\n\t\tjsii.String(\"notificationArns\"),\n\t},\n\toutput: jsii.String(\"output\"),\n\toutputsFile: jsii.String(\"outputsFile\"),\n\tparameters: map[string]*string{\n\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t},\n\tpathMetadata: jsii.Boolean(false),\n\tprofile: jsii.String(\"profile\"),\n\tproxy: jsii.String(\"proxy\"),\n\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\treuseAssets: []*string{\n\t\tjsii.String(\"reuseAssets\"),\n\t},\n\troleArn: jsii.String(\"roleArn\"),\n\trollback: jsii.Boolean(false),\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\tstaging: jsii.Boolean(false),\n\tstrict: jsii.Boolean(false),\n\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\ttrace: jsii.Boolean(false),\n\tusePreviousParameters: jsii.Boolean(false),\n\tverbose: jsii.Boolean(false),\n\tversionReporting: jsii.Boolean(false),\n}",
829
- "version": "1"
830
- },
831
- "$": {
832
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst deployOptions: cloud_assembly_schema.DeployOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n};",
833
- "version": "0"
834
- }
835
- },
836
- "location": {
837
- "api": {
838
- "api": "type",
839
- "fqn": "@aws-cdk/cloud-assembly-schema.DeployOptions"
840
- },
841
- "field": {
842
- "field": "example"
843
- }
844
- },
845
- "didCompile": true,
846
- "fqnsReferenced": [
847
- "@aws-cdk/cloud-assembly-schema.DeployOptions",
848
- "@aws-cdk/cloud-assembly-schema.RequireApproval",
849
- "@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
850
- ],
851
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst deployOptions: cloud_assembly_schema.DeployOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
852
- "syntaxKindCounter": {
853
- "10": 15,
854
- "75": 45,
855
- "91": 21,
856
- "153": 1,
857
- "169": 1,
858
- "192": 3,
859
- "193": 3,
860
- "194": 2,
861
- "225": 1,
862
- "242": 1,
863
- "243": 1,
864
- "254": 1,
865
- "255": 1,
866
- "256": 1,
867
- "281": 38,
868
- "290": 1
869
- },
870
- "fqnsFingerprint": "09355961486ba8402673144bf03e6d46d0dac471117d5f76453974e7457e6457"
871
- },
872
- "1cc5adc2c6a7670c07167d9b9add60bfa86ff33152f5cc895bcd43d8ceb9136a": {
873
- "translations": {
874
- "python": {
875
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndestroy_command = cloud_assembly_schema.DestroyCommand(\n args=cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n)",
876
- "version": "2"
877
- },
878
- "csharp": {
879
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDestroyCommand destroyCommand = new DestroyCommand {\n Args = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n};",
880
- "version": "1"
881
- },
882
- "java": {
883
- "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.cloudassembly.schema.*;\n\nDestroyCommand destroyCommand = DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build();",
884
- "version": "1"
885
- },
886
- "go": {
887
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndestroyCommand := &destroyCommand{\n\targs: &destroyOptions{\n\t\tall: jsii.Boolean(false),\n\t\tapp: jsii.String(\"app\"),\n\t\tassetMetadata: jsii.Boolean(false),\n\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\tcolor: jsii.Boolean(false),\n\t\tcontext: map[string]*string{\n\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t},\n\t\tdebug: jsii.Boolean(false),\n\t\tec2Creds: jsii.Boolean(false),\n\t\texclusively: jsii.Boolean(false),\n\t\tforce: jsii.Boolean(false),\n\t\tignoreErrors: jsii.Boolean(false),\n\t\tjson: jsii.Boolean(false),\n\t\tlookups: jsii.Boolean(false),\n\t\tnotices: jsii.Boolean(false),\n\t\toutput: jsii.String(\"output\"),\n\t\tpathMetadata: jsii.Boolean(false),\n\t\tprofile: jsii.String(\"profile\"),\n\t\tproxy: jsii.String(\"proxy\"),\n\t\troleArn: jsii.String(\"roleArn\"),\n\t\tstacks: []*string{\n\t\t\tjsii.String(\"stacks\"),\n\t\t},\n\t\tstaging: jsii.Boolean(false),\n\t\tstrict: jsii.Boolean(false),\n\t\ttrace: jsii.Boolean(false),\n\t\tverbose: jsii.Boolean(false),\n\t\tversionReporting: jsii.Boolean(false),\n\t},\n\tenabled: jsii.Boolean(false),\n\texpectedMessage: jsii.String(\"expectedMessage\"),\n\texpectError: jsii.Boolean(false),\n}",
888
- "version": "1"
889
- },
890
- "$": {
891
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst destroyCommand: cloud_assembly_schema.DestroyCommand = {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
892
- "version": "0"
893
- }
894
- },
895
- "location": {
896
- "api": {
897
- "api": "type",
898
- "fqn": "@aws-cdk/cloud-assembly-schema.DestroyCommand"
899
- },
900
- "field": {
901
- "field": "example"
902
- }
903
- },
904
- "didCompile": true,
905
- "fqnsReferenced": [
906
- "@aws-cdk/cloud-assembly-schema.DestroyCommand",
907
- "@aws-cdk/cloud-assembly-schema.DestroyOptions"
908
- ],
909
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst destroyCommand: cloud_assembly_schema.DestroyCommand = {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
910
- "syntaxKindCounter": {
911
- "10": 10,
912
- "75": 34,
913
- "91": 19,
914
- "153": 1,
915
- "169": 1,
916
- "192": 1,
917
- "193": 3,
918
- "225": 1,
919
- "242": 1,
920
- "243": 1,
921
- "254": 1,
922
- "255": 1,
923
- "256": 1,
924
- "281": 30,
925
- "290": 1
926
- },
927
- "fqnsFingerprint": "7fcec99496b925963a3bc30adfc7a8dc91a9313bc59f195a46abfe90eed0023e"
928
- },
929
- "8fc0cec17f98544a9374b423248ba8d28319962769e1e5c387945169f3523931": {
930
- "translations": {
931
- "python": {
932
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndestroy_options = cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n)",
933
- "version": "2"
934
- },
935
- "csharp": {
936
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDestroyOptions destroyOptions = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n};",
937
- "version": "1"
938
- },
939
- "java": {
940
- "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.cloudassembly.schema.*;\n\nDestroyOptions destroyOptions = DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build();",
941
- "version": "1"
942
- },
943
- "go": {
944
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndestroyOptions := &destroyOptions{\n\tall: jsii.Boolean(false),\n\tapp: jsii.String(\"app\"),\n\tassetMetadata: jsii.Boolean(false),\n\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\tcolor: jsii.Boolean(false),\n\tcontext: map[string]*string{\n\t\t\"contextKey\": jsii.String(\"context\"),\n\t},\n\tdebug: jsii.Boolean(false),\n\tec2Creds: jsii.Boolean(false),\n\texclusively: jsii.Boolean(false),\n\tforce: jsii.Boolean(false),\n\tignoreErrors: jsii.Boolean(false),\n\tjson: jsii.Boolean(false),\n\tlookups: jsii.Boolean(false),\n\tnotices: jsii.Boolean(false),\n\toutput: jsii.String(\"output\"),\n\tpathMetadata: jsii.Boolean(false),\n\tprofile: jsii.String(\"profile\"),\n\tproxy: jsii.String(\"proxy\"),\n\troleArn: jsii.String(\"roleArn\"),\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\tstaging: jsii.Boolean(false),\n\tstrict: jsii.Boolean(false),\n\ttrace: jsii.Boolean(false),\n\tverbose: jsii.Boolean(false),\n\tversionReporting: jsii.Boolean(false),\n}",
945
- "version": "1"
946
- },
947
- "$": {
948
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst destroyOptions: cloud_assembly_schema.DestroyOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n};",
949
- "version": "0"
950
- }
951
- },
952
- "location": {
953
- "api": {
954
- "api": "type",
955
- "fqn": "@aws-cdk/cloud-assembly-schema.DestroyOptions"
956
- },
957
- "field": {
958
- "field": "example"
959
- }
960
- },
961
- "didCompile": true,
962
- "fqnsReferenced": [
963
- "@aws-cdk/cloud-assembly-schema.DestroyOptions"
964
- ],
965
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst destroyOptions: cloud_assembly_schema.DestroyOptions = {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
966
- "syntaxKindCounter": {
967
- "10": 9,
968
- "75": 30,
969
- "91": 17,
970
- "153": 1,
971
- "169": 1,
972
- "192": 1,
973
- "193": 2,
974
- "225": 1,
975
- "242": 1,
976
- "243": 1,
977
- "254": 1,
978
- "255": 1,
979
- "256": 1,
980
- "281": 26,
981
- "290": 1
982
- },
983
- "fqnsFingerprint": "696ab8e3123c74a19b88226c980e065a07c1f8784f57e4445833869b4f52e55f"
984
- },
985
- "73eab5943bd737b91d438766d10fb9ffe674834b5b59cf68d5d34d851d6f9d9d": {
986
- "translations": {
987
- "python": {
988
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_asset = cloud_assembly_schema.DockerImageAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"],\n network_mode=\"networkMode\",\n platform=\"platform\"\n )\n)",
989
- "version": "2"
990
- },
991
- "csharp": {
992
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageAsset dockerImageAsset = new DockerImageAsset {\n Destinations = new Dictionary<string, DockerImageDestination> {\n { \"destinationsKey\", new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" },\n NetworkMode = \"networkMode\",\n Platform = \"platform\"\n }\n};",
993
- "version": "1"
994
- },
995
- "java": {
996
- "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.cloudassembly.schema.*;\n\nDockerImageAsset dockerImageAsset = DockerImageAsset.builder()\n .destinations(Map.of(\n \"destinationsKey\", DockerImageDestination.builder()\n .imageTag(\"imageTag\")\n .repositoryName(\"repositoryName\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build()))\n .source(DockerImageSource.builder()\n .directory(\"directory\")\n .dockerBuildArgs(Map.of(\n \"dockerBuildArgsKey\", \"dockerBuildArgs\"))\n .dockerBuildTarget(\"dockerBuildTarget\")\n .dockerFile(\"dockerFile\")\n .executable(List.of(\"executable\"))\n .networkMode(\"networkMode\")\n .platform(\"platform\")\n .build())\n .build();",
997
- "version": "1"
998
- },
999
- "go": {
1000
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndockerImageAsset := &dockerImageAsset{\n\tdestinations: map[string]dockerImageDestination{\n\t\t\"destinationsKey\": &dockerImageDestination{\n\t\t\t\"imageTag\": jsii.String(\"imageTag\"),\n\t\t\t\"repositoryName\": jsii.String(\"repositoryName\"),\n\n\t\t\t// the properties below are optional\n\t\t\t\"assumeRoleArn\": jsii.String(\"assumeRoleArn\"),\n\t\t\t\"assumeRoleExternalId\": jsii.String(\"assumeRoleExternalId\"),\n\t\t\t\"region\": jsii.String(\"region\"),\n\t\t},\n\t},\n\tsource: &dockerImageSource{\n\t\tdirectory: jsii.String(\"directory\"),\n\t\tdockerBuildArgs: map[string]*string{\n\t\t\t\"dockerBuildArgsKey\": jsii.String(\"dockerBuildArgs\"),\n\t\t},\n\t\tdockerBuildTarget: jsii.String(\"dockerBuildTarget\"),\n\t\tdockerFile: jsii.String(\"dockerFile\"),\n\t\texecutable: []*string{\n\t\t\tjsii.String(\"executable\"),\n\t\t},\n\t\tnetworkMode: jsii.String(\"networkMode\"),\n\t\tplatform: jsii.String(\"platform\"),\n\t},\n}",
1001
- "version": "1"
1002
- },
1003
- "$": {
1004
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst dockerImageAsset: cloud_assembly_schema.DockerImageAsset = {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n platform: 'platform',\n },\n};",
1005
- "version": "0"
1006
- }
1007
- },
1008
- "location": {
1009
- "api": {
1010
- "api": "type",
1011
- "fqn": "@aws-cdk/cloud-assembly-schema.DockerImageAsset"
1012
- },
1013
- "field": {
1014
- "field": "example"
1015
- }
1016
- },
1017
- "didCompile": true,
1018
- "fqnsReferenced": [
1019
- "@aws-cdk/cloud-assembly-schema.DockerImageAsset",
1020
- "@aws-cdk/cloud-assembly-schema.DockerImageDestination",
1021
- "@aws-cdk/cloud-assembly-schema.DockerImageSource"
1022
- ],
1023
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageAsset: cloud_assembly_schema.DockerImageAsset = {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n platform: 'platform',\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1024
- "syntaxKindCounter": {
1025
- "10": 13,
1026
- "75": 20,
1027
- "153": 1,
1028
- "169": 1,
1029
- "192": 1,
1030
- "193": 5,
1031
- "225": 1,
1032
- "242": 1,
1033
- "243": 1,
1034
- "254": 1,
1035
- "255": 1,
1036
- "256": 1,
1037
- "281": 16,
1038
- "290": 1
1039
- },
1040
- "fqnsFingerprint": "8a1602eeca08c4ba2477b56c3587f95b6e3ec86ff2bce6ee02148a4b87b240ec"
1041
- },
1042
- "3eceaa7485ff32425f456723bd17685f9967b2fd99d81dec3e5d5d4a319ceca7": {
1043
- "translations": {
1044
- "python": {
1045
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_destination = cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n)",
1046
- "version": "2"
1047
- },
1048
- "csharp": {
1049
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageDestination dockerImageDestination = new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n};",
1050
- "version": "1"
1051
- },
1052
- "java": {
1053
- "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.cloudassembly.schema.*;\n\nDockerImageDestination dockerImageDestination = DockerImageDestination.builder()\n .imageTag(\"imageTag\")\n .repositoryName(\"repositoryName\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build();",
1054
- "version": "1"
1055
- },
1056
- "go": {
1057
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndockerImageDestination := &dockerImageDestination{\n\timageTag: jsii.String(\"imageTag\"),\n\trepositoryName: jsii.String(\"repositoryName\"),\n\n\t// the properties below are optional\n\tassumeRoleArn: jsii.String(\"assumeRoleArn\"),\n\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\tregion: jsii.String(\"region\"),\n}",
1058
- "version": "1"
1059
- },
1060
- "$": {
1061
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst dockerImageDestination: cloud_assembly_schema.DockerImageDestination = {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n};",
1062
- "version": "0"
1063
- }
1064
- },
1065
- "location": {
1066
- "api": {
1067
- "api": "type",
1068
- "fqn": "@aws-cdk/cloud-assembly-schema.DockerImageDestination"
1069
- },
1070
- "field": {
1071
- "field": "example"
1072
- }
1073
- },
1074
- "didCompile": true,
1075
- "fqnsReferenced": [
1076
- "@aws-cdk/cloud-assembly-schema.DockerImageDestination"
1077
- ],
1078
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageDestination: cloud_assembly_schema.DockerImageDestination = {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1079
- "syntaxKindCounter": {
1080
- "10": 6,
1081
- "75": 9,
1082
- "153": 1,
1083
- "169": 1,
1084
- "193": 1,
1085
- "225": 1,
1086
- "242": 1,
1087
- "243": 1,
1088
- "254": 1,
1089
- "255": 1,
1090
- "256": 1,
1091
- "281": 5,
1092
- "290": 1
1093
- },
1094
- "fqnsFingerprint": "74ca46abe27a67d74e65971a313c5675034ad3a7703423467a3ca0db3dba8568"
1095
- },
1096
- "8b1f08dcfd878af1db2ee227f2bc4934ea596e9038003db7e4fa83aa691c15e7": {
1097
- "translations": {
1098
- "python": {
1099
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_source = cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"],\n network_mode=\"networkMode\",\n platform=\"platform\"\n)",
1100
- "version": "2"
1101
- },
1102
- "csharp": {
1103
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageSource dockerImageSource = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" },\n NetworkMode = \"networkMode\",\n Platform = \"platform\"\n};",
1104
- "version": "1"
1105
- },
1106
- "java": {
1107
- "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.cloudassembly.schema.*;\n\nDockerImageSource dockerImageSource = DockerImageSource.builder()\n .directory(\"directory\")\n .dockerBuildArgs(Map.of(\n \"dockerBuildArgsKey\", \"dockerBuildArgs\"))\n .dockerBuildTarget(\"dockerBuildTarget\")\n .dockerFile(\"dockerFile\")\n .executable(List.of(\"executable\"))\n .networkMode(\"networkMode\")\n .platform(\"platform\")\n .build();",
1108
- "version": "1"
1109
- },
1110
- "go": {
1111
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ndockerImageSource := &dockerImageSource{\n\tdirectory: jsii.String(\"directory\"),\n\tdockerBuildArgs: map[string]*string{\n\t\t\"dockerBuildArgsKey\": jsii.String(\"dockerBuildArgs\"),\n\t},\n\tdockerBuildTarget: jsii.String(\"dockerBuildTarget\"),\n\tdockerFile: jsii.String(\"dockerFile\"),\n\texecutable: []*string{\n\t\tjsii.String(\"executable\"),\n\t},\n\tnetworkMode: jsii.String(\"networkMode\"),\n\tplatform: jsii.String(\"platform\"),\n}",
1112
- "version": "1"
1113
- },
1114
- "$": {
1115
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst dockerImageSource: cloud_assembly_schema.DockerImageSource = {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n platform: 'platform',\n};",
1116
- "version": "0"
1117
- }
1118
- },
1119
- "location": {
1120
- "api": {
1121
- "api": "type",
1122
- "fqn": "@aws-cdk/cloud-assembly-schema.DockerImageSource"
1123
- },
1124
- "field": {
1125
- "field": "example"
1126
- }
1127
- },
1128
- "didCompile": true,
1129
- "fqnsReferenced": [
1130
- "@aws-cdk/cloud-assembly-schema.DockerImageSource"
1131
- ],
1132
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageSource: cloud_assembly_schema.DockerImageSource = {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n platform: 'platform',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1133
- "syntaxKindCounter": {
1134
- "10": 8,
1135
- "75": 12,
1136
- "153": 1,
1137
- "169": 1,
1138
- "192": 1,
1139
- "193": 2,
1140
- "225": 1,
1141
- "242": 1,
1142
- "243": 1,
1143
- "254": 1,
1144
- "255": 1,
1145
- "256": 1,
1146
- "281": 8,
1147
- "290": 1
1148
- },
1149
- "fqnsFingerprint": "8d6d4a611218ac640147d1cbb602c5a98b57cf022a02d00a293d0c04c3fbf04d"
1150
- },
1151
- "d47b9785bf52ba93f36631c9ec90abc31b341035fc16b8ce1b605671d78ebf8e": {
1152
- "translations": {
1153
- "python": {
1154
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nendpoint_service_availability_zones_context_query = cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery(\n account=\"account\",\n region=\"region\",\n service_name=\"serviceName\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
1155
- "version": "2"
1156
- },
1157
- "csharp": {
1158
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nEndpointServiceAvailabilityZonesContextQuery endpointServiceAvailabilityZonesContextQuery = new EndpointServiceAvailabilityZonesContextQuery {\n Account = \"account\",\n Region = \"region\",\n ServiceName = \"serviceName\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
1159
- "version": "1"
1160
- },
1161
- "java": {
1162
- "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.cloudassembly.schema.*;\n\nEndpointServiceAvailabilityZonesContextQuery endpointServiceAvailabilityZonesContextQuery = EndpointServiceAvailabilityZonesContextQuery.builder()\n .account(\"account\")\n .region(\"region\")\n .serviceName(\"serviceName\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .build();",
1163
- "version": "1"
1164
- },
1165
- "go": {
1166
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nendpointServiceAvailabilityZonesContextQuery := &endpointServiceAvailabilityZonesContextQuery{\n\taccount: jsii.String(\"account\"),\n\tregion: jsii.String(\"region\"),\n\tserviceName: jsii.String(\"serviceName\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n}",
1167
- "version": "1"
1168
- },
1169
- "$": {
1170
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst endpointServiceAvailabilityZonesContextQuery: cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery = {\n account: 'account',\n region: 'region',\n serviceName: 'serviceName',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};",
1171
- "version": "0"
1172
- }
1173
- },
1174
- "location": {
1175
- "api": {
1176
- "api": "type",
1177
- "fqn": "@aws-cdk/cloud-assembly-schema.EndpointServiceAvailabilityZonesContextQuery"
1178
- },
1179
- "field": {
1180
- "field": "example"
1181
- }
1182
- },
1183
- "didCompile": true,
1184
- "fqnsReferenced": [
1185
- "@aws-cdk/cloud-assembly-schema.EndpointServiceAvailabilityZonesContextQuery"
1186
- ],
1187
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst endpointServiceAvailabilityZonesContextQuery: cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery = {\n account: 'account',\n region: 'region',\n serviceName: 'serviceName',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1188
- "syntaxKindCounter": {
1189
- "10": 5,
1190
- "75": 8,
1191
- "153": 1,
1192
- "169": 1,
1193
- "193": 1,
1194
- "225": 1,
1195
- "242": 1,
1196
- "243": 1,
1197
- "254": 1,
1198
- "255": 1,
1199
- "256": 1,
1200
- "281": 4,
1201
- "290": 1
1202
- },
1203
- "fqnsFingerprint": "95c42a22c3547443040039d8187363cf0cde202acfb530cd15895b289ede5ffa"
1204
- },
1205
- "b3d7e316200c6482308341ea40c77083c1106cd9c2782d17e8008e5b094a5f3c": {
1206
- "translations": {
1207
- "python": {
1208
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_asset = cloud_assembly_schema.FileAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n )\n)",
1209
- "version": "2"
1210
- },
1211
- "csharp": {
1212
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileAsset fileAsset = new FileAsset {\n Destinations = new Dictionary<string, FileDestination> {\n { \"destinationsKey\", new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n }\n};",
1213
- "version": "1"
1214
- },
1215
- "java": {
1216
- "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.cloudassembly.schema.*;\n\nFileAsset fileAsset = FileAsset.builder()\n .destinations(Map.of(\n \"destinationsKey\", FileDestination.builder()\n .bucketName(\"bucketName\")\n .objectKey(\"objectKey\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build()))\n .source(FileSource.builder()\n .executable(List.of(\"executable\"))\n .packaging(FileAssetPackaging.FILE)\n .path(\"path\")\n .build())\n .build();",
1217
- "version": "1"
1218
- },
1219
- "go": {
1220
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nfileAsset := &fileAsset{\n\tdestinations: map[string]fileDestination{\n\t\t\"destinationsKey\": &fileDestination{\n\t\t\t\"bucketName\": jsii.String(\"bucketName\"),\n\t\t\t\"objectKey\": jsii.String(\"objectKey\"),\n\n\t\t\t// the properties below are optional\n\t\t\t\"assumeRoleArn\": jsii.String(\"assumeRoleArn\"),\n\t\t\t\"assumeRoleExternalId\": jsii.String(\"assumeRoleExternalId\"),\n\t\t\t\"region\": jsii.String(\"region\"),\n\t\t},\n\t},\n\tsource: &fileSource{\n\t\texecutable: []*string{\n\t\t\tjsii.String(\"executable\"),\n\t\t},\n\t\tpackaging: cloud_assembly_schema.fileAssetPackaging_FILE,\n\t\tpath: jsii.String(\"path\"),\n\t},\n}",
1221
- "version": "1"
1222
- },
1223
- "$": {
1224
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst fileAsset: cloud_assembly_schema.FileAsset = {\n destinations: {\n destinationsKey: {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n },\n};",
1225
- "version": "0"
1226
- }
1227
- },
1228
- "location": {
1229
- "api": {
1230
- "api": "type",
1231
- "fqn": "@aws-cdk/cloud-assembly-schema.FileAsset"
1232
- },
1233
- "field": {
1234
- "field": "example"
1235
- }
1236
- },
1237
- "didCompile": true,
1238
- "fqnsReferenced": [
1239
- "@aws-cdk/cloud-assembly-schema.FileAsset",
1240
- "@aws-cdk/cloud-assembly-schema.FileAssetPackaging",
1241
- "@aws-cdk/cloud-assembly-schema.FileAssetPackaging#FILE",
1242
- "@aws-cdk/cloud-assembly-schema.FileDestination",
1243
- "@aws-cdk/cloud-assembly-schema.FileSource"
1244
- ],
1245
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst fileAsset: cloud_assembly_schema.FileAsset = {\n destinations: {\n destinationsKey: {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1246
- "syntaxKindCounter": {
1247
- "10": 8,
1248
- "75": 18,
1249
- "153": 1,
1250
- "169": 1,
1251
- "192": 1,
1252
- "193": 4,
1253
- "194": 2,
1254
- "225": 1,
1255
- "242": 1,
1256
- "243": 1,
1257
- "254": 1,
1258
- "255": 1,
1259
- "256": 1,
1260
- "281": 11,
1261
- "290": 1
1262
- },
1263
- "fqnsFingerprint": "4163c0abce58a47c772c5b372a9ea220bbeb9a87d0a0a3c5b178caa543cd42ad"
1264
- },
1265
- "ce32133bf077a30d1fd773cce35d7b13223a8627c8a22999fb9c29f6f4cb5b3c": {
1266
- "translations": {
1267
- "python": {
1268
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_asset_metadata_entry = cloud_assembly_schema.FileAssetMetadataEntry(\n artifact_hash_parameter=\"artifactHashParameter\",\n id=\"id\",\n packaging=\"packaging\",\n path=\"path\",\n s3_bucket_parameter=\"s3BucketParameter\",\n s3_key_parameter=\"s3KeyParameter\",\n source_hash=\"sourceHash\"\n)",
1269
- "version": "2"
1270
- },
1271
- "csharp": {
1272
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileAssetMetadataEntry fileAssetMetadataEntry = new FileAssetMetadataEntry {\n ArtifactHashParameter = \"artifactHashParameter\",\n Id = \"id\",\n Packaging = \"packaging\",\n Path = \"path\",\n S3BucketParameter = \"s3BucketParameter\",\n S3KeyParameter = \"s3KeyParameter\",\n SourceHash = \"sourceHash\"\n};",
1273
- "version": "1"
1274
- },
1275
- "java": {
1276
- "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.cloudassembly.schema.*;\n\nFileAssetMetadataEntry fileAssetMetadataEntry = FileAssetMetadataEntry.builder()\n .artifactHashParameter(\"artifactHashParameter\")\n .id(\"id\")\n .packaging(\"packaging\")\n .path(\"path\")\n .s3BucketParameter(\"s3BucketParameter\")\n .s3KeyParameter(\"s3KeyParameter\")\n .sourceHash(\"sourceHash\")\n .build();",
1277
- "version": "1"
1278
- },
1279
- "go": {
1280
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nfileAssetMetadataEntry := &fileAssetMetadataEntry{\n\tartifactHashParameter: jsii.String(\"artifactHashParameter\"),\n\tid: jsii.String(\"id\"),\n\tpackaging: jsii.String(\"packaging\"),\n\tpath: jsii.String(\"path\"),\n\ts3BucketParameter: jsii.String(\"s3BucketParameter\"),\n\ts3KeyParameter: jsii.String(\"s3KeyParameter\"),\n\tsourceHash: jsii.String(\"sourceHash\"),\n}",
1281
- "version": "1"
1282
- },
1283
- "$": {
1284
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst fileAssetMetadataEntry: cloud_assembly_schema.FileAssetMetadataEntry = {\n artifactHashParameter: 'artifactHashParameter',\n id: 'id',\n packaging: 'packaging',\n path: 'path',\n s3BucketParameter: 's3BucketParameter',\n s3KeyParameter: 's3KeyParameter',\n sourceHash: 'sourceHash',\n};",
1285
- "version": "0"
1286
- }
1287
- },
1288
- "location": {
1289
- "api": {
1290
- "api": "type",
1291
- "fqn": "@aws-cdk/cloud-assembly-schema.FileAssetMetadataEntry"
1292
- },
1293
- "field": {
1294
- "field": "example"
1295
- }
1296
- },
1297
- "didCompile": false,
1298
- "fqnsReferenced": [
1299
- "@aws-cdk/cloud-assembly-schema.FileAssetMetadataEntry"
1300
- ],
1301
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst fileAssetMetadataEntry: cloud_assembly_schema.FileAssetMetadataEntry = {\n artifactHashParameter: 'artifactHashParameter',\n id: 'id',\n packaging: 'packaging',\n path: 'path',\n s3BucketParameter: 's3BucketParameter',\n s3KeyParameter: 's3KeyParameter',\n sourceHash: 'sourceHash',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1302
- "syntaxKindCounter": {
1303
- "10": 8,
1304
- "75": 11,
1305
- "153": 1,
1306
- "169": 1,
1307
- "193": 1,
1308
- "225": 1,
1309
- "242": 1,
1310
- "243": 1,
1311
- "254": 1,
1312
- "255": 1,
1313
- "256": 1,
1314
- "281": 7,
1315
- "290": 1
1316
- },
1317
- "fqnsFingerprint": "b1842bb0a03246f013215aef9361aaee080469adca845e83c3e6078c1e44db36"
1318
- },
1319
- "7f997d1a7d75fecbcd176fb1375d5e7737890ddd5f36fb5528ada5b9fe261bc2": {
1320
- "translations": {
1321
- "python": {
1322
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_destination = cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n)",
1323
- "version": "2"
1324
- },
1325
- "csharp": {
1326
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileDestination fileDestination = new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n};",
1327
- "version": "1"
1328
- },
1329
- "java": {
1330
- "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.cloudassembly.schema.*;\n\nFileDestination fileDestination = FileDestination.builder()\n .bucketName(\"bucketName\")\n .objectKey(\"objectKey\")\n\n // the properties below are optional\n .assumeRoleArn(\"assumeRoleArn\")\n .assumeRoleExternalId(\"assumeRoleExternalId\")\n .region(\"region\")\n .build();",
1331
- "version": "1"
1332
- },
1333
- "go": {
1334
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nfileDestination := &fileDestination{\n\tbucketName: jsii.String(\"bucketName\"),\n\tobjectKey: jsii.String(\"objectKey\"),\n\n\t// the properties below are optional\n\tassumeRoleArn: jsii.String(\"assumeRoleArn\"),\n\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\tregion: jsii.String(\"region\"),\n}",
1335
- "version": "1"
1336
- },
1337
- "$": {
1338
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst fileDestination: cloud_assembly_schema.FileDestination = {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n};",
1339
- "version": "0"
1340
- }
1341
- },
1342
- "location": {
1343
- "api": {
1344
- "api": "type",
1345
- "fqn": "@aws-cdk/cloud-assembly-schema.FileDestination"
1346
- },
1347
- "field": {
1348
- "field": "example"
1349
- }
1350
- },
1351
- "didCompile": true,
1352
- "fqnsReferenced": [
1353
- "@aws-cdk/cloud-assembly-schema.FileDestination"
1354
- ],
1355
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst fileDestination: cloud_assembly_schema.FileDestination = {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1356
- "syntaxKindCounter": {
1357
- "10": 6,
1358
- "75": 9,
1359
- "153": 1,
1360
- "169": 1,
1361
- "193": 1,
1362
- "225": 1,
1363
- "242": 1,
1364
- "243": 1,
1365
- "254": 1,
1366
- "255": 1,
1367
- "256": 1,
1368
- "281": 5,
1369
- "290": 1
1370
- },
1371
- "fqnsFingerprint": "1dce319bf4292352b7649dc5df8bf1adfec1b40c0d1227e95b262ee00d94c314"
1372
- },
1373
- "8919d25312ffa0550d96b8b80fd2d07854bd2d7a3ef751d6f165f3afcb2b41ad": {
1374
- "translations": {
1375
- "python": {
1376
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_source = cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n)",
1377
- "version": "2"
1378
- },
1379
- "csharp": {
1380
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileSource fileSource = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n};",
1381
- "version": "1"
1382
- },
1383
- "java": {
1384
- "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.cloudassembly.schema.*;\n\nFileSource fileSource = FileSource.builder()\n .executable(List.of(\"executable\"))\n .packaging(FileAssetPackaging.FILE)\n .path(\"path\")\n .build();",
1385
- "version": "1"
1386
- },
1387
- "go": {
1388
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nfileSource := &fileSource{\n\texecutable: []*string{\n\t\tjsii.String(\"executable\"),\n\t},\n\tpackaging: cloud_assembly_schema.fileAssetPackaging_FILE,\n\tpath: jsii.String(\"path\"),\n}",
1389
- "version": "1"
1390
- },
1391
- "$": {
1392
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst fileSource: cloud_assembly_schema.FileSource = {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n};",
1393
- "version": "0"
1394
- }
1395
- },
1396
- "location": {
1397
- "api": {
1398
- "api": "type",
1399
- "fqn": "@aws-cdk/cloud-assembly-schema.FileSource"
1400
- },
1401
- "field": {
1402
- "field": "example"
1403
- }
1404
- },
1405
- "didCompile": true,
1406
- "fqnsReferenced": [
1407
- "@aws-cdk/cloud-assembly-schema.FileAssetPackaging",
1408
- "@aws-cdk/cloud-assembly-schema.FileAssetPackaging#FILE",
1409
- "@aws-cdk/cloud-assembly-schema.FileSource"
1410
- ],
1411
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst fileSource: cloud_assembly_schema.FileSource = {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1412
- "syntaxKindCounter": {
1413
- "10": 3,
1414
- "75": 10,
1415
- "153": 1,
1416
- "169": 1,
1417
- "192": 1,
1418
- "193": 1,
1419
- "194": 2,
1420
- "225": 1,
1421
- "242": 1,
1422
- "243": 1,
1423
- "254": 1,
1424
- "255": 1,
1425
- "256": 1,
1426
- "281": 3,
1427
- "290": 1
1428
- },
1429
- "fqnsFingerprint": "cce5010fbb67f8f66c9253b4457f7a3f9dbbde97c641fb1b4a4302ea3a6d669c"
1430
- },
1431
- "85f6ffd9f64c3dedd5848e184993a6f65f0c49e432f9f7b63824d5eeacdf62aa": {
1432
- "translations": {
1433
- "python": {
1434
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nhooks = cloud_assembly_schema.Hooks(\n post_deploy=[\"postDeploy\"],\n post_destroy=[\"postDestroy\"],\n pre_deploy=[\"preDeploy\"],\n pre_destroy=[\"preDestroy\"]\n)",
1435
- "version": "2"
1436
- },
1437
- "csharp": {
1438
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nHooks hooks = new Hooks {\n PostDeploy = new [] { \"postDeploy\" },\n PostDestroy = new [] { \"postDestroy\" },\n PreDeploy = new [] { \"preDeploy\" },\n PreDestroy = new [] { \"preDestroy\" }\n};",
1439
- "version": "1"
1440
- },
1441
- "java": {
1442
- "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.cloudassembly.schema.*;\n\nHooks hooks = Hooks.builder()\n .postDeploy(List.of(\"postDeploy\"))\n .postDestroy(List.of(\"postDestroy\"))\n .preDeploy(List.of(\"preDeploy\"))\n .preDestroy(List.of(\"preDestroy\"))\n .build();",
1443
- "version": "1"
1444
- },
1445
- "go": {
1446
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nhooks := &hooks{\n\tpostDeploy: []*string{\n\t\tjsii.String(\"postDeploy\"),\n\t},\n\tpostDestroy: []*string{\n\t\tjsii.String(\"postDestroy\"),\n\t},\n\tpreDeploy: []*string{\n\t\tjsii.String(\"preDeploy\"),\n\t},\n\tpreDestroy: []*string{\n\t\tjsii.String(\"preDestroy\"),\n\t},\n}",
1447
- "version": "1"
1448
- },
1449
- "$": {
1450
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst hooks: cloud_assembly_schema.Hooks = {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n};",
1451
- "version": "0"
1452
- }
1453
- },
1454
- "location": {
1455
- "api": {
1456
- "api": "type",
1457
- "fqn": "@aws-cdk/cloud-assembly-schema.Hooks"
1458
- },
1459
- "field": {
1460
- "field": "example"
1461
- }
1462
- },
1463
- "didCompile": true,
1464
- "fqnsReferenced": [
1465
- "@aws-cdk/cloud-assembly-schema.Hooks"
1466
- ],
1467
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst hooks: cloud_assembly_schema.Hooks = {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1468
- "syntaxKindCounter": {
1469
- "10": 5,
1470
- "75": 8,
1471
- "153": 1,
1472
- "169": 1,
1473
- "192": 4,
1474
- "193": 1,
1475
- "225": 1,
1476
- "242": 1,
1477
- "243": 1,
1478
- "254": 1,
1479
- "255": 1,
1480
- "256": 1,
1481
- "281": 4,
1482
- "290": 1
1483
- },
1484
- "fqnsFingerprint": "8c82ece3af8968ea01c6aba3905bef2be81ac6b19318e6aaf0514ef6ae113fe5"
1485
- },
1486
- "14328c9839269071fac0c6ef1f2ebd6a709366b95ee744ea64e4ea68990540e0": {
1487
- "translations": {
1488
- "python": {
1489
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nhosted_zone_context_query = cloud_assembly_schema.HostedZoneContextQuery(\n account=\"account\",\n domain_name=\"domainName\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n private_zone=False,\n vpc_id=\"vpcId\"\n)",
1490
- "version": "2"
1491
- },
1492
- "csharp": {
1493
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nHostedZoneContextQuery hostedZoneContextQuery = new HostedZoneContextQuery {\n Account = \"account\",\n DomainName = \"domainName\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n PrivateZone = false,\n VpcId = \"vpcId\"\n};",
1494
- "version": "1"
1495
- },
1496
- "java": {
1497
- "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.cloudassembly.schema.*;\n\nHostedZoneContextQuery hostedZoneContextQuery = HostedZoneContextQuery.builder()\n .account(\"account\")\n .domainName(\"domainName\")\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .privateZone(false)\n .vpcId(\"vpcId\")\n .build();",
1498
- "version": "1"
1499
- },
1500
- "go": {
1501
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nhostedZoneContextQuery := &hostedZoneContextQuery{\n\taccount: jsii.String(\"account\"),\n\tdomainName: jsii.String(\"domainName\"),\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n\tprivateZone: jsii.Boolean(false),\n\tvpcId: jsii.String(\"vpcId\"),\n}",
1502
- "version": "1"
1503
- },
1504
- "$": {
1505
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst hostedZoneContextQuery: cloud_assembly_schema.HostedZoneContextQuery = {\n account: 'account',\n domainName: 'domainName',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n privateZone: false,\n vpcId: 'vpcId',\n};",
1506
- "version": "0"
1507
- }
1508
- },
1509
- "location": {
1510
- "api": {
1511
- "api": "type",
1512
- "fqn": "@aws-cdk/cloud-assembly-schema.HostedZoneContextQuery"
1513
- },
1514
- "field": {
1515
- "field": "example"
1516
- }
1517
- },
1518
- "didCompile": true,
1519
- "fqnsReferenced": [
1520
- "@aws-cdk/cloud-assembly-schema.HostedZoneContextQuery"
1521
- ],
1522
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst hostedZoneContextQuery: cloud_assembly_schema.HostedZoneContextQuery = {\n account: 'account',\n domainName: 'domainName',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n privateZone: false,\n vpcId: 'vpcId',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1523
- "syntaxKindCounter": {
1524
- "10": 6,
1525
- "75": 10,
1526
- "91": 1,
1527
- "153": 1,
1528
- "169": 1,
1529
- "193": 1,
1530
- "225": 1,
1531
- "242": 1,
1532
- "243": 1,
1533
- "254": 1,
1534
- "255": 1,
1535
- "256": 1,
1536
- "281": 6,
1537
- "290": 1
1538
- },
1539
- "fqnsFingerprint": "047059be64704a685d7e0f39d3e38c24b1a7fc585a887bfdae03dfb15dbf38d9"
1540
- },
1541
- "cd736f8dcbd557b82e2efc04ea1819b2ed67e6bb977b067b40a5ac4a35f932a5": {
1542
- "translations": {
1543
- "python": {
1544
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ninteg_manifest = cloud_assembly_schema.IntegManifest(\n test_cases={\n \"test_cases_key\": cloud_assembly_schema.TestCase(\n stacks=[\"stacks\"],\n\n # the properties below are optional\n allow_destroy=[\"allowDestroy\"],\n assertion_stack=\"assertionStack\",\n assertion_stack_name=\"assertionStackName\",\n cdk_command_options=cloud_assembly_schema.CdkCommands(\n deploy=cloud_assembly_schema.DeployCommand(\n args=cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n ),\n destroy=cloud_assembly_schema.DestroyCommand(\n args=cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n )\n ),\n diff_assets=False,\n hooks=cloud_assembly_schema.Hooks(\n post_deploy=[\"postDeploy\"],\n post_destroy=[\"postDestroy\"],\n pre_deploy=[\"preDeploy\"],\n pre_destroy=[\"preDestroy\"]\n ),\n regions=[\"regions\"],\n stack_update_workflow=False\n )\n },\n version=\"version\",\n\n # the properties below are optional\n enable_lookups=False,\n synth_context={\n \"synth_context_key\": \"synthContext\"\n }\n)",
1545
- "version": "2"
1546
- },
1547
- "csharp": {
1548
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nIntegManifest integManifest = new IntegManifest {\n TestCases = new Dictionary<string, TestCase> {\n { \"testCasesKey\", new TestCase {\n Stacks = new [] { \"stacks\" },\n\n // the properties below are optional\n AllowDestroy = new [] { \"allowDestroy\" },\n AssertionStack = \"assertionStack\",\n AssertionStackName = \"assertionStackName\",\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Execute = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n NotificationArns = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n ToolkitStackName = \"toolkitStackName\",\n Trace = false,\n UsePreviousParameters = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n }\n },\n DiffAssets = false,\n Hooks = new Hooks {\n PostDeploy = new [] { \"postDeploy\" },\n PostDestroy = new [] { \"postDestroy\" },\n PreDeploy = new [] { \"preDeploy\" },\n PreDestroy = new [] { \"preDestroy\" }\n },\n Regions = new [] { \"regions\" },\n StackUpdateWorkflow = false\n } }\n },\n Version = \"version\",\n\n // the properties below are optional\n EnableLookups = false,\n SynthContext = new Dictionary<string, string> {\n { \"synthContextKey\", \"synthContext\" }\n }\n};",
1549
- "version": "1"
1550
- },
1551
- "java": {
1552
- "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.cloudassembly.schema.*;\n\nIntegManifest integManifest = IntegManifest.builder()\n .testCases(Map.of(\n \"testCasesKey\", TestCase.builder()\n .stacks(List.of(\"stacks\"))\n\n // the properties below are optional\n .allowDestroy(List.of(\"allowDestroy\"))\n .assertionStack(\"assertionStack\")\n .assertionStackName(\"assertionStackName\")\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .execute(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .notificationArns(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .build())\n .diffAssets(false)\n .hooks(Hooks.builder()\n .postDeploy(List.of(\"postDeploy\"))\n .postDestroy(List.of(\"postDestroy\"))\n .preDeploy(List.of(\"preDeploy\"))\n .preDestroy(List.of(\"preDestroy\"))\n .build())\n .regions(List.of(\"regions\"))\n .stackUpdateWorkflow(false)\n .build()))\n .version(\"version\")\n\n // the properties below are optional\n .enableLookups(false)\n .synthContext(Map.of(\n \"synthContextKey\", \"synthContext\"))\n .build();",
1553
- "version": "1"
1554
- },
1555
- "go": {
1556
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nintegManifest := &integManifest{\n\ttestCases: map[string]testCase{\n\t\t\"testCasesKey\": &testCase{\n\t\t\t\"stacks\": []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\n\t\t\t// the properties below are optional\n\t\t\t\"allowDestroy\": []*string{\n\t\t\t\tjsii.String(\"allowDestroy\"),\n\t\t\t},\n\t\t\t\"assertionStack\": jsii.String(\"assertionStack\"),\n\t\t\t\"assertionStackName\": jsii.String(\"assertionStackName\"),\n\t\t\t\"cdkCommandOptions\": &CdkCommands{\n\t\t\t\t\"deploy\": &DeployCommand{\n\t\t\t\t\t\"args\": &DeployOptions{\n\t\t\t\t\t\t\"all\": jsii.Boolean(false),\n\t\t\t\t\t\t\"app\": jsii.String(\"app\"),\n\t\t\t\t\t\t\"assetMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"caBundlePath\": jsii.String(\"caBundlePath\"),\n\t\t\t\t\t\t\"changeSetName\": jsii.String(\"changeSetName\"),\n\t\t\t\t\t\t\"ci\": jsii.Boolean(false),\n\t\t\t\t\t\t\"color\": jsii.Boolean(false),\n\t\t\t\t\t\t\"context\": map[string]*string{\n\t\t\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"debug\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ec2Creds\": jsii.Boolean(false),\n\t\t\t\t\t\t\"exclusively\": jsii.Boolean(false),\n\t\t\t\t\t\t\"execute\": jsii.Boolean(false),\n\t\t\t\t\t\t\"force\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ignoreErrors\": jsii.Boolean(false),\n\t\t\t\t\t\t\"json\": jsii.Boolean(false),\n\t\t\t\t\t\t\"lookups\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notices\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notificationArns\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"output\": jsii.String(\"output\"),\n\t\t\t\t\t\t\"outputsFile\": jsii.String(\"outputsFile\"),\n\t\t\t\t\t\t\"parameters\": map[string]*string{\n\t\t\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pathMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"profile\": jsii.String(\"profile\"),\n\t\t\t\t\t\t\"proxy\": jsii.String(\"proxy\"),\n\t\t\t\t\t\t\"requireApproval\": cloud_assembly_schema.RequireApproval_NEVER,\n\t\t\t\t\t\t\"reuseAssets\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"roleArn\": jsii.String(\"roleArn\"),\n\t\t\t\t\t\t\"rollback\": jsii.Boolean(false),\n\t\t\t\t\t\t\"stacks\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"staging\": jsii.Boolean(false),\n\t\t\t\t\t\t\"strict\": jsii.Boolean(false),\n\t\t\t\t\t\t\"toolkitStackName\": jsii.String(\"toolkitStackName\"),\n\t\t\t\t\t\t\"trace\": jsii.Boolean(false),\n\t\t\t\t\t\t\"usePreviousParameters\": jsii.Boolean(false),\n\t\t\t\t\t\t\"verbose\": jsii.Boolean(false),\n\t\t\t\t\t\t\"versionReporting\": jsii.Boolean(false),\n\t\t\t\t\t},\n\t\t\t\t\t\"enabled\": jsii.Boolean(false),\n\t\t\t\t\t\"expectedMessage\": jsii.String(\"expectedMessage\"),\n\t\t\t\t\t\"expectError\": jsii.Boolean(false),\n\t\t\t\t},\n\t\t\t\t\"destroy\": &DestroyCommand{\n\t\t\t\t\t\"args\": &DestroyOptions{\n\t\t\t\t\t\t\"all\": jsii.Boolean(false),\n\t\t\t\t\t\t\"app\": jsii.String(\"app\"),\n\t\t\t\t\t\t\"assetMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"caBundlePath\": jsii.String(\"caBundlePath\"),\n\t\t\t\t\t\t\"color\": jsii.Boolean(false),\n\t\t\t\t\t\t\"context\": map[string]*string{\n\t\t\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"debug\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ec2Creds\": jsii.Boolean(false),\n\t\t\t\t\t\t\"exclusively\": jsii.Boolean(false),\n\t\t\t\t\t\t\"force\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ignoreErrors\": jsii.Boolean(false),\n\t\t\t\t\t\t\"json\": jsii.Boolean(false),\n\t\t\t\t\t\t\"lookups\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notices\": jsii.Boolean(false),\n\t\t\t\t\t\t\"output\": jsii.String(\"output\"),\n\t\t\t\t\t\t\"pathMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"profile\": jsii.String(\"profile\"),\n\t\t\t\t\t\t\"proxy\": jsii.String(\"proxy\"),\n\t\t\t\t\t\t\"roleArn\": jsii.String(\"roleArn\"),\n\t\t\t\t\t\t\"stacks\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"staging\": jsii.Boolean(false),\n\t\t\t\t\t\t\"strict\": jsii.Boolean(false),\n\t\t\t\t\t\t\"trace\": jsii.Boolean(false),\n\t\t\t\t\t\t\"verbose\": jsii.Boolean(false),\n\t\t\t\t\t\t\"versionReporting\": jsii.Boolean(false),\n\t\t\t\t\t},\n\t\t\t\t\t\"enabled\": jsii.Boolean(false),\n\t\t\t\t\t\"expectedMessage\": jsii.String(\"expectedMessage\"),\n\t\t\t\t\t\"expectError\": jsii.Boolean(false),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"diffAssets\": jsii.Boolean(false),\n\t\t\t\"hooks\": &Hooks{\n\t\t\t\t\"postDeploy\": []*string{\n\t\t\t\t\tjsii.String(\"postDeploy\"),\n\t\t\t\t},\n\t\t\t\t\"postDestroy\": []*string{\n\t\t\t\t\tjsii.String(\"postDestroy\"),\n\t\t\t\t},\n\t\t\t\t\"preDeploy\": []*string{\n\t\t\t\t\tjsii.String(\"preDeploy\"),\n\t\t\t\t},\n\t\t\t\t\"preDestroy\": []*string{\n\t\t\t\t\tjsii.String(\"preDestroy\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"regions\": []*string{\n\t\t\t\tjsii.String(\"regions\"),\n\t\t\t},\n\t\t\t\"stackUpdateWorkflow\": jsii.Boolean(false),\n\t\t},\n\t},\n\tversion: jsii.String(\"version\"),\n\n\t// the properties below are optional\n\tenableLookups: jsii.Boolean(false),\n\tsynthContext: map[string]*string{\n\t\t\"synthContextKey\": jsii.String(\"synthContext\"),\n\t},\n}",
1557
- "version": "1"
1558
- },
1559
- "$": {
1560
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst integManifest: cloud_assembly_schema.IntegManifest = {\n testCases: {\n testCasesKey: {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n assertionStack: 'assertionStack',\n assertionStackName: 'assertionStackName',\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n },\n },\n version: 'version',\n\n // the properties below are optional\n enableLookups: false,\n synthContext: {\n synthContextKey: 'synthContext',\n },\n};",
1561
- "version": "0"
1562
- }
1563
- },
1564
- "location": {
1565
- "api": {
1566
- "api": "type",
1567
- "fqn": "@aws-cdk/cloud-assembly-schema.IntegManifest"
1568
- },
1569
- "field": {
1570
- "field": "example"
1571
- }
1572
- },
1573
- "didCompile": true,
1574
- "fqnsReferenced": [
1575
- "@aws-cdk/cloud-assembly-schema.CdkCommands",
1576
- "@aws-cdk/cloud-assembly-schema.DeployCommand",
1577
- "@aws-cdk/cloud-assembly-schema.DeployOptions",
1578
- "@aws-cdk/cloud-assembly-schema.DestroyCommand",
1579
- "@aws-cdk/cloud-assembly-schema.DestroyOptions",
1580
- "@aws-cdk/cloud-assembly-schema.Hooks",
1581
- "@aws-cdk/cloud-assembly-schema.IntegManifest",
1582
- "@aws-cdk/cloud-assembly-schema.RequireApproval",
1583
- "@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
1584
- "@aws-cdk/cloud-assembly-schema.TestCase"
1585
- ],
1586
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst integManifest: cloud_assembly_schema.IntegManifest = {\n testCases: {\n testCasesKey: {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n assertionStack: 'assertionStack',\n assertionStackName: 'assertionStackName',\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n },\n },\n version: 'version',\n\n // the properties below are optional\n enableLookups: false,\n synthContext: {\n synthContextKey: 'synthContext',\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1587
- "syntaxKindCounter": {
1588
- "10": 36,
1589
- "75": 100,
1590
- "91": 45,
1591
- "153": 1,
1592
- "169": 1,
1593
- "192": 11,
1594
- "193": 13,
1595
- "194": 2,
1596
- "225": 1,
1597
- "242": 1,
1598
- "243": 1,
1599
- "254": 1,
1600
- "255": 1,
1601
- "256": 1,
1602
- "281": 93,
1603
- "290": 1
1604
- },
1605
- "fqnsFingerprint": "68cbd4d732cfdff17bc3d77244fa6075ae5ea9a6292540c125052933280683ff"
1606
- },
1607
- "ace2c0f8cefd8405e123e856adc09df724751fa6d2d4aaee28f73a730ea65155": {
1608
- "translations": {
1609
- "python": {
1610
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nkey_context_query = cloud_assembly_schema.KeyContextQuery(\n account=\"account\",\n alias_name=\"aliasName\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
1611
- "version": "2"
1612
- },
1613
- "csharp": {
1614
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nKeyContextQuery keyContextQuery = new KeyContextQuery {\n Account = \"account\",\n AliasName = \"aliasName\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
1615
- "version": "1"
1616
- },
1617
- "java": {
1618
- "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.cloudassembly.schema.*;\n\nKeyContextQuery keyContextQuery = KeyContextQuery.builder()\n .account(\"account\")\n .aliasName(\"aliasName\")\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .build();",
1619
- "version": "1"
1620
- },
1621
- "go": {
1622
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nkeyContextQuery := &keyContextQuery{\n\taccount: jsii.String(\"account\"),\n\taliasName: jsii.String(\"aliasName\"),\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n}",
1623
- "version": "1"
1624
- },
1625
- "$": {
1626
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst keyContextQuery: cloud_assembly_schema.KeyContextQuery = {\n account: 'account',\n aliasName: 'aliasName',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};",
1627
- "version": "0"
1628
- }
1629
- },
1630
- "location": {
1631
- "api": {
1632
- "api": "type",
1633
- "fqn": "@aws-cdk/cloud-assembly-schema.KeyContextQuery"
1634
- },
1635
- "field": {
1636
- "field": "example"
1637
- }
1638
- },
1639
- "didCompile": true,
1640
- "fqnsReferenced": [
1641
- "@aws-cdk/cloud-assembly-schema.KeyContextQuery"
1642
- ],
1643
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst keyContextQuery: cloud_assembly_schema.KeyContextQuery = {\n account: 'account',\n aliasName: 'aliasName',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1644
- "syntaxKindCounter": {
1645
- "10": 5,
1646
- "75": 8,
1647
- "153": 1,
1648
- "169": 1,
1649
- "193": 1,
1650
- "225": 1,
1651
- "242": 1,
1652
- "243": 1,
1653
- "254": 1,
1654
- "255": 1,
1655
- "256": 1,
1656
- "281": 4,
1657
- "290": 1
1658
- },
1659
- "fqnsFingerprint": "e66abd6b3fcba7eb4b983b40a5dd0801edb3fdcce3d263a7adef61544c8974b8"
1660
- },
1661
- "59ef1081c61ca9b39681e5f0964a0dbbc70bab95e1c9d05d7f3ae41815e3e184": {
1662
- "translations": {
1663
- "python": {
1664
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_balancer_context_query = cloud_assembly_schema.LoadBalancerContextQuery(\n account=\"account\",\n load_balancer_type=cloud_assembly_schema.LoadBalancerType.NETWORK,\n region=\"region\",\n\n # the properties below are optional\n load_balancer_arn=\"loadBalancerArn\",\n load_balancer_tags=[cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n )],\n lookup_role_arn=\"lookupRoleArn\"\n)",
1665
- "version": "2"
1666
- },
1667
- "csharp": {
1668
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadBalancerContextQuery loadBalancerContextQuery = new LoadBalancerContextQuery {\n Account = \"account\",\n LoadBalancerType = LoadBalancerType.NETWORK,\n Region = \"region\",\n\n // the properties below are optional\n LoadBalancerArn = \"loadBalancerArn\",\n LoadBalancerTags = new [] { new Tag {\n Key = \"key\",\n Value = \"value\"\n } },\n LookupRoleArn = \"lookupRoleArn\"\n};",
1669
- "version": "1"
1670
- },
1671
- "java": {
1672
- "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.cloudassembly.schema.*;\n\nLoadBalancerContextQuery loadBalancerContextQuery = LoadBalancerContextQuery.builder()\n .account(\"account\")\n .loadBalancerType(LoadBalancerType.NETWORK)\n .region(\"region\")\n\n // the properties below are optional\n .loadBalancerArn(\"loadBalancerArn\")\n .loadBalancerTags(List.of(Tag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .lookupRoleArn(\"lookupRoleArn\")\n .build();",
1673
- "version": "1"
1674
- },
1675
- "go": {
1676
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nloadBalancerContextQuery := &loadBalancerContextQuery{\n\taccount: jsii.String(\"account\"),\n\tloadBalancerType: cloud_assembly_schema.loadBalancerType_NETWORK,\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tloadBalancerArn: jsii.String(\"loadBalancerArn\"),\n\tloadBalancerTags: []tag{\n\t\t&tag{\n\t\t\tkey: jsii.String(\"key\"),\n\t\t\tvalue: jsii.String(\"value\"),\n\t\t},\n\t},\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n}",
1677
- "version": "1"
1678
- },
1679
- "$": {
1680
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst loadBalancerContextQuery: cloud_assembly_schema.LoadBalancerContextQuery = {\n account: 'account',\n loadBalancerType: cloud_assembly_schema.LoadBalancerType.NETWORK,\n region: 'region',\n\n // the properties below are optional\n loadBalancerArn: 'loadBalancerArn',\n loadBalancerTags: [{\n key: 'key',\n value: 'value',\n }],\n lookupRoleArn: 'lookupRoleArn',\n};",
1681
- "version": "0"
1682
- }
1683
- },
1684
- "location": {
1685
- "api": {
1686
- "api": "type",
1687
- "fqn": "@aws-cdk/cloud-assembly-schema.LoadBalancerContextQuery"
1688
- },
1689
- "field": {
1690
- "field": "example"
1691
- }
1692
- },
1693
- "didCompile": true,
1694
- "fqnsReferenced": [
1695
- "@aws-cdk/cloud-assembly-schema.LoadBalancerContextQuery",
1696
- "@aws-cdk/cloud-assembly-schema.LoadBalancerType",
1697
- "@aws-cdk/cloud-assembly-schema.LoadBalancerType#NETWORK"
1698
- ],
1699
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst loadBalancerContextQuery: cloud_assembly_schema.LoadBalancerContextQuery = {\n account: 'account',\n loadBalancerType: cloud_assembly_schema.LoadBalancerType.NETWORK,\n region: 'region',\n\n // the properties below are optional\n loadBalancerArn: 'loadBalancerArn',\n loadBalancerTags: [{\n key: 'key',\n value: 'value',\n }],\n lookupRoleArn: 'lookupRoleArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1700
- "syntaxKindCounter": {
1701
- "10": 7,
1702
- "75": 15,
1703
- "153": 1,
1704
- "169": 1,
1705
- "192": 1,
1706
- "193": 2,
1707
- "194": 2,
1708
- "225": 1,
1709
- "242": 1,
1710
- "243": 1,
1711
- "254": 1,
1712
- "255": 1,
1713
- "256": 1,
1714
- "281": 8,
1715
- "290": 1
1716
- },
1717
- "fqnsFingerprint": "a34d87d549fdbab08fe4ba3a903bad8570fc32b24566f4a3f26fdaaa10f86182"
1718
- },
1719
- "69f2a57cb679e0bfa493f7aa4551da3427358aafdf84e1add4b27d60419d2903": {
1720
- "translations": {
1721
- "python": {
1722
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_balancer_filter = cloud_assembly_schema.LoadBalancerFilter(\n load_balancer_type=cloud_assembly_schema.LoadBalancerType.NETWORK,\n\n # the properties below are optional\n load_balancer_arn=\"loadBalancerArn\",\n load_balancer_tags=[cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n )]\n)",
1723
- "version": "2"
1724
- },
1725
- "csharp": {
1726
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadBalancerFilter loadBalancerFilter = new LoadBalancerFilter {\n LoadBalancerType = LoadBalancerType.NETWORK,\n\n // the properties below are optional\n LoadBalancerArn = \"loadBalancerArn\",\n LoadBalancerTags = new [] { new Tag {\n Key = \"key\",\n Value = \"value\"\n } }\n};",
1727
- "version": "1"
1728
- },
1729
- "java": {
1730
- "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.cloudassembly.schema.*;\n\nLoadBalancerFilter loadBalancerFilter = LoadBalancerFilter.builder()\n .loadBalancerType(LoadBalancerType.NETWORK)\n\n // the properties below are optional\n .loadBalancerArn(\"loadBalancerArn\")\n .loadBalancerTags(List.of(Tag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .build();",
1731
- "version": "1"
1732
- },
1733
- "go": {
1734
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nloadBalancerFilter := &loadBalancerFilter{\n\tloadBalancerType: cloud_assembly_schema.loadBalancerType_NETWORK,\n\n\t// the properties below are optional\n\tloadBalancerArn: jsii.String(\"loadBalancerArn\"),\n\tloadBalancerTags: []tag{\n\t\t&tag{\n\t\t\tkey: jsii.String(\"key\"),\n\t\t\tvalue: jsii.String(\"value\"),\n\t\t},\n\t},\n}",
1735
- "version": "1"
1736
- },
1737
- "$": {
1738
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst loadBalancerFilter: cloud_assembly_schema.LoadBalancerFilter = {\n loadBalancerType: cloud_assembly_schema.LoadBalancerType.NETWORK,\n\n // the properties below are optional\n loadBalancerArn: 'loadBalancerArn',\n loadBalancerTags: [{\n key: 'key',\n value: 'value',\n }],\n};",
1739
- "version": "0"
1740
- }
1741
- },
1742
- "location": {
1743
- "api": {
1744
- "api": "type",
1745
- "fqn": "@aws-cdk/cloud-assembly-schema.LoadBalancerFilter"
1746
- },
1747
- "field": {
1748
- "field": "example"
1749
- }
1750
- },
1751
- "didCompile": true,
1752
- "fqnsReferenced": [
1753
- "@aws-cdk/cloud-assembly-schema.LoadBalancerFilter",
1754
- "@aws-cdk/cloud-assembly-schema.LoadBalancerType",
1755
- "@aws-cdk/cloud-assembly-schema.LoadBalancerType#NETWORK"
1756
- ],
1757
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst loadBalancerFilter: cloud_assembly_schema.LoadBalancerFilter = {\n loadBalancerType: cloud_assembly_schema.LoadBalancerType.NETWORK,\n\n // the properties below are optional\n loadBalancerArn: 'loadBalancerArn',\n loadBalancerTags: [{\n key: 'key',\n value: 'value',\n }],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1758
- "syntaxKindCounter": {
1759
- "10": 4,
1760
- "75": 12,
1761
- "153": 1,
1762
- "169": 1,
1763
- "192": 1,
1764
- "193": 2,
1765
- "194": 2,
1766
- "225": 1,
1767
- "242": 1,
1768
- "243": 1,
1769
- "254": 1,
1770
- "255": 1,
1771
- "256": 1,
1772
- "281": 5,
1773
- "290": 1
1774
- },
1775
- "fqnsFingerprint": "64519315530c40e15c2264d1786b97fe82e7fdbe562e7959aeeb028afe4ca56b"
1776
- },
1777
- "03d916e3758798f8bf42257abfa363f4985bd1f2784575cf7dfb1a0b85a57ba6": {
1778
- "translations": {
1779
- "python": {
1780
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_balancer_listener_context_query = cloud_assembly_schema.LoadBalancerListenerContextQuery(\n account=\"account\",\n load_balancer_type=cloud_assembly_schema.LoadBalancerType.NETWORK,\n region=\"region\",\n\n # the properties below are optional\n listener_arn=\"listenerArn\",\n listener_port=123,\n listener_protocol=cloud_assembly_schema.LoadBalancerListenerProtocol.HTTP,\n load_balancer_arn=\"loadBalancerArn\",\n load_balancer_tags=[cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n )],\n lookup_role_arn=\"lookupRoleArn\"\n)",
1781
- "version": "2"
1782
- },
1783
- "csharp": {
1784
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadBalancerListenerContextQuery loadBalancerListenerContextQuery = new LoadBalancerListenerContextQuery {\n Account = \"account\",\n LoadBalancerType = LoadBalancerType.NETWORK,\n Region = \"region\",\n\n // the properties below are optional\n ListenerArn = \"listenerArn\",\n ListenerPort = 123,\n ListenerProtocol = LoadBalancerListenerProtocol.HTTP,\n LoadBalancerArn = \"loadBalancerArn\",\n LoadBalancerTags = new [] { new Tag {\n Key = \"key\",\n Value = \"value\"\n } },\n LookupRoleArn = \"lookupRoleArn\"\n};",
1785
- "version": "1"
1786
- },
1787
- "java": {
1788
- "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.cloudassembly.schema.*;\n\nLoadBalancerListenerContextQuery loadBalancerListenerContextQuery = LoadBalancerListenerContextQuery.builder()\n .account(\"account\")\n .loadBalancerType(LoadBalancerType.NETWORK)\n .region(\"region\")\n\n // the properties below are optional\n .listenerArn(\"listenerArn\")\n .listenerPort(123)\n .listenerProtocol(LoadBalancerListenerProtocol.HTTP)\n .loadBalancerArn(\"loadBalancerArn\")\n .loadBalancerTags(List.of(Tag.builder()\n .key(\"key\")\n .value(\"value\")\n .build()))\n .lookupRoleArn(\"lookupRoleArn\")\n .build();",
1789
- "version": "1"
1790
- },
1791
- "go": {
1792
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nloadBalancerListenerContextQuery := &loadBalancerListenerContextQuery{\n\taccount: jsii.String(\"account\"),\n\tloadBalancerType: cloud_assembly_schema.loadBalancerType_NETWORK,\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlistenerArn: jsii.String(\"listenerArn\"),\n\tlistenerPort: jsii.Number(123),\n\tlistenerProtocol: cloud_assembly_schema.loadBalancerListenerProtocol_HTTP,\n\tloadBalancerArn: jsii.String(\"loadBalancerArn\"),\n\tloadBalancerTags: []tag{\n\t\t&tag{\n\t\t\tkey: jsii.String(\"key\"),\n\t\t\tvalue: jsii.String(\"value\"),\n\t\t},\n\t},\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n}",
1793
- "version": "1"
1794
- },
1795
- "$": {
1796
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst loadBalancerListenerContextQuery: cloud_assembly_schema.LoadBalancerListenerContextQuery = {\n account: 'account',\n loadBalancerType: cloud_assembly_schema.LoadBalancerType.NETWORK,\n region: 'region',\n\n // the properties below are optional\n listenerArn: 'listenerArn',\n listenerPort: 123,\n listenerProtocol: cloud_assembly_schema.LoadBalancerListenerProtocol.HTTP,\n loadBalancerArn: 'loadBalancerArn',\n loadBalancerTags: [{\n key: 'key',\n value: 'value',\n }],\n lookupRoleArn: 'lookupRoleArn',\n};",
1797
- "version": "0"
1798
- }
1799
- },
1800
- "location": {
1801
- "api": {
1802
- "api": "type",
1803
- "fqn": "@aws-cdk/cloud-assembly-schema.LoadBalancerListenerContextQuery"
1804
- },
1805
- "field": {
1806
- "field": "example"
1807
- }
1808
- },
1809
- "didCompile": true,
1810
- "fqnsReferenced": [
1811
- "@aws-cdk/cloud-assembly-schema.LoadBalancerListenerContextQuery",
1812
- "@aws-cdk/cloud-assembly-schema.LoadBalancerListenerProtocol",
1813
- "@aws-cdk/cloud-assembly-schema.LoadBalancerListenerProtocol#HTTP",
1814
- "@aws-cdk/cloud-assembly-schema.LoadBalancerType",
1815
- "@aws-cdk/cloud-assembly-schema.LoadBalancerType#NETWORK"
1816
- ],
1817
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst loadBalancerListenerContextQuery: cloud_assembly_schema.LoadBalancerListenerContextQuery = {\n account: 'account',\n loadBalancerType: cloud_assembly_schema.LoadBalancerType.NETWORK,\n region: 'region',\n\n // the properties below are optional\n listenerArn: 'listenerArn',\n listenerPort: 123,\n listenerProtocol: cloud_assembly_schema.LoadBalancerListenerProtocol.HTTP,\n loadBalancerArn: 'loadBalancerArn',\n loadBalancerTags: [{\n key: 'key',\n value: 'value',\n }],\n lookupRoleArn: 'lookupRoleArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1818
- "syntaxKindCounter": {
1819
- "8": 1,
1820
- "10": 8,
1821
- "75": 21,
1822
- "153": 1,
1823
- "169": 1,
1824
- "192": 1,
1825
- "193": 2,
1826
- "194": 4,
1827
- "225": 1,
1828
- "242": 1,
1829
- "243": 1,
1830
- "254": 1,
1831
- "255": 1,
1832
- "256": 1,
1833
- "281": 11,
1834
- "290": 1
1835
- },
1836
- "fqnsFingerprint": "9cb9d8882c5dab0b12d85cd63f3d7b6bab62292852a7314a09525a38c7b10b2a"
1837
- },
1838
- "ffd40fe5328db7baf0c3c7f000f6faaf88787d5f32aee49c07bbab02cd851dea": {
1839
- "translations": {
1840
- "python": {
1841
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_manifest_options = cloud_assembly_schema.LoadManifestOptions(\n skip_enum_check=False,\n skip_version_check=False\n)",
1842
- "version": "2"
1843
- },
1844
- "csharp": {
1845
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadManifestOptions loadManifestOptions = new LoadManifestOptions {\n SkipEnumCheck = false,\n SkipVersionCheck = false\n};",
1846
- "version": "1"
1847
- },
1848
- "java": {
1849
- "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.cloudassembly.schema.*;\n\nLoadManifestOptions loadManifestOptions = LoadManifestOptions.builder()\n .skipEnumCheck(false)\n .skipVersionCheck(false)\n .build();",
1850
- "version": "1"
1851
- },
1852
- "go": {
1853
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nloadManifestOptions := &loadManifestOptions{\n\tskipEnumCheck: jsii.Boolean(false),\n\tskipVersionCheck: jsii.Boolean(false),\n}",
1854
- "version": "1"
1855
- },
1856
- "$": {
1857
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst loadManifestOptions: cloud_assembly_schema.LoadManifestOptions = {\n skipEnumCheck: false,\n skipVersionCheck: false,\n};",
1858
- "version": "0"
1859
- }
1860
- },
1861
- "location": {
1862
- "api": {
1863
- "api": "type",
1864
- "fqn": "@aws-cdk/cloud-assembly-schema.LoadManifestOptions"
1865
- },
1866
- "field": {
1867
- "field": "example"
1868
- }
1869
- },
1870
- "didCompile": true,
1871
- "fqnsReferenced": [
1872
- "@aws-cdk/cloud-assembly-schema.LoadManifestOptions"
1873
- ],
1874
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst loadManifestOptions: cloud_assembly_schema.LoadManifestOptions = {\n skipEnumCheck: false,\n skipVersionCheck: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1875
- "syntaxKindCounter": {
1876
- "10": 1,
1877
- "75": 6,
1878
- "91": 2,
1879
- "153": 1,
1880
- "169": 1,
1881
- "193": 1,
1882
- "225": 1,
1883
- "242": 1,
1884
- "243": 1,
1885
- "254": 1,
1886
- "255": 1,
1887
- "256": 1,
1888
- "281": 2,
1889
- "290": 1
1890
- },
1891
- "fqnsFingerprint": "2a38f135100d685b5a6f31f6107e59fad890c577385158010474858f1d50aedc"
1892
- },
1893
- "683ace5fa7ce5c56c2624e49044b3eda895f847d46ea383efbe839b2632a2dc1": {
1894
- "translations": {
1895
- "python": {
1896
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nmetadata_entry = cloud_assembly_schema.MetadataEntry(\n type=\"type\",\n\n # the properties below are optional\n data=\"data\",\n trace=[\"trace\"]\n)",
1897
- "version": "2"
1898
- },
1899
- "csharp": {
1900
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nMetadataEntry metadataEntry = new MetadataEntry {\n Type = \"type\",\n\n // the properties below are optional\n Data = \"data\",\n Trace = new [] { \"trace\" }\n};",
1901
- "version": "1"
1902
- },
1903
- "java": {
1904
- "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.cloudassembly.schema.*;\n\nMetadataEntry metadataEntry = MetadataEntry.builder()\n .type(\"type\")\n\n // the properties below are optional\n .data(\"data\")\n .trace(List.of(\"trace\"))\n .build();",
1905
- "version": "1"
1906
- },
1907
- "go": {
1908
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nmetadataEntry := &metadataEntry{\n\ttype: jsii.String(\"type\"),\n\n\t// the properties below are optional\n\tdata: jsii.String(\"data\"),\n\ttrace: []*string{\n\t\tjsii.String(\"trace\"),\n\t},\n}",
1909
- "version": "1"
1910
- },
1911
- "$": {
1912
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst metadataEntry: cloud_assembly_schema.MetadataEntry = {\n type: 'type',\n\n // the properties below are optional\n data: 'data',\n trace: ['trace'],\n};",
1913
- "version": "0"
1914
- }
1915
- },
1916
- "location": {
1917
- "api": {
1918
- "api": "type",
1919
- "fqn": "@aws-cdk/cloud-assembly-schema.MetadataEntry"
1920
- },
1921
- "field": {
1922
- "field": "example"
1923
- }
1924
- },
1925
- "didCompile": true,
1926
- "fqnsReferenced": [
1927
- "@aws-cdk/cloud-assembly-schema.MetadataEntry"
1928
- ],
1929
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst metadataEntry: cloud_assembly_schema.MetadataEntry = {\n type: 'type',\n\n // the properties below are optional\n data: 'data',\n trace: ['trace'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1930
- "syntaxKindCounter": {
1931
- "10": 4,
1932
- "75": 7,
1933
- "153": 1,
1934
- "169": 1,
1935
- "192": 1,
1936
- "193": 1,
1937
- "225": 1,
1938
- "242": 1,
1939
- "243": 1,
1940
- "254": 1,
1941
- "255": 1,
1942
- "256": 1,
1943
- "281": 3,
1944
- "290": 1
1945
- },
1946
- "fqnsFingerprint": "f444d485ca5086505e5c321934f98cc6bddcd324bbc032306957fdeeb95b26ab"
1947
- },
1948
- "d45096ab2fa854fa21866ba05726b072043c135cd833a8a74c547f2dd6848774": {
1949
- "translations": {
1950
- "python": {
1951
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nmissing_context = cloud_assembly_schema.MissingContext(\n key=\"key\",\n props=cloud_assembly_schema.AmiContextQuery(\n account=\"account\",\n filters={\n \"filters_key\": [\"filters\"]\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n owners=[\"owners\"]\n ),\n provider=cloud_assembly_schema.ContextProvider.AMI_PROVIDER\n)",
1952
- "version": "2"
1953
- },
1954
- "csharp": {
1955
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nMissingContext missingContext = new MissingContext {\n Key = \"key\",\n Props = new AmiContextQuery {\n Account = \"account\",\n Filters = new Dictionary<string, string[]> {\n { \"filtersKey\", new [] { \"filters\" } }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n Owners = new [] { \"owners\" }\n },\n Provider = ContextProvider.AMI_PROVIDER\n};",
1956
- "version": "1"
1957
- },
1958
- "java": {
1959
- "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.cloudassembly.schema.*;\n\nMissingContext missingContext = MissingContext.builder()\n .key(\"key\")\n .props(AmiContextQuery.builder()\n .account(\"account\")\n .filters(Map.of(\n \"filtersKey\", List.of(\"filters\")))\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .owners(List.of(\"owners\"))\n .build())\n .provider(ContextProvider.AMI_PROVIDER)\n .build();",
1960
- "version": "1"
1961
- },
1962
- "go": {
1963
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nmissingContext := &missingContext{\n\tkey: jsii.String(\"key\"),\n\tprops: &amiContextQuery{\n\t\taccount: jsii.String(\"account\"),\n\t\tfilters: map[string][]*string{\n\t\t\t\"filtersKey\": []*string{\n\t\t\t\tjsii.String(\"filters\"),\n\t\t\t},\n\t\t},\n\t\tregion: jsii.String(\"region\"),\n\n\t\t// the properties below are optional\n\t\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n\t\towners: []interface{}{\n\t\t\tjsii.String(\"owners\"),\n\t\t},\n\t},\n\tprovider: cloud_assembly_schema.contextProvider_AMI_PROVIDER,\n}",
1964
- "version": "1"
1965
- },
1966
- "$": {
1967
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst missingContext: cloud_assembly_schema.MissingContext = {\n key: 'key',\n props: {\n account: 'account',\n filters: {\n filtersKey: ['filters'],\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n owners: ['owners'],\n },\n provider: cloud_assembly_schema.ContextProvider.AMI_PROVIDER,\n};",
1968
- "version": "0"
1969
- }
1970
- },
1971
- "location": {
1972
- "api": {
1973
- "api": "type",
1974
- "fqn": "@aws-cdk/cloud-assembly-schema.MissingContext"
1975
- },
1976
- "field": {
1977
- "field": "example"
1978
- }
1979
- },
1980
- "didCompile": true,
1981
- "fqnsReferenced": [
1982
- "@aws-cdk/cloud-assembly-schema.ContextProvider",
1983
- "@aws-cdk/cloud-assembly-schema.ContextProvider#AMI_PROVIDER",
1984
- "@aws-cdk/cloud-assembly-schema.MissingContext"
1985
- ],
1986
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst missingContext: cloud_assembly_schema.MissingContext = {\n key: 'key',\n props: {\n account: 'account',\n filters: {\n filtersKey: ['filters'],\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n owners: ['owners'],\n },\n provider: cloud_assembly_schema.ContextProvider.AMI_PROVIDER,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
1987
- "syntaxKindCounter": {
1988
- "10": 7,
1989
- "75": 16,
1990
- "153": 1,
1991
- "169": 1,
1992
- "192": 2,
1993
- "193": 3,
1994
- "194": 2,
1995
- "225": 1,
1996
- "242": 1,
1997
- "243": 1,
1998
- "254": 1,
1999
- "255": 1,
2000
- "256": 1,
2001
- "281": 9,
2002
- "290": 1
2003
- },
2004
- "fqnsFingerprint": "e1278ed7c25ed4966b1c67b46acd60ba543211490815d3eaad8717391eaa6e4a"
2005
- },
2006
- "c072d6aeb3761e717f260e268e9489c671d49c5238a894644e585339cd2cdb51": {
2007
- "translations": {
2008
- "python": {
2009
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nnested_cloud_assembly_properties = cloud_assembly_schema.NestedCloudAssemblyProperties(\n directory_name=\"directoryName\",\n\n # the properties below are optional\n display_name=\"displayName\"\n)",
2010
- "version": "2"
2011
- },
2012
- "csharp": {
2013
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nNestedCloudAssemblyProperties nestedCloudAssemblyProperties = new NestedCloudAssemblyProperties {\n DirectoryName = \"directoryName\",\n\n // the properties below are optional\n DisplayName = \"displayName\"\n};",
2014
- "version": "1"
2015
- },
2016
- "java": {
2017
- "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.cloudassembly.schema.*;\n\nNestedCloudAssemblyProperties nestedCloudAssemblyProperties = NestedCloudAssemblyProperties.builder()\n .directoryName(\"directoryName\")\n\n // the properties below are optional\n .displayName(\"displayName\")\n .build();",
2018
- "version": "1"
2019
- },
2020
- "go": {
2021
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nnestedCloudAssemblyProperties := &nestedCloudAssemblyProperties{\n\tdirectoryName: jsii.String(\"directoryName\"),\n\n\t// the properties below are optional\n\tdisplayName: jsii.String(\"displayName\"),\n}",
2022
- "version": "1"
2023
- },
2024
- "$": {
2025
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst nestedCloudAssemblyProperties: cloud_assembly_schema.NestedCloudAssemblyProperties = {\n directoryName: 'directoryName',\n\n // the properties below are optional\n displayName: 'displayName',\n};",
2026
- "version": "0"
2027
- }
2028
- },
2029
- "location": {
2030
- "api": {
2031
- "api": "type",
2032
- "fqn": "@aws-cdk/cloud-assembly-schema.NestedCloudAssemblyProperties"
2033
- },
2034
- "field": {
2035
- "field": "example"
2036
- }
2037
- },
2038
- "didCompile": true,
2039
- "fqnsReferenced": [
2040
- "@aws-cdk/cloud-assembly-schema.NestedCloudAssemblyProperties"
2041
- ],
2042
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst nestedCloudAssemblyProperties: cloud_assembly_schema.NestedCloudAssemblyProperties = {\n directoryName: 'directoryName',\n\n // the properties below are optional\n displayName: 'displayName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2043
- "syntaxKindCounter": {
2044
- "10": 3,
2045
- "75": 6,
2046
- "153": 1,
2047
- "169": 1,
2048
- "193": 1,
2049
- "225": 1,
2050
- "242": 1,
2051
- "243": 1,
2052
- "254": 1,
2053
- "255": 1,
2054
- "256": 1,
2055
- "281": 2,
2056
- "290": 1
2057
- },
2058
- "fqnsFingerprint": "a2173c283cb64060479843c115c8c666eb95500aea80726108661b7eab1c919d"
2059
- },
2060
- "2285b026ede7cf814a4d6f18a11dd7394d2b253eecd4b8c6ec91f0b4cecfa6f3": {
2061
- "translations": {
2062
- "python": {
2063
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nplugin_context_query = cloud_assembly_schema.PluginContextQuery(\n plugin_name=\"pluginName\"\n)",
2064
- "version": "2"
2065
- },
2066
- "csharp": {
2067
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nPluginContextQuery pluginContextQuery = new PluginContextQuery {\n PluginName = \"pluginName\"\n};",
2068
- "version": "1"
2069
- },
2070
- "java": {
2071
- "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.cloudassembly.schema.*;\n\nPluginContextQuery pluginContextQuery = PluginContextQuery.builder()\n .pluginName(\"pluginName\")\n .build();",
2072
- "version": "1"
2073
- },
2074
- "go": {
2075
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\npluginContextQuery := &pluginContextQuery{\n\tpluginName: jsii.String(\"pluginName\"),\n}",
2076
- "version": "1"
2077
- },
2078
- "$": {
2079
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst pluginContextQuery: cloud_assembly_schema.PluginContextQuery = {\n pluginName: 'pluginName',\n};",
2080
- "version": "0"
2081
- }
2082
- },
2083
- "location": {
2084
- "api": {
2085
- "api": "type",
2086
- "fqn": "@aws-cdk/cloud-assembly-schema.PluginContextQuery"
2087
- },
2088
- "field": {
2089
- "field": "example"
2090
- }
2091
- },
2092
- "didCompile": true,
2093
- "fqnsReferenced": [
2094
- "@aws-cdk/cloud-assembly-schema.PluginContextQuery"
2095
- ],
2096
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst pluginContextQuery: cloud_assembly_schema.PluginContextQuery = {\n pluginName: 'pluginName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2097
- "syntaxKindCounter": {
2098
- "10": 2,
2099
- "75": 5,
2100
- "153": 1,
2101
- "169": 1,
2102
- "193": 1,
2103
- "225": 1,
2104
- "242": 1,
2105
- "243": 1,
2106
- "254": 1,
2107
- "255": 1,
2108
- "256": 1,
2109
- "281": 1,
2110
- "290": 1
2111
- },
2112
- "fqnsFingerprint": "78d074e4d2b470a75f833cbc617f3e6d2667991e1805d63d741a9e7cc7fdf8fe"
2113
- },
2114
- "e327fc98591a1ca4bf6867147aeb8b7a1d27221cb2c89501caa802b5a19cd818": {
2115
- "translations": {
2116
- "python": {
2117
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nruntime_info = cloud_assembly_schema.RuntimeInfo(\n libraries={\n \"libraries_key\": \"libraries\"\n }\n)",
2118
- "version": "2"
2119
- },
2120
- "csharp": {
2121
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nRuntimeInfo runtimeInfo = new RuntimeInfo {\n Libraries = new Dictionary<string, string> {\n { \"librariesKey\", \"libraries\" }\n }\n};",
2122
- "version": "1"
2123
- },
2124
- "java": {
2125
- "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.cloudassembly.schema.*;\n\nRuntimeInfo runtimeInfo = RuntimeInfo.builder()\n .libraries(Map.of(\n \"librariesKey\", \"libraries\"))\n .build();",
2126
- "version": "1"
2127
- },
2128
- "go": {
2129
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nruntimeInfo := &runtimeInfo{\n\tlibraries: map[string]*string{\n\t\t\"librariesKey\": jsii.String(\"libraries\"),\n\t},\n}",
2130
- "version": "1"
2131
- },
2132
- "$": {
2133
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst runtimeInfo: cloud_assembly_schema.RuntimeInfo = {\n libraries: {\n librariesKey: 'libraries',\n },\n};",
2134
- "version": "0"
2135
- }
2136
- },
2137
- "location": {
2138
- "api": {
2139
- "api": "type",
2140
- "fqn": "@aws-cdk/cloud-assembly-schema.RuntimeInfo"
2141
- },
2142
- "field": {
2143
- "field": "example"
2144
- }
2145
- },
2146
- "didCompile": true,
2147
- "fqnsReferenced": [
2148
- "@aws-cdk/cloud-assembly-schema.RuntimeInfo"
2149
- ],
2150
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst runtimeInfo: cloud_assembly_schema.RuntimeInfo = {\n libraries: {\n librariesKey: 'libraries',\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2151
- "syntaxKindCounter": {
2152
- "10": 2,
2153
- "75": 6,
2154
- "153": 1,
2155
- "169": 1,
2156
- "193": 2,
2157
- "225": 1,
2158
- "242": 1,
2159
- "243": 1,
2160
- "254": 1,
2161
- "255": 1,
2162
- "256": 1,
2163
- "281": 2,
2164
- "290": 1
2165
- },
2166
- "fqnsFingerprint": "985f3febcb1232154cb5edd149e957e616314708ec9048458cb53dcc80405fa9"
2167
- },
2168
- "fd6534cef6e0598e9124e527c892d627d899d617f4863209af9b0cef1eb78a66": {
2169
- "translations": {
2170
- "python": {
2171
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ns_sMParameter_context_query = cloud_assembly_schema.SSMParameterContextQuery(\n account=\"account\",\n parameter_name=\"parameterName\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
2172
- "version": "2"
2173
- },
2174
- "csharp": {
2175
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nSSMParameterContextQuery sSMParameterContextQuery = new SSMParameterContextQuery {\n Account = \"account\",\n ParameterName = \"parameterName\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
2176
- "version": "1"
2177
- },
2178
- "java": {
2179
- "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.cloudassembly.schema.*;\n\nSSMParameterContextQuery sSMParameterContextQuery = SSMParameterContextQuery.builder()\n .account(\"account\")\n .parameterName(\"parameterName\")\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .build();",
2180
- "version": "1"
2181
- },
2182
- "go": {
2183
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nsSMParameterContextQuery := &sSMParameterContextQuery{\n\taccount: jsii.String(\"account\"),\n\tparameterName: jsii.String(\"parameterName\"),\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n}",
2184
- "version": "1"
2185
- },
2186
- "$": {
2187
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst sSMParameterContextQuery: cloud_assembly_schema.SSMParameterContextQuery = {\n account: 'account',\n parameterName: 'parameterName',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};",
2188
- "version": "0"
2189
- }
2190
- },
2191
- "location": {
2192
- "api": {
2193
- "api": "type",
2194
- "fqn": "@aws-cdk/cloud-assembly-schema.SSMParameterContextQuery"
2195
- },
2196
- "field": {
2197
- "field": "example"
2198
- }
2199
- },
2200
- "didCompile": true,
2201
- "fqnsReferenced": [
2202
- "@aws-cdk/cloud-assembly-schema.SSMParameterContextQuery"
2203
- ],
2204
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst sSMParameterContextQuery: cloud_assembly_schema.SSMParameterContextQuery = {\n account: 'account',\n parameterName: 'parameterName',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2205
- "syntaxKindCounter": {
2206
- "10": 5,
2207
- "75": 8,
2208
- "153": 1,
2209
- "169": 1,
2210
- "193": 1,
2211
- "225": 1,
2212
- "242": 1,
2213
- "243": 1,
2214
- "254": 1,
2215
- "255": 1,
2216
- "256": 1,
2217
- "281": 4,
2218
- "290": 1
2219
- },
2220
- "fqnsFingerprint": "940f63440c0266b6ba6d3c4117cb216e44096ccbbbe37dd4498e89461b610eb0"
2221
- },
2222
- "40fe9fddd0561251314fe6866abcd17f161ffb378b7f27edc5a36a80eaa7c41b": {
2223
- "translations": {
2224
- "python": {
2225
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nsecurity_group_context_query = cloud_assembly_schema.SecurityGroupContextQuery(\n account=\"account\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n security_group_id=\"securityGroupId\",\n security_group_name=\"securityGroupName\",\n vpc_id=\"vpcId\"\n)",
2226
- "version": "2"
2227
- },
2228
- "csharp": {
2229
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nSecurityGroupContextQuery securityGroupContextQuery = new SecurityGroupContextQuery {\n Account = \"account\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n SecurityGroupId = \"securityGroupId\",\n SecurityGroupName = \"securityGroupName\",\n VpcId = \"vpcId\"\n};",
2230
- "version": "1"
2231
- },
2232
- "java": {
2233
- "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.cloudassembly.schema.*;\n\nSecurityGroupContextQuery securityGroupContextQuery = SecurityGroupContextQuery.builder()\n .account(\"account\")\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .securityGroupId(\"securityGroupId\")\n .securityGroupName(\"securityGroupName\")\n .vpcId(\"vpcId\")\n .build();",
2234
- "version": "1"
2235
- },
2236
- "go": {
2237
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nsecurityGroupContextQuery := &securityGroupContextQuery{\n\taccount: jsii.String(\"account\"),\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n\tsecurityGroupId: jsii.String(\"securityGroupId\"),\n\tsecurityGroupName: jsii.String(\"securityGroupName\"),\n\tvpcId: jsii.String(\"vpcId\"),\n}",
2238
- "version": "1"
2239
- },
2240
- "$": {
2241
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst securityGroupContextQuery: cloud_assembly_schema.SecurityGroupContextQuery = {\n account: 'account',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n securityGroupId: 'securityGroupId',\n securityGroupName: 'securityGroupName',\n vpcId: 'vpcId',\n};",
2242
- "version": "0"
2243
- }
2244
- },
2245
- "location": {
2246
- "api": {
2247
- "api": "type",
2248
- "fqn": "@aws-cdk/cloud-assembly-schema.SecurityGroupContextQuery"
2249
- },
2250
- "field": {
2251
- "field": "example"
2252
- }
2253
- },
2254
- "didCompile": true,
2255
- "fqnsReferenced": [
2256
- "@aws-cdk/cloud-assembly-schema.SecurityGroupContextQuery"
2257
- ],
2258
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst securityGroupContextQuery: cloud_assembly_schema.SecurityGroupContextQuery = {\n account: 'account',\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n securityGroupId: 'securityGroupId',\n securityGroupName: 'securityGroupName',\n vpcId: 'vpcId',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2259
- "syntaxKindCounter": {
2260
- "10": 7,
2261
- "75": 10,
2262
- "153": 1,
2263
- "169": 1,
2264
- "193": 1,
2265
- "225": 1,
2266
- "242": 1,
2267
- "243": 1,
2268
- "254": 1,
2269
- "255": 1,
2270
- "256": 1,
2271
- "281": 6,
2272
- "290": 1
2273
- },
2274
- "fqnsFingerprint": "af27db57a50ba9f7947edc64d59ed22a27250058e4ce4333f04dcc27418a08b7"
2275
- },
2276
- "1ec5eb5814f13fc7ef35cfefa32194b3268d3941c6a99f53b41019c23b225a40": {
2277
- "translations": {
2278
- "python": {
2279
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntag = cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n)",
2280
- "version": "2"
2281
- },
2282
- "csharp": {
2283
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTag tag = new Tag {\n Key = \"key\",\n Value = \"value\"\n};",
2284
- "version": "1"
2285
- },
2286
- "java": {
2287
- "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.cloudassembly.schema.*;\n\nTag tag = Tag.builder()\n .key(\"key\")\n .value(\"value\")\n .build();",
2288
- "version": "1"
2289
- },
2290
- "go": {
2291
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ntag := &tag{\n\tkey: jsii.String(\"key\"),\n\tvalue: jsii.String(\"value\"),\n}",
2292
- "version": "1"
2293
- },
2294
- "$": {
2295
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst tag: cloud_assembly_schema.Tag = {\n key: 'key',\n value: 'value',\n};",
2296
- "version": "0"
2297
- }
2298
- },
2299
- "location": {
2300
- "api": {
2301
- "api": "type",
2302
- "fqn": "@aws-cdk/cloud-assembly-schema.Tag"
2303
- },
2304
- "field": {
2305
- "field": "example"
2306
- }
2307
- },
2308
- "didCompile": true,
2309
- "fqnsReferenced": [
2310
- "@aws-cdk/cloud-assembly-schema.Tag"
2311
- ],
2312
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst tag: cloud_assembly_schema.Tag = {\n key: 'key',\n value: 'value',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2313
- "syntaxKindCounter": {
2314
- "10": 3,
2315
- "75": 6,
2316
- "153": 1,
2317
- "169": 1,
2318
- "193": 1,
2319
- "225": 1,
2320
- "242": 1,
2321
- "243": 1,
2322
- "254": 1,
2323
- "255": 1,
2324
- "256": 1,
2325
- "281": 2,
2326
- "290": 1
2327
- },
2328
- "fqnsFingerprint": "00a9c22e7f063f4897295481ff2ff2240c6dd977d4c3724da8d90f976831fe5d"
2329
- },
2330
- "e55543a3a888243e974de577d2a13c50b49375fb6fb2aaef647e6561d0e96ea7": {
2331
- "translations": {
2332
- "python": {
2333
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntest_case = cloud_assembly_schema.TestCase(\n stacks=[\"stacks\"],\n\n # the properties below are optional\n allow_destroy=[\"allowDestroy\"],\n assertion_stack=\"assertionStack\",\n assertion_stack_name=\"assertionStackName\",\n cdk_command_options=cloud_assembly_schema.CdkCommands(\n deploy=cloud_assembly_schema.DeployCommand(\n args=cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n ),\n destroy=cloud_assembly_schema.DestroyCommand(\n args=cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n )\n ),\n diff_assets=False,\n hooks=cloud_assembly_schema.Hooks(\n post_deploy=[\"postDeploy\"],\n post_destroy=[\"postDestroy\"],\n pre_deploy=[\"preDeploy\"],\n pre_destroy=[\"preDestroy\"]\n ),\n regions=[\"regions\"],\n stack_update_workflow=False\n)",
2334
- "version": "2"
2335
- },
2336
- "csharp": {
2337
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTestCase testCase = new TestCase {\n Stacks = new [] { \"stacks\" },\n\n // the properties below are optional\n AllowDestroy = new [] { \"allowDestroy\" },\n AssertionStack = \"assertionStack\",\n AssertionStackName = \"assertionStackName\",\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Execute = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n NotificationArns = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n ToolkitStackName = \"toolkitStackName\",\n Trace = false,\n UsePreviousParameters = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n }\n },\n DiffAssets = false,\n Hooks = new Hooks {\n PostDeploy = new [] { \"postDeploy\" },\n PostDestroy = new [] { \"postDestroy\" },\n PreDeploy = new [] { \"preDeploy\" },\n PreDestroy = new [] { \"preDestroy\" }\n },\n Regions = new [] { \"regions\" },\n StackUpdateWorkflow = false\n};",
2338
- "version": "1"
2339
- },
2340
- "java": {
2341
- "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.cloudassembly.schema.*;\n\nTestCase testCase = TestCase.builder()\n .stacks(List.of(\"stacks\"))\n\n // the properties below are optional\n .allowDestroy(List.of(\"allowDestroy\"))\n .assertionStack(\"assertionStack\")\n .assertionStackName(\"assertionStackName\")\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .execute(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .notificationArns(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .build())\n .diffAssets(false)\n .hooks(Hooks.builder()\n .postDeploy(List.of(\"postDeploy\"))\n .postDestroy(List.of(\"postDestroy\"))\n .preDeploy(List.of(\"preDeploy\"))\n .preDestroy(List.of(\"preDestroy\"))\n .build())\n .regions(List.of(\"regions\"))\n .stackUpdateWorkflow(false)\n .build();",
2342
- "version": "1"
2343
- },
2344
- "go": {
2345
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ntestCase := &testCase{\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\n\t// the properties below are optional\n\tallowDestroy: []*string{\n\t\tjsii.String(\"allowDestroy\"),\n\t},\n\tassertionStack: jsii.String(\"assertionStack\"),\n\tassertionStackName: jsii.String(\"assertionStackName\"),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\tall: jsii.Boolean(false),\n\t\t\t\tapp: jsii.String(\"app\"),\n\t\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\t\t\tci: jsii.Boolean(false),\n\t\t\t\tcolor: jsii.Boolean(false),\n\t\t\t\tcontext: map[string]*string{\n\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t},\n\t\t\t\tdebug: jsii.Boolean(false),\n\t\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\t\texclusively: jsii.Boolean(false),\n\t\t\t\texecute: jsii.Boolean(false),\n\t\t\t\tforce: jsii.Boolean(false),\n\t\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\t\tjson: jsii.Boolean(false),\n\t\t\t\tlookups: jsii.Boolean(false),\n\t\t\t\tnotices: jsii.Boolean(false),\n\t\t\t\tnotificationArns: []*string{\n\t\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t\t},\n\t\t\t\toutput: jsii.String(\"output\"),\n\t\t\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\t\t\tparameters: map[string]*string{\n\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t},\n\t\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\t\t\treuseAssets: []*string{\n\t\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t\t},\n\t\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\t\trollback: jsii.Boolean(false),\n\t\t\t\tstacks: []*string{\n\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t},\n\t\t\t\tstaging: jsii.Boolean(false),\n\t\t\t\tstrict: jsii.Boolean(false),\n\t\t\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\t\t\ttrace: jsii.Boolean(false),\n\t\t\t\tusePreviousParameters: jsii.Boolean(false),\n\t\t\t\tverbose: jsii.Boolean(false),\n\t\t\t\tversionReporting: jsii.Boolean(false),\n\t\t\t},\n\t\t\tenabled: jsii.Boolean(false),\n\t\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\t\texpectError: jsii.Boolean(false),\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tall: jsii.Boolean(false),\n\t\t\t\tapp: jsii.String(\"app\"),\n\t\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\t\tcolor: jsii.Boolean(false),\n\t\t\t\tcontext: map[string]*string{\n\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t},\n\t\t\t\tdebug: jsii.Boolean(false),\n\t\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\t\texclusively: jsii.Boolean(false),\n\t\t\t\tforce: jsii.Boolean(false),\n\t\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\t\tjson: jsii.Boolean(false),\n\t\t\t\tlookups: jsii.Boolean(false),\n\t\t\t\tnotices: jsii.Boolean(false),\n\t\t\t\toutput: jsii.String(\"output\"),\n\t\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\t\tstacks: []*string{\n\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t},\n\t\t\t\tstaging: jsii.Boolean(false),\n\t\t\t\tstrict: jsii.Boolean(false),\n\t\t\t\ttrace: jsii.Boolean(false),\n\t\t\t\tverbose: jsii.Boolean(false),\n\t\t\t\tversionReporting: jsii.Boolean(false),\n\t\t\t},\n\t\t\tenabled: jsii.Boolean(false),\n\t\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\t\texpectError: jsii.Boolean(false),\n\t\t},\n\t},\n\tdiffAssets: jsii.Boolean(false),\n\thooks: &hooks{\n\t\tpostDeploy: []*string{\n\t\t\tjsii.String(\"postDeploy\"),\n\t\t},\n\t\tpostDestroy: []*string{\n\t\t\tjsii.String(\"postDestroy\"),\n\t\t},\n\t\tpreDeploy: []*string{\n\t\t\tjsii.String(\"preDeploy\"),\n\t\t},\n\t\tpreDestroy: []*string{\n\t\t\tjsii.String(\"preDestroy\"),\n\t\t},\n\t},\n\tregions: []*string{\n\t\tjsii.String(\"regions\"),\n\t},\n\tstackUpdateWorkflow: jsii.Boolean(false),\n}",
2346
- "version": "1"
2347
- },
2348
- "$": {
2349
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst testCase: cloud_assembly_schema.TestCase = {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n assertionStack: 'assertionStack',\n assertionStackName: 'assertionStackName',\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n};",
2350
- "version": "0"
2351
- }
2352
- },
2353
- "location": {
2354
- "api": {
2355
- "api": "type",
2356
- "fqn": "@aws-cdk/cloud-assembly-schema.TestCase"
2357
- },
2358
- "field": {
2359
- "field": "example"
2360
- }
2361
- },
2362
- "didCompile": true,
2363
- "fqnsReferenced": [
2364
- "@aws-cdk/cloud-assembly-schema.CdkCommands",
2365
- "@aws-cdk/cloud-assembly-schema.DeployCommand",
2366
- "@aws-cdk/cloud-assembly-schema.DeployOptions",
2367
- "@aws-cdk/cloud-assembly-schema.DestroyCommand",
2368
- "@aws-cdk/cloud-assembly-schema.DestroyOptions",
2369
- "@aws-cdk/cloud-assembly-schema.Hooks",
2370
- "@aws-cdk/cloud-assembly-schema.RequireApproval",
2371
- "@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
2372
- "@aws-cdk/cloud-assembly-schema.TestCase"
2373
- ],
2374
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst testCase: cloud_assembly_schema.TestCase = {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n assertionStack: 'assertionStack',\n assertionStackName: 'assertionStackName',\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2375
- "syntaxKindCounter": {
2376
- "10": 34,
2377
- "75": 94,
2378
- "91": 44,
2379
- "153": 1,
2380
- "169": 1,
2381
- "192": 11,
2382
- "193": 10,
2383
- "194": 2,
2384
- "225": 1,
2385
- "242": 1,
2386
- "243": 1,
2387
- "254": 1,
2388
- "255": 1,
2389
- "256": 1,
2390
- "281": 87,
2391
- "290": 1
2392
- },
2393
- "fqnsFingerprint": "0bc5e9909102c394410eb1ecd57c90cc286cb4210ff190e46ea07bb7486bac53"
2394
- },
2395
- "2f3dd325771b352930f14f196545716d8018a2fcbf0b9d9a3f3dc0dc5d3e5f6c": {
2396
- "translations": {
2397
- "python": {
2398
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntest_options = cloud_assembly_schema.TestOptions(\n allow_destroy=[\"allowDestroy\"],\n cdk_command_options=cloud_assembly_schema.CdkCommands(\n deploy=cloud_assembly_schema.DeployCommand(\n args=cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n ),\n destroy=cloud_assembly_schema.DestroyCommand(\n args=cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n )\n ),\n diff_assets=False,\n hooks=cloud_assembly_schema.Hooks(\n post_deploy=[\"postDeploy\"],\n post_destroy=[\"postDestroy\"],\n pre_deploy=[\"preDeploy\"],\n pre_destroy=[\"preDestroy\"]\n ),\n regions=[\"regions\"],\n stack_update_workflow=False\n)",
2399
- "version": "2"
2400
- },
2401
- "csharp": {
2402
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTestOptions testOptions = new TestOptions {\n AllowDestroy = new [] { \"allowDestroy\" },\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Execute = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n NotificationArns = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n ToolkitStackName = \"toolkitStackName\",\n Trace = false,\n UsePreviousParameters = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\n { \"contextKey\", \"context\" }\n },\n Debug = false,\n Ec2Creds = false,\n Exclusively = false,\n Force = false,\n IgnoreErrors = false,\n Json = false,\n Lookups = false,\n Notices = false,\n Output = \"output\",\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RoleArn = \"roleArn\",\n Stacks = new [] { \"stacks\" },\n Staging = false,\n Strict = false,\n Trace = false,\n Verbose = false,\n VersionReporting = false\n },\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n }\n },\n DiffAssets = false,\n Hooks = new Hooks {\n PostDeploy = new [] { \"postDeploy\" },\n PostDestroy = new [] { \"postDestroy\" },\n PreDeploy = new [] { \"preDeploy\" },\n PreDestroy = new [] { \"preDestroy\" }\n },\n Regions = new [] { \"regions\" },\n StackUpdateWorkflow = false\n};",
2403
- "version": "1"
2404
- },
2405
- "java": {
2406
- "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.cloudassembly.schema.*;\n\nTestOptions testOptions = TestOptions.builder()\n .allowDestroy(List.of(\"allowDestroy\"))\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .execute(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .notificationArns(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\n .debug(false)\n .ec2Creds(false)\n .exclusively(false)\n .force(false)\n .ignoreErrors(false)\n .json(false)\n .lookups(false)\n .notices(false)\n .output(\"output\")\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .roleArn(\"roleArn\")\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .build())\n .diffAssets(false)\n .hooks(Hooks.builder()\n .postDeploy(List.of(\"postDeploy\"))\n .postDestroy(List.of(\"postDestroy\"))\n .preDeploy(List.of(\"preDeploy\"))\n .preDestroy(List.of(\"preDestroy\"))\n .build())\n .regions(List.of(\"regions\"))\n .stackUpdateWorkflow(false)\n .build();",
2407
- "version": "1"
2408
- },
2409
- "go": {
2410
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ntestOptions := &testOptions{\n\tallowDestroy: []*string{\n\t\tjsii.String(\"allowDestroy\"),\n\t},\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\tall: jsii.Boolean(false),\n\t\t\t\tapp: jsii.String(\"app\"),\n\t\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\t\t\tci: jsii.Boolean(false),\n\t\t\t\tcolor: jsii.Boolean(false),\n\t\t\t\tcontext: map[string]*string{\n\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t},\n\t\t\t\tdebug: jsii.Boolean(false),\n\t\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\t\texclusively: jsii.Boolean(false),\n\t\t\t\texecute: jsii.Boolean(false),\n\t\t\t\tforce: jsii.Boolean(false),\n\t\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\t\tjson: jsii.Boolean(false),\n\t\t\t\tlookups: jsii.Boolean(false),\n\t\t\t\tnotices: jsii.Boolean(false),\n\t\t\t\tnotificationArns: []*string{\n\t\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t\t},\n\t\t\t\toutput: jsii.String(\"output\"),\n\t\t\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\t\t\tparameters: map[string]*string{\n\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t},\n\t\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\t\t\treuseAssets: []*string{\n\t\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t\t},\n\t\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\t\trollback: jsii.Boolean(false),\n\t\t\t\tstacks: []*string{\n\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t},\n\t\t\t\tstaging: jsii.Boolean(false),\n\t\t\t\tstrict: jsii.Boolean(false),\n\t\t\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\t\t\ttrace: jsii.Boolean(false),\n\t\t\t\tusePreviousParameters: jsii.Boolean(false),\n\t\t\t\tverbose: jsii.Boolean(false),\n\t\t\t\tversionReporting: jsii.Boolean(false),\n\t\t\t},\n\t\t\tenabled: jsii.Boolean(false),\n\t\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\t\texpectError: jsii.Boolean(false),\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tall: jsii.Boolean(false),\n\t\t\t\tapp: jsii.String(\"app\"),\n\t\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\t\tcolor: jsii.Boolean(false),\n\t\t\t\tcontext: map[string]*string{\n\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t},\n\t\t\t\tdebug: jsii.Boolean(false),\n\t\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\t\texclusively: jsii.Boolean(false),\n\t\t\t\tforce: jsii.Boolean(false),\n\t\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\t\tjson: jsii.Boolean(false),\n\t\t\t\tlookups: jsii.Boolean(false),\n\t\t\t\tnotices: jsii.Boolean(false),\n\t\t\t\toutput: jsii.String(\"output\"),\n\t\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\t\tstacks: []*string{\n\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t},\n\t\t\t\tstaging: jsii.Boolean(false),\n\t\t\t\tstrict: jsii.Boolean(false),\n\t\t\t\ttrace: jsii.Boolean(false),\n\t\t\t\tverbose: jsii.Boolean(false),\n\t\t\t\tversionReporting: jsii.Boolean(false),\n\t\t\t},\n\t\t\tenabled: jsii.Boolean(false),\n\t\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\t\texpectError: jsii.Boolean(false),\n\t\t},\n\t},\n\tdiffAssets: jsii.Boolean(false),\n\thooks: &hooks{\n\t\tpostDeploy: []*string{\n\t\t\tjsii.String(\"postDeploy\"),\n\t\t},\n\t\tpostDestroy: []*string{\n\t\t\tjsii.String(\"postDestroy\"),\n\t\t},\n\t\tpreDeploy: []*string{\n\t\t\tjsii.String(\"preDeploy\"),\n\t\t},\n\t\tpreDestroy: []*string{\n\t\t\tjsii.String(\"preDestroy\"),\n\t\t},\n\t},\n\tregions: []*string{\n\t\tjsii.String(\"regions\"),\n\t},\n\tstackUpdateWorkflow: jsii.Boolean(false),\n}",
2411
- "version": "1"
2412
- },
2413
- "$": {
2414
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst testOptions: cloud_assembly_schema.TestOptions = {\n allowDestroy: ['allowDestroy'],\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n};",
2415
- "version": "0"
2416
- }
2417
- },
2418
- "location": {
2419
- "api": {
2420
- "api": "type",
2421
- "fqn": "@aws-cdk/cloud-assembly-schema.TestOptions"
2422
- },
2423
- "field": {
2424
- "field": "example"
2425
- }
2426
- },
2427
- "didCompile": true,
2428
- "fqnsReferenced": [
2429
- "@aws-cdk/cloud-assembly-schema.CdkCommands",
2430
- "@aws-cdk/cloud-assembly-schema.DeployCommand",
2431
- "@aws-cdk/cloud-assembly-schema.DeployOptions",
2432
- "@aws-cdk/cloud-assembly-schema.DestroyCommand",
2433
- "@aws-cdk/cloud-assembly-schema.DestroyOptions",
2434
- "@aws-cdk/cloud-assembly-schema.Hooks",
2435
- "@aws-cdk/cloud-assembly-schema.RequireApproval",
2436
- "@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
2437
- "@aws-cdk/cloud-assembly-schema.TestOptions"
2438
- ],
2439
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst testOptions: cloud_assembly_schema.TestOptions = {\n allowDestroy: ['allowDestroy'],\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2440
- "syntaxKindCounter": {
2441
- "10": 31,
2442
- "75": 91,
2443
- "91": 44,
2444
- "153": 1,
2445
- "169": 1,
2446
- "192": 10,
2447
- "193": 10,
2448
- "194": 2,
2449
- "225": 1,
2450
- "242": 1,
2451
- "243": 1,
2452
- "254": 1,
2453
- "255": 1,
2454
- "256": 1,
2455
- "281": 84,
2456
- "290": 1
2457
- },
2458
- "fqnsFingerprint": "2b670620b6bd6bf18bef714178abeb6b1c2c4165bfbfa9443f3340843969c643"
2459
- },
2460
- "ea1bc4f88d5cfeea825e5d51c026f05a15345d5c410859f91aae9efe2897813a": {
2461
- "translations": {
2462
- "python": {
2463
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntree_artifact_properties = cloud_assembly_schema.TreeArtifactProperties(\n file=\"file\"\n)",
2464
- "version": "2"
2465
- },
2466
- "csharp": {
2467
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTreeArtifactProperties treeArtifactProperties = new TreeArtifactProperties {\n File = \"file\"\n};",
2468
- "version": "1"
2469
- },
2470
- "java": {
2471
- "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.cloudassembly.schema.*;\n\nTreeArtifactProperties treeArtifactProperties = TreeArtifactProperties.builder()\n .file(\"file\")\n .build();",
2472
- "version": "1"
2473
- },
2474
- "go": {
2475
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\ntreeArtifactProperties := &treeArtifactProperties{\n\tfile: jsii.String(\"file\"),\n}",
2476
- "version": "1"
2477
- },
2478
- "$": {
2479
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst treeArtifactProperties: cloud_assembly_schema.TreeArtifactProperties = {\n file: 'file',\n};",
2480
- "version": "0"
2481
- }
2482
- },
2483
- "location": {
2484
- "api": {
2485
- "api": "type",
2486
- "fqn": "@aws-cdk/cloud-assembly-schema.TreeArtifactProperties"
2487
- },
2488
- "field": {
2489
- "field": "example"
2490
- }
2491
- },
2492
- "didCompile": true,
2493
- "fqnsReferenced": [
2494
- "@aws-cdk/cloud-assembly-schema.TreeArtifactProperties"
2495
- ],
2496
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst treeArtifactProperties: cloud_assembly_schema.TreeArtifactProperties = {\n file: 'file',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2497
- "syntaxKindCounter": {
2498
- "10": 2,
2499
- "75": 5,
2500
- "153": 1,
2501
- "169": 1,
2502
- "193": 1,
2503
- "225": 1,
2504
- "242": 1,
2505
- "243": 1,
2506
- "254": 1,
2507
- "255": 1,
2508
- "256": 1,
2509
- "281": 1,
2510
- "290": 1
2511
- },
2512
- "fqnsFingerprint": "34f0e006983c0afed369cbecc26b0a886c83e7049ac8d3e95f3d267b58d07907"
2513
- },
2514
- "c40e522110288b0bb2989ae9cced4bfea45ca698dda9eae575cdb1f9a78e8abc": {
2515
- "translations": {
2516
- "python": {
2517
- "source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nvpc_context_query = cloud_assembly_schema.VpcContextQuery(\n account=\"account\",\n filter={\n \"filter_key\": \"filter\"\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n return_asymmetric_subnets=False,\n subnet_group_name_tag=\"subnetGroupNameTag\"\n)",
2518
- "version": "2"
2519
- },
2520
- "csharp": {
2521
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nVpcContextQuery vpcContextQuery = new VpcContextQuery {\n Account = \"account\",\n Filter = new Dictionary<string, string> {\n { \"filterKey\", \"filter\" }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n ReturnAsymmetricSubnets = false,\n SubnetGroupNameTag = \"subnetGroupNameTag\"\n};",
2522
- "version": "1"
2523
- },
2524
- "java": {
2525
- "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.cloudassembly.schema.*;\n\nVpcContextQuery vpcContextQuery = VpcContextQuery.builder()\n .account(\"account\")\n .filter(Map.of(\n \"filterKey\", \"filter\"))\n .region(\"region\")\n\n // the properties below are optional\n .lookupRoleArn(\"lookupRoleArn\")\n .returnAsymmetricSubnets(false)\n .subnetGroupNameTag(\"subnetGroupNameTag\")\n .build();",
2526
- "version": "1"
2527
- },
2528
- "go": {
2529
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\n\nvpcContextQuery := &vpcContextQuery{\n\taccount: jsii.String(\"account\"),\n\tfilter: map[string]*string{\n\t\t\"filterKey\": jsii.String(\"filter\"),\n\t},\n\tregion: jsii.String(\"region\"),\n\n\t// the properties below are optional\n\tlookupRoleArn: jsii.String(\"lookupRoleArn\"),\n\treturnAsymmetricSubnets: jsii.Boolean(false),\n\tsubnetGroupNameTag: jsii.String(\"subnetGroupNameTag\"),\n}",
2530
- "version": "1"
2531
- },
2532
- "$": {
2533
- "source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst vpcContextQuery: cloud_assembly_schema.VpcContextQuery = {\n account: 'account',\n filter: {\n filterKey: 'filter',\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n returnAsymmetricSubnets: false,\n subnetGroupNameTag: 'subnetGroupNameTag',\n};",
2534
- "version": "0"
2535
- }
2536
- },
2537
- "location": {
2538
- "api": {
2539
- "api": "type",
2540
- "fqn": "@aws-cdk/cloud-assembly-schema.VpcContextQuery"
2541
- },
2542
- "field": {
2543
- "field": "example"
2544
- }
2545
- },
2546
- "didCompile": true,
2547
- "fqnsReferenced": [
2548
- "@aws-cdk/cloud-assembly-schema.VpcContextQuery"
2549
- ],
2550
- "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 cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst vpcContextQuery: cloud_assembly_schema.VpcContextQuery = {\n account: 'account',\n filter: {\n filterKey: 'filter',\n },\n region: 'region',\n\n // the properties below are optional\n lookupRoleArn: 'lookupRoleArn',\n returnAsymmetricSubnets: false,\n subnetGroupNameTag: 'subnetGroupNameTag',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
2551
- "syntaxKindCounter": {
2552
- "10": 6,
2553
- "75": 11,
2554
- "91": 1,
2555
- "153": 1,
2556
- "169": 1,
2557
- "193": 2,
2558
- "225": 1,
2559
- "242": 1,
2560
- "243": 1,
2561
- "254": 1,
2562
- "255": 1,
2563
- "256": 1,
2564
- "281": 7,
2565
- "290": 1
2566
- },
2567
- "fqnsFingerprint": "7ac33f73110dbbf20e0bd19557c0be50d17d3f76e3dfd662f687974c60170110"
2568
- }
2569
- }
2570
- }