@aws-cdk/cloud-assembly-schema 2.17.0 → 2.20.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 +1523 -62
- package/.jsii.tabl.json +729 -1
- package/.warnings.jsii.js +78 -16
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/integ-tests/commands/common.d.ts +178 -0
- package/lib/integ-tests/commands/common.js +22 -0
- package/lib/integ-tests/commands/deploy.d.ts +86 -0
- package/lib/integ-tests/commands/deploy.js +3 -0
- package/lib/integ-tests/commands/destroy.d.ts +18 -0
- package/lib/integ-tests/commands/destroy.js +3 -0
- package/lib/integ-tests/commands/index.d.ts +3 -0
- package/lib/integ-tests/commands/index.js +16 -0
- package/lib/integ-tests/index.d.ts +3 -0
- package/lib/integ-tests/index.js +16 -0
- package/lib/integ-tests/schema.d.ts +25 -0
- package/lib/integ-tests/schema.js +3 -0
- package/lib/integ-tests/test-case.d.ts +168 -0
- package/lib/integ-tests/test-case.js +3 -0
- package/lib/manifest.d.ts +14 -0
- package/lib/manifest.js +21 -2
- package/package.json +4 -5
- package/schema/cloud-assembly.version.json +1 -1
- package/schema/integ.schema.json +474 -0
- package/scripts/update-schema.js +2 -1
package/.jsii.tabl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2",
|
|
3
|
-
"toolVersion": "1.
|
|
3
|
+
"toolVersion": "1.55.1",
|
|
4
4
|
"snippets": {
|
|
5
5
|
"cecc4b6be0cf4accc3e46f1670579b731439bd3e3b6efffdbd431eb0130d724c": {
|
|
6
6
|
"translations": {
|
|
@@ -16,6 +16,10 @@
|
|
|
16
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
17
|
"version": "1"
|
|
18
18
|
},
|
|
19
|
+
"go": {
|
|
20
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
19
23
|
"$": {
|
|
20
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};",
|
|
21
25
|
"version": "0"
|
|
@@ -67,6 +71,10 @@
|
|
|
67
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();",
|
|
68
72
|
"version": "1"
|
|
69
73
|
},
|
|
74
|
+
"go": {
|
|
75
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
70
78
|
"$": {
|
|
71
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};",
|
|
72
80
|
"version": "0"
|
|
@@ -124,6 +132,10 @@
|
|
|
124
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();",
|
|
125
133
|
"version": "1"
|
|
126
134
|
},
|
|
135
|
+
"go": {
|
|
136
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
127
139
|
"$": {
|
|
128
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};",
|
|
129
141
|
"version": "0"
|
|
@@ -185,6 +197,10 @@
|
|
|
185
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 .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();",
|
|
186
198
|
"version": "1"
|
|
187
199
|
},
|
|
200
|
+
"go": {
|
|
201
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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},\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
|
+
},
|
|
188
204
|
"$": {
|
|
189
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 },\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};",
|
|
190
206
|
"version": "0"
|
|
@@ -245,6 +261,10 @@
|
|
|
245
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();",
|
|
246
262
|
"version": "1"
|
|
247
263
|
},
|
|
264
|
+
"go": {
|
|
265
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
248
268
|
"$": {
|
|
249
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};",
|
|
250
270
|
"version": "0"
|
|
@@ -296,6 +316,10 @@
|
|
|
296
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();",
|
|
297
317
|
"version": "1"
|
|
298
318
|
},
|
|
319
|
+
"go": {
|
|
320
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
299
323
|
"$": {
|
|
300
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};",
|
|
301
325
|
"version": "0"
|
|
@@ -346,6 +370,10 @@
|
|
|
346
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();",
|
|
347
371
|
"version": "1"
|
|
348
372
|
},
|
|
373
|
+
"go": {
|
|
374
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
349
377
|
"$": {
|
|
350
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};",
|
|
351
379
|
"version": "0"
|
|
@@ -399,6 +427,10 @@
|
|
|
399
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();",
|
|
400
428
|
"version": "1"
|
|
401
429
|
},
|
|
430
|
+
"go": {
|
|
431
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\nawsDestination := &awsDestination{\n\tassumeRoleArn: jsii.String(\"assumeRoleArn\"),\n\tassumeRoleExternalId: jsii.String(\"assumeRoleExternalId\"),\n\tregion: jsii.String(\"region\"),\n}",
|
|
432
|
+
"version": "1"
|
|
433
|
+
},
|
|
402
434
|
"$": {
|
|
403
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};",
|
|
404
436
|
"version": "0"
|
|
@@ -449,6 +481,10 @@
|
|
|
449
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();",
|
|
450
482
|
"version": "1"
|
|
451
483
|
},
|
|
484
|
+
"go": {
|
|
485
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
452
488
|
"$": {
|
|
453
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};",
|
|
454
490
|
"version": "0"
|
|
@@ -486,6 +522,124 @@
|
|
|
486
522
|
},
|
|
487
523
|
"fqnsFingerprint": "3b7fe1842f0cc0f13ad1684247b5b04a45b80ce59b32df4f294894aeb087781b"
|
|
488
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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
489
643
|
"8f7e2b076b4d344fbaa2cffd1d4b6826a6b768f06ff4f268b7962397ae513f96": {
|
|
490
644
|
"translations": {
|
|
491
645
|
"python": {
|
|
@@ -500,6 +654,10 @@
|
|
|
500
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 .repositoryName(\"repositoryName\")\n .target(\"target\")\n .build();",
|
|
501
655
|
"version": "1"
|
|
502
656
|
},
|
|
657
|
+
"go": {
|
|
658
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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\trepositoryName: jsii.String(\"repositoryName\"),\n\ttarget: jsii.String(\"target\"),\n}",
|
|
659
|
+
"version": "1"
|
|
660
|
+
},
|
|
503
661
|
"$": {
|
|
504
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 repositoryName: 'repositoryName',\n target: 'target',\n};",
|
|
505
663
|
"version": "0"
|
|
@@ -536,6 +694,294 @@
|
|
|
536
694
|
},
|
|
537
695
|
"fqnsFingerprint": "24a489bf1e77b25f5586308f2061ec7e9cdbfa0e142cd270d57fc56b6e9dc64d"
|
|
538
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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
539
985
|
"13514bf756685ec4825817ac806f4a7510034d11baa93291d3d8749ecc9bc6e2": {
|
|
540
986
|
"translations": {
|
|
541
987
|
"python": {
|
|
@@ -550,6 +996,10 @@
|
|
|
550
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 .build())\n .build();",
|
|
551
997
|
"version": "1"
|
|
552
998
|
},
|
|
999
|
+
"go": {
|
|
1000
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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},\n}",
|
|
1001
|
+
"version": "1"
|
|
1002
|
+
},
|
|
553
1003
|
"$": {
|
|
554
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 },\n};",
|
|
555
1005
|
"version": "0"
|
|
@@ -603,6 +1053,10 @@
|
|
|
603
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();",
|
|
604
1054
|
"version": "1"
|
|
605
1055
|
},
|
|
1056
|
+
"go": {
|
|
1057
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
606
1060
|
"$": {
|
|
607
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};",
|
|
608
1062
|
"version": "0"
|
|
@@ -653,6 +1107,10 @@
|
|
|
653
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 .build();",
|
|
654
1108
|
"version": "1"
|
|
655
1109
|
},
|
|
1110
|
+
"go": {
|
|
1111
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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}",
|
|
1112
|
+
"version": "1"
|
|
1113
|
+
},
|
|
656
1114
|
"$": {
|
|
657
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};",
|
|
658
1116
|
"version": "0"
|
|
@@ -704,6 +1162,10 @@
|
|
|
704
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();",
|
|
705
1163
|
"version": "1"
|
|
706
1164
|
},
|
|
1165
|
+
"go": {
|
|
1166
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
707
1169
|
"$": {
|
|
708
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};",
|
|
709
1171
|
"version": "0"
|
|
@@ -754,6 +1216,10 @@
|
|
|
754
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();",
|
|
755
1217
|
"version": "1"
|
|
756
1218
|
},
|
|
1219
|
+
"go": {
|
|
1220
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
757
1223
|
"$": {
|
|
758
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};",
|
|
759
1225
|
"version": "0"
|
|
@@ -810,6 +1276,10 @@
|
|
|
810
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();",
|
|
811
1277
|
"version": "1"
|
|
812
1278
|
},
|
|
1279
|
+
"go": {
|
|
1280
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
813
1283
|
"$": {
|
|
814
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};",
|
|
815
1285
|
"version": "0"
|
|
@@ -860,6 +1330,10 @@
|
|
|
860
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();",
|
|
861
1331
|
"version": "1"
|
|
862
1332
|
},
|
|
1333
|
+
"go": {
|
|
1334
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
863
1337
|
"$": {
|
|
864
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};",
|
|
865
1339
|
"version": "0"
|
|
@@ -910,6 +1384,10 @@
|
|
|
910
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();",
|
|
911
1385
|
"version": "1"
|
|
912
1386
|
},
|
|
1387
|
+
"go": {
|
|
1388
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
913
1391
|
"$": {
|
|
914
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};",
|
|
915
1393
|
"version": "0"
|
|
@@ -950,6 +1428,61 @@
|
|
|
950
1428
|
},
|
|
951
1429
|
"fqnsFingerprint": "cce5010fbb67f8f66c9253b4457f7a3f9dbbde97c641fb1b4a4302ea3a6d669c"
|
|
952
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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
953
1486
|
"14328c9839269071fac0c6ef1f2ebd6a709366b95ee744ea64e4ea68990540e0": {
|
|
954
1487
|
"translations": {
|
|
955
1488
|
"python": {
|
|
@@ -964,6 +1497,10 @@
|
|
|
964
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();",
|
|
965
1498
|
"version": "1"
|
|
966
1499
|
},
|
|
1500
|
+
"go": {
|
|
1501
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
967
1504
|
"$": {
|
|
968
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};",
|
|
969
1506
|
"version": "0"
|
|
@@ -1001,6 +1538,72 @@
|
|
|
1001
1538
|
},
|
|
1002
1539
|
"fqnsFingerprint": "047059be64704a685d7e0f39d3e38c24b1a7fc585a887bfdae03dfb15dbf38d9"
|
|
1003
1540
|
},
|
|
1541
|
+
"d2d97be535bc1d00381493cad842d1414bf69f21b5294a5cbb2a7918469011a5": {
|
|
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 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)",
|
|
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 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};",
|
|
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 .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 .build();",
|
|
1553
|
+
"version": "1"
|
|
1554
|
+
},
|
|
1555
|
+
"go": {
|
|
1556
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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\"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}",
|
|
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 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};",
|
|
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 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};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
1587
|
+
"syntaxKindCounter": {
|
|
1588
|
+
"10": 33,
|
|
1589
|
+
"75": 96,
|
|
1590
|
+
"91": 45,
|
|
1591
|
+
"153": 1,
|
|
1592
|
+
"169": 1,
|
|
1593
|
+
"192": 11,
|
|
1594
|
+
"193": 12,
|
|
1595
|
+
"194": 2,
|
|
1596
|
+
"225": 1,
|
|
1597
|
+
"242": 1,
|
|
1598
|
+
"243": 1,
|
|
1599
|
+
"254": 1,
|
|
1600
|
+
"255": 1,
|
|
1601
|
+
"256": 1,
|
|
1602
|
+
"281": 89,
|
|
1603
|
+
"290": 1
|
|
1604
|
+
},
|
|
1605
|
+
"fqnsFingerprint": "e1becec3203368d44715cf295af851076f18da455d2125b7c016bab07c348c5d"
|
|
1606
|
+
},
|
|
1004
1607
|
"ace2c0f8cefd8405e123e856adc09df724751fa6d2d4aaee28f73a730ea65155": {
|
|
1005
1608
|
"translations": {
|
|
1006
1609
|
"python": {
|
|
@@ -1015,6 +1618,10 @@
|
|
|
1015
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();",
|
|
1016
1619
|
"version": "1"
|
|
1017
1620
|
},
|
|
1621
|
+
"go": {
|
|
1622
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1018
1625
|
"$": {
|
|
1019
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};",
|
|
1020
1627
|
"version": "0"
|
|
@@ -1065,6 +1672,10 @@
|
|
|
1065
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();",
|
|
1066
1673
|
"version": "1"
|
|
1067
1674
|
},
|
|
1675
|
+
"go": {
|
|
1676
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1068
1679
|
"$": {
|
|
1069
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};",
|
|
1070
1681
|
"version": "0"
|
|
@@ -1119,6 +1730,10 @@
|
|
|
1119
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();",
|
|
1120
1731
|
"version": "1"
|
|
1121
1732
|
},
|
|
1733
|
+
"go": {
|
|
1734
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1122
1737
|
"$": {
|
|
1123
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};",
|
|
1124
1739
|
"version": "0"
|
|
@@ -1173,6 +1788,10 @@
|
|
|
1173
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();",
|
|
1174
1789
|
"version": "1"
|
|
1175
1790
|
},
|
|
1791
|
+
"go": {
|
|
1792
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1176
1795
|
"$": {
|
|
1177
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};",
|
|
1178
1797
|
"version": "0"
|
|
@@ -1230,6 +1849,10 @@
|
|
|
1230
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();",
|
|
1231
1850
|
"version": "1"
|
|
1232
1851
|
},
|
|
1852
|
+
"go": {
|
|
1853
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\nloadManifestOptions := &loadManifestOptions{\n\tskipEnumCheck: jsii.Boolean(false),\n\tskipVersionCheck: jsii.Boolean(false),\n}",
|
|
1854
|
+
"version": "1"
|
|
1855
|
+
},
|
|
1233
1856
|
"$": {
|
|
1234
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};",
|
|
1235
1858
|
"version": "0"
|
|
@@ -1281,6 +1904,10 @@
|
|
|
1281
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();",
|
|
1282
1905
|
"version": "1"
|
|
1283
1906
|
},
|
|
1907
|
+
"go": {
|
|
1908
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1284
1911
|
"$": {
|
|
1285
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};",
|
|
1286
1913
|
"version": "0"
|
|
@@ -1332,6 +1959,10 @@
|
|
|
1332
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();",
|
|
1333
1960
|
"version": "1"
|
|
1334
1961
|
},
|
|
1962
|
+
"go": {
|
|
1963
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1335
1966
|
"$": {
|
|
1336
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};",
|
|
1337
1968
|
"version": "0"
|
|
@@ -1386,6 +2017,10 @@
|
|
|
1386
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();",
|
|
1387
2018
|
"version": "1"
|
|
1388
2019
|
},
|
|
2020
|
+
"go": {
|
|
2021
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1389
2024
|
"$": {
|
|
1390
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};",
|
|
1391
2026
|
"version": "0"
|
|
@@ -1436,6 +2071,10 @@
|
|
|
1436
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();",
|
|
1437
2072
|
"version": "1"
|
|
1438
2073
|
},
|
|
2074
|
+
"go": {
|
|
2075
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\npluginContextQuery := &pluginContextQuery{\n\tpluginName: jsii.String(\"pluginName\"),\n}",
|
|
2076
|
+
"version": "1"
|
|
2077
|
+
},
|
|
1439
2078
|
"$": {
|
|
1440
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};",
|
|
1441
2080
|
"version": "0"
|
|
@@ -1486,6 +2125,10 @@
|
|
|
1486
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();",
|
|
1487
2126
|
"version": "1"
|
|
1488
2127
|
},
|
|
2128
|
+
"go": {
|
|
2129
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\nruntimeInfo := &runtimeInfo{\n\tlibraries: map[string]*string{\n\t\t\"librariesKey\": jsii.String(\"libraries\"),\n\t},\n}",
|
|
2130
|
+
"version": "1"
|
|
2131
|
+
},
|
|
1489
2132
|
"$": {
|
|
1490
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};",
|
|
1491
2134
|
"version": "0"
|
|
@@ -1536,6 +2179,10 @@
|
|
|
1536
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();",
|
|
1537
2180
|
"version": "1"
|
|
1538
2181
|
},
|
|
2182
|
+
"go": {
|
|
2183
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1539
2186
|
"$": {
|
|
1540
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};",
|
|
1541
2188
|
"version": "0"
|
|
@@ -1586,6 +2233,10 @@
|
|
|
1586
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();",
|
|
1587
2234
|
"version": "1"
|
|
1588
2235
|
},
|
|
2236
|
+
"go": {
|
|
2237
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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
|
+
},
|
|
1589
2240
|
"$": {
|
|
1590
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};",
|
|
1591
2242
|
"version": "0"
|
|
@@ -1636,6 +2287,10 @@
|
|
|
1636
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();",
|
|
1637
2288
|
"version": "1"
|
|
1638
2289
|
},
|
|
2290
|
+
"go": {
|
|
2291
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ntag := &tag{\n\tkey: jsii.String(\"key\"),\n\tvalue: jsii.String(\"value\"),\n}",
|
|
2292
|
+
"version": "1"
|
|
2293
|
+
},
|
|
1639
2294
|
"$": {
|
|
1640
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};",
|
|
1641
2296
|
"version": "0"
|
|
@@ -1672,6 +2327,71 @@
|
|
|
1672
2327
|
},
|
|
1673
2328
|
"fqnsFingerprint": "00a9c22e7f063f4897295481ff2ff2240c6dd977d4c3724da8d90f976831fe5d"
|
|
1674
2329
|
},
|
|
2330
|
+
"0320a574665dcbe406563f4d4194924764edac6f13143a067e946caf5336ac13": {
|
|
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 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 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 .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": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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\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 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 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": 32,
|
|
2377
|
+
"75": 92,
|
|
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": 85,
|
|
2391
|
+
"290": 1
|
|
2392
|
+
},
|
|
2393
|
+
"fqnsFingerprint": "50cb8d8302da215926fd5c80e426c85c84cdaa16445db406fbbc81d99948ed41"
|
|
2394
|
+
},
|
|
1675
2395
|
"ea1bc4f88d5cfeea825e5d51c026f05a15345d5c410859f91aae9efe2897813a": {
|
|
1676
2396
|
"translations": {
|
|
1677
2397
|
"python": {
|
|
@@ -1686,6 +2406,10 @@
|
|
|
1686
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\nTreeArtifactProperties treeArtifactProperties = TreeArtifactProperties.builder()\n .file(\"file\")\n .build();",
|
|
1687
2407
|
"version": "1"
|
|
1688
2408
|
},
|
|
2409
|
+
"go": {
|
|
2410
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ntreeArtifactProperties := &treeArtifactProperties{\n\tfile: jsii.String(\"file\"),\n}",
|
|
2411
|
+
"version": "1"
|
|
2412
|
+
},
|
|
1689
2413
|
"$": {
|
|
1690
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 treeArtifactProperties: cloud_assembly_schema.TreeArtifactProperties = {\n file: 'file',\n};",
|
|
1691
2415
|
"version": "0"
|
|
@@ -1736,6 +2460,10 @@
|
|
|
1736
2460
|
"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();",
|
|
1737
2461
|
"version": "1"
|
|
1738
2462
|
},
|
|
2463
|
+
"go": {
|
|
2464
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\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}",
|
|
2465
|
+
"version": "1"
|
|
2466
|
+
},
|
|
1739
2467
|
"$": {
|
|
1740
2468
|
"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};",
|
|
1741
2469
|
"version": "0"
|