@aws-cdk/cloud-assembly-schema 2.7.0 → 2.11.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 +163 -77
- package/.jsii.tabl.json +127 -77
- package/.warnings.jsii.js +15 -13
- package/CONTRIBUTING.md +1 -1
- package/lib/assets/docker-image-asset.d.ts +9 -0
- package/lib/assets/docker-image-asset.js +1 -1
- package/lib/cloud-assembly/context-queries.d.ts +28 -2
- package/lib/cloud-assembly/context-queries.js +2 -1
- package/lib/cloud-assembly/metadata-schema.d.ts +7 -0
- package/lib/cloud-assembly/metadata-schema.js +1 -1
- package/lib/manifest.js +1 -1
- package/package.json +4 -4
- package/schema/assets.schema.json +5 -1
- package/schema/cloud-assembly.schema.json +23 -1
- package/schema/cloud-assembly.version.json +1 -1
package/.jsii.tabl.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2",
|
|
3
|
-
"toolVersion": "1.
|
|
3
|
+
"toolVersion": "1.52.1",
|
|
4
4
|
"snippets": {
|
|
5
5
|
"cecc4b6be0cf4accc3e46f1670579b731439bd3e3b6efffdbd431eb0130d724c": {
|
|
6
6
|
"translations": {
|
|
7
7
|
"python": {
|
|
8
8
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nami_context_query = cloud_assembly_schema.AmiContextQuery(\n account=\"account\",\n filters={\n \"filters_key\": [\"filters\"]\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n owners=[\"owners\"]\n)",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "2"
|
|
10
10
|
},
|
|
11
11
|
"csharp": {
|
|
12
12
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAmiContextQuery amiContextQuery = new AmiContextQuery {\n Account = \"account\",\n Filters = new Dictionary<string, string[]> {\n { \"filtersKey\", new [] { \"filters\" } }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n Owners = new [] { \"owners\" }\n};",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"translations": {
|
|
58
58
|
"python": {
|
|
59
59
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nartifact_manifest = cloud_assembly_schema.ArtifactManifest(\n type=cloud_assembly_schema.ArtifactType.NONE,\n\n # the properties below are optional\n dependencies=[\"dependencies\"],\n display_name=\"displayName\",\n environment=\"environment\",\n metadata={\n \"metadata_key\": [cloud_assembly_schema.MetadataEntry(\n type=\"type\",\n\n # the properties below are optional\n data=\"data\",\n trace=[\"trace\"]\n )]\n },\n properties=cloud_assembly_schema.AwsCloudFormationStackProperties(\n template_file=\"templateFile\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n cloud_formation_execution_role_arn=\"cloudFormationExecutionRoleArn\",\n lookup_role=cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n ),\n parameters={\n \"parameters_key\": \"parameters\"\n },\n requires_bootstrap_stack_version=123,\n stack_name=\"stackName\",\n stack_template_asset_object_url=\"stackTemplateAssetObjectUrl\",\n tags={\n \"tags_key\": \"tags\"\n },\n termination_protection=False,\n validate_on_synth=False\n )\n)",
|
|
60
|
-
"version": "
|
|
60
|
+
"version": "2"
|
|
61
61
|
},
|
|
62
62
|
"csharp": {
|
|
63
63
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nArtifactManifest artifactManifest = new ArtifactManifest {\n Type = ArtifactType.NONE,\n\n // the properties below are optional\n Dependencies = new [] { \"dependencies\" },\n DisplayName = \"displayName\",\n Environment = \"environment\",\n Metadata = new Dictionary<string, MetadataEntry[]> {\n { \"metadataKey\", new [] { new MetadataEntry {\n Type = \"type\",\n\n // the properties below are optional\n Data = \"data\",\n Trace = new [] { \"trace\" }\n } } }\n },\n Properties = new AwsCloudFormationStackProperties {\n TemplateFile = \"templateFile\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n CloudFormationExecutionRoleArn = \"cloudFormationExecutionRoleArn\",\n LookupRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n },\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n RequiresBootstrapStackVersion = 123,\n StackName = \"stackName\",\n StackTemplateAssetObjectUrl = \"stackTemplateAssetObjectUrl\",\n Tags = new Dictionary<string, string> {\n { \"tagsKey\", \"tags\" }\n },\n TerminationProtection = false,\n ValidateOnSynth = false\n }\n};",
|
|
@@ -108,13 +108,13 @@
|
|
|
108
108
|
"281": 29,
|
|
109
109
|
"290": 1
|
|
110
110
|
},
|
|
111
|
-
"fqnsFingerprint": "
|
|
111
|
+
"fqnsFingerprint": "a8b47472c8757ec7b1e584f2bfd85ad8e87afde70769323b70dbed3823e90150"
|
|
112
112
|
},
|
|
113
113
|
"51b9f560219f00280c95ce85c64fec1e95f59ed1de150b9a0323d891c0d9870c": {
|
|
114
114
|
"translations": {
|
|
115
115
|
"python": {
|
|
116
116
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nassembly_manifest = cloud_assembly_schema.AssemblyManifest(\n version=\"version\",\n\n # the properties below are optional\n artifacts={\n \"artifacts_key\": cloud_assembly_schema.ArtifactManifest(\n type=cloud_assembly_schema.ArtifactType.NONE,\n\n # the properties below are optional\n dependencies=[\"dependencies\"],\n display_name=\"displayName\",\n environment=\"environment\",\n metadata={\n \"metadata_key\": [cloud_assembly_schema.MetadataEntry(\n type=\"type\",\n\n # the properties below are optional\n data=\"data\",\n trace=[\"trace\"]\n )]\n },\n properties=cloud_assembly_schema.AwsCloudFormationStackProperties(\n template_file=\"templateFile\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n cloud_formation_execution_role_arn=\"cloudFormationExecutionRoleArn\",\n lookup_role=cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n ),\n parameters={\n \"parameters_key\": \"parameters\"\n },\n requires_bootstrap_stack_version=123,\n stack_name=\"stackName\",\n stack_template_asset_object_url=\"stackTemplateAssetObjectUrl\",\n tags={\n \"tags_key\": \"tags\"\n },\n termination_protection=False,\n validate_on_synth=False\n )\n )\n },\n missing=[cloud_assembly_schema.MissingContext(\n key=\"key\",\n props=cloud_assembly_schema.AmiContextQuery(\n account=\"account\",\n filters={\n \"filters_key\": [\"filters\"]\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n owners=[\"owners\"]\n ),\n provider=cloud_assembly_schema.ContextProvider.AMI_PROVIDER\n )],\n runtime=cloud_assembly_schema.RuntimeInfo(\n libraries={\n \"libraries_key\": \"libraries\"\n }\n )\n)",
|
|
117
|
-
"version": "
|
|
117
|
+
"version": "2"
|
|
118
118
|
},
|
|
119
119
|
"csharp": {
|
|
120
120
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssemblyManifest assemblyManifest = new AssemblyManifest {\n Version = \"version\",\n\n // the properties below are optional\n Artifacts = new Dictionary<string, ArtifactManifest> {\n { \"artifactsKey\", new ArtifactManifest {\n Type = ArtifactType.NONE,\n\n // the properties below are optional\n Dependencies = new [] { \"dependencies\" },\n DisplayName = \"displayName\",\n Environment = \"environment\",\n Metadata = new Dictionary<string, MetadataEntry[]> {\n { \"metadataKey\", new [] { new MetadataEntry {\n Type = \"type\",\n\n // the properties below are optional\n Data = \"data\",\n Trace = new [] { \"trace\" }\n } } }\n },\n Properties = new AwsCloudFormationStackProperties {\n TemplateFile = \"templateFile\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n CloudFormationExecutionRoleArn = \"cloudFormationExecutionRoleArn\",\n LookupRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n },\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n RequiresBootstrapStackVersion = 123,\n StackName = \"stackName\",\n StackTemplateAssetObjectUrl = \"stackTemplateAssetObjectUrl\",\n Tags = new Dictionary<string, string> {\n { \"tagsKey\", \"tags\" }\n },\n TerminationProtection = false,\n ValidateOnSynth = false\n }\n } }\n },\n Missing = new [] { new MissingContext {\n Key = \"key\",\n Props = new AmiContextQuery {\n Account = \"account\",\n Filters = new Dictionary<string, string[]> {\n { \"filtersKey\", new [] { \"filters\" } }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n Owners = new [] { \"owners\" }\n },\n Provider = ContextProvider.AMI_PROVIDER\n } },\n Runtime = new RuntimeInfo {\n Libraries = new Dictionary<string, string> {\n { \"librariesKey\", \"libraries\" }\n }\n }\n};",
|
|
@@ -169,24 +169,24 @@
|
|
|
169
169
|
"281": 45,
|
|
170
170
|
"290": 1
|
|
171
171
|
},
|
|
172
|
-
"fqnsFingerprint": "
|
|
172
|
+
"fqnsFingerprint": "4516a1c6237b5b9f8bff36e346080d4641352277019b903283b7cc1337e12a34"
|
|
173
173
|
},
|
|
174
|
-
"
|
|
174
|
+
"6df1b98937a707781cf94ec9a6b0757a31a1f33fc71d2562322f714d5f10d2b3": {
|
|
175
175
|
"translations": {
|
|
176
176
|
"python": {
|
|
177
|
-
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nasset_manifest = cloud_assembly_schema.AssetManifest(\n version=\"version\",\n\n # the properties below are optional\n docker_images={\n \"docker_images_key\": cloud_assembly_schema.DockerImageAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"]\n )\n )\n },\n files={\n \"files_key\": cloud_assembly_schema.FileAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n )\n )\n }\n)",
|
|
178
|
-
"version": "
|
|
177
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nasset_manifest = cloud_assembly_schema.AssetManifest(\n version=\"version\",\n\n # the properties below are optional\n docker_images={\n \"docker_images_key\": cloud_assembly_schema.DockerImageAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"],\n network_mode=\"networkMode\"\n )\n )\n },\n files={\n \"files_key\": cloud_assembly_schema.FileAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n )\n )\n }\n)",
|
|
178
|
+
"version": "2"
|
|
179
179
|
},
|
|
180
180
|
"csharp": {
|
|
181
|
-
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssetManifest assetManifest = new AssetManifest {\n Version = \"version\",\n\n // the properties below are optional\n DockerImages = new Dictionary<string, DockerImageAsset> {\n { \"dockerImagesKey\", new DockerImageAsset {\n Destinations = new Dictionary<string, DockerImageDestination> {\n { \"destinationsKey\", new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" }\n }\n } }\n },\n Files = new Dictionary<string, FileAsset> {\n { \"filesKey\", new FileAsset {\n Destinations = new Dictionary<string, FileDestination> {\n { \"destinationsKey\", new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n }\n } }\n }\n};",
|
|
181
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssetManifest assetManifest = new AssetManifest {\n Version = \"version\",\n\n // the properties below are optional\n DockerImages = new Dictionary<string, DockerImageAsset> {\n { \"dockerImagesKey\", new DockerImageAsset {\n Destinations = new Dictionary<string, DockerImageDestination> {\n { \"destinationsKey\", new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" },\n NetworkMode = \"networkMode\"\n }\n } }\n },\n Files = new Dictionary<string, FileAsset> {\n { \"filesKey\", new FileAsset {\n Destinations = new Dictionary<string, FileDestination> {\n { \"destinationsKey\", new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n }\n } }\n }\n};",
|
|
182
182
|
"version": "1"
|
|
183
183
|
},
|
|
184
184
|
"java": {
|
|
185
|
-
"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 .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();",
|
|
185
|
+
"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
186
|
"version": "1"
|
|
187
187
|
},
|
|
188
188
|
"$": {
|
|
189
|
-
"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 },\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};",
|
|
189
|
+
"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
190
|
"version": "0"
|
|
191
191
|
}
|
|
192
192
|
},
|
|
@@ -211,10 +211,10 @@
|
|
|
211
211
|
"@aws-cdk/cloud-assembly-schema.FileDestination",
|
|
212
212
|
"@aws-cdk/cloud-assembly-schema.FileSource"
|
|
213
213
|
],
|
|
214
|
-
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assetManifest: cloud_assembly_schema.AssetManifest = {\n version: 'version',\n\n // the properties below are optional\n dockerImages: {\n dockerImagesKey: {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n },\n },\n },\n files: {\n filesKey: {\n destinations: {\n destinationsKey: {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n },\n },\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
214
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst assetManifest: cloud_assembly_schema.AssetManifest = {\n version: 'version',\n\n // the properties below are optional\n dockerImages: {\n dockerImagesKey: {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n },\n },\n },\n files: {\n filesKey: {\n destinations: {\n destinationsKey: {\n bucketName: 'bucketName',\n objectKey: 'objectKey',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n executable: ['executable'],\n packaging: cloud_assembly_schema.FileAssetPackaging.FILE,\n path: 'path',\n },\n },\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
215
215
|
"syntaxKindCounter": {
|
|
216
|
-
"10":
|
|
217
|
-
"75":
|
|
216
|
+
"10": 20,
|
|
217
|
+
"75": 38,
|
|
218
218
|
"153": 1,
|
|
219
219
|
"169": 1,
|
|
220
220
|
"192": 2,
|
|
@@ -226,16 +226,16 @@
|
|
|
226
226
|
"254": 1,
|
|
227
227
|
"255": 1,
|
|
228
228
|
"256": 1,
|
|
229
|
-
"281":
|
|
229
|
+
"281": 31,
|
|
230
230
|
"290": 1
|
|
231
231
|
},
|
|
232
|
-
"fqnsFingerprint": "
|
|
232
|
+
"fqnsFingerprint": "7058b4b67d53c9e07e86bf7b1fab26149729e86f31bace665e0990dff1ecb764"
|
|
233
233
|
},
|
|
234
234
|
"473cefad1aeafa51cd5283cec6bdb716fbc338d433ea32231c51139c95227a6d": {
|
|
235
235
|
"translations": {
|
|
236
236
|
"python": {
|
|
237
237
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nasset_manifest_properties = cloud_assembly_schema.AssetManifestProperties(\n file=\"file\",\n\n # the properties below are optional\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n)",
|
|
238
|
-
"version": "
|
|
238
|
+
"version": "2"
|
|
239
239
|
},
|
|
240
240
|
"csharp": {
|
|
241
241
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAssetManifestProperties assetManifestProperties = new AssetManifestProperties {\n File = \"file\",\n\n // the properties below are optional\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n};",
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
"translations": {
|
|
287
287
|
"python": {
|
|
288
288
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\navailability_zones_context_query = cloud_assembly_schema.AvailabilityZonesContextQuery(\n account=\"account\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
|
|
289
|
-
"version": "
|
|
289
|
+
"version": "2"
|
|
290
290
|
},
|
|
291
291
|
"csharp": {
|
|
292
292
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAvailabilityZonesContextQuery availabilityZonesContextQuery = new AvailabilityZonesContextQuery {\n Account = \"account\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
|
|
@@ -336,7 +336,7 @@
|
|
|
336
336
|
"translations": {
|
|
337
337
|
"python": {
|
|
338
338
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\naws_cloud_formation_stack_properties = cloud_assembly_schema.AwsCloudFormationStackProperties(\n template_file=\"templateFile\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n cloud_formation_execution_role_arn=\"cloudFormationExecutionRoleArn\",\n lookup_role=cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n ),\n parameters={\n \"parameters_key\": \"parameters\"\n },\n requires_bootstrap_stack_version=123,\n stack_name=\"stackName\",\n stack_template_asset_object_url=\"stackTemplateAssetObjectUrl\",\n tags={\n \"tags_key\": \"tags\"\n },\n termination_protection=False,\n validate_on_synth=False\n)",
|
|
339
|
-
"version": "
|
|
339
|
+
"version": "2"
|
|
340
340
|
},
|
|
341
341
|
"csharp": {
|
|
342
342
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAwsCloudFormationStackProperties awsCloudFormationStackProperties = new AwsCloudFormationStackProperties {\n TemplateFile = \"templateFile\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n CloudFormationExecutionRoleArn = \"cloudFormationExecutionRoleArn\",\n LookupRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n },\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n RequiresBootstrapStackVersion = 123,\n StackName = \"stackName\",\n StackTemplateAssetObjectUrl = \"stackTemplateAssetObjectUrl\",\n Tags = new Dictionary<string, string> {\n { \"tagsKey\", \"tags\" }\n },\n TerminationProtection = false,\n ValidateOnSynth = false\n};",
|
|
@@ -389,7 +389,7 @@
|
|
|
389
389
|
"translations": {
|
|
390
390
|
"python": {
|
|
391
391
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\naws_destination = cloud_assembly_schema.AwsDestination(\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n)",
|
|
392
|
-
"version": "
|
|
392
|
+
"version": "2"
|
|
393
393
|
},
|
|
394
394
|
"csharp": {
|
|
395
395
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nAwsDestination awsDestination = new AwsDestination {\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n};",
|
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
"translations": {
|
|
440
440
|
"python": {
|
|
441
441
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nbootstrap_role = cloud_assembly_schema.BootstrapRole(\n arn=\"arn\",\n\n # the properties below are optional\n assume_role_external_id=\"assumeRoleExternalId\",\n bootstrap_stack_version_ssm_parameter=\"bootstrapStackVersionSsmParameter\",\n requires_bootstrap_stack_version=123\n)",
|
|
442
|
-
"version": "
|
|
442
|
+
"version": "2"
|
|
443
443
|
},
|
|
444
444
|
"csharp": {
|
|
445
445
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nBootstrapRole bootstrapRole = new BootstrapRole {\n Arn = \"arn\",\n\n // the properties below are optional\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n BootstrapStackVersionSsmParameter = \"bootstrapStackVersionSsmParameter\",\n RequiresBootstrapStackVersion = 123\n};",
|
|
@@ -486,22 +486,22 @@
|
|
|
486
486
|
},
|
|
487
487
|
"fqnsFingerprint": "3b7fe1842f0cc0f13ad1684247b5b04a45b80ce59b32df4f294894aeb087781b"
|
|
488
488
|
},
|
|
489
|
-
"
|
|
489
|
+
"8f7e2b076b4d344fbaa2cffd1d4b6826a6b768f06ff4f268b7962397ae513f96": {
|
|
490
490
|
"translations": {
|
|
491
491
|
"python": {
|
|
492
|
-
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ncontainer_image_asset_metadata_entry = cloud_assembly_schema.ContainerImageAssetMetadataEntry(\n id=\"id\",\n packaging=\"packaging\",\n path=\"path\",\n source_hash=\"sourceHash\",\n\n # the properties below are optional\n build_args={\n \"build_args_key\": \"buildArgs\"\n },\n file=\"file\",\n image_name_parameter=\"imageNameParameter\",\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n target=\"target\"\n)",
|
|
493
|
-
"version": "
|
|
492
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ncontainer_image_asset_metadata_entry = cloud_assembly_schema.ContainerImageAssetMetadataEntry(\n id=\"id\",\n packaging=\"packaging\",\n path=\"path\",\n source_hash=\"sourceHash\",\n\n # the properties below are optional\n build_args={\n \"build_args_key\": \"buildArgs\"\n },\n file=\"file\",\n image_name_parameter=\"imageNameParameter\",\n image_tag=\"imageTag\",\n network_mode=\"networkMode\",\n repository_name=\"repositoryName\",\n target=\"target\"\n)",
|
|
493
|
+
"version": "2"
|
|
494
494
|
},
|
|
495
495
|
"csharp": {
|
|
496
|
-
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nContainerImageAssetMetadataEntry containerImageAssetMetadataEntry = new ContainerImageAssetMetadataEntry {\n Id = \"id\",\n Packaging = \"packaging\",\n Path = \"path\",\n SourceHash = \"sourceHash\",\n\n // the properties below are optional\n BuildArgs = new Dictionary<string, string> {\n { \"buildArgsKey\", \"buildArgs\" }\n },\n File = \"file\",\n ImageNameParameter = \"imageNameParameter\",\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n Target = \"target\"\n};",
|
|
496
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nContainerImageAssetMetadataEntry containerImageAssetMetadataEntry = new ContainerImageAssetMetadataEntry {\n Id = \"id\",\n Packaging = \"packaging\",\n Path = \"path\",\n SourceHash = \"sourceHash\",\n\n // the properties below are optional\n BuildArgs = new Dictionary<string, string> {\n { \"buildArgsKey\", \"buildArgs\" }\n },\n File = \"file\",\n ImageNameParameter = \"imageNameParameter\",\n ImageTag = \"imageTag\",\n NetworkMode = \"networkMode\",\n RepositoryName = \"repositoryName\",\n Target = \"target\"\n};",
|
|
497
497
|
"version": "1"
|
|
498
498
|
},
|
|
499
499
|
"java": {
|
|
500
|
-
"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 .repositoryName(\"repositoryName\")\n .target(\"target\")\n .build();",
|
|
500
|
+
"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
501
|
"version": "1"
|
|
502
502
|
},
|
|
503
503
|
"$": {
|
|
504
|
-
"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 repositoryName: 'repositoryName',\n target: 'target',\n};",
|
|
504
|
+
"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
505
|
"version": "0"
|
|
506
506
|
}
|
|
507
507
|
},
|
|
@@ -518,10 +518,10 @@
|
|
|
518
518
|
"fqnsReferenced": [
|
|
519
519
|
"@aws-cdk/cloud-assembly-schema.ContainerImageAssetMetadataEntry"
|
|
520
520
|
],
|
|
521
|
-
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst containerImageAssetMetadataEntry: cloud_assembly_schema.ContainerImageAssetMetadataEntry = {\n id: 'id',\n packaging: 'packaging',\n path: 'path',\n sourceHash: 'sourceHash',\n\n // the properties below are optional\n buildArgs: {\n buildArgsKey: 'buildArgs',\n },\n file: 'file',\n imageNameParameter: 'imageNameParameter',\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n target: 'target',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
521
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst containerImageAssetMetadataEntry: cloud_assembly_schema.ContainerImageAssetMetadataEntry = {\n id: 'id',\n packaging: 'packaging',\n path: 'path',\n sourceHash: 'sourceHash',\n\n // the properties below are optional\n buildArgs: {\n buildArgsKey: 'buildArgs',\n },\n file: 'file',\n imageNameParameter: 'imageNameParameter',\n imageTag: 'imageTag',\n networkMode: 'networkMode',\n repositoryName: 'repositoryName',\n target: 'target',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
522
522
|
"syntaxKindCounter": {
|
|
523
|
-
"10":
|
|
524
|
-
"75":
|
|
523
|
+
"10": 12,
|
|
524
|
+
"75": 16,
|
|
525
525
|
"153": 1,
|
|
526
526
|
"169": 1,
|
|
527
527
|
"193": 2,
|
|
@@ -531,27 +531,27 @@
|
|
|
531
531
|
"254": 1,
|
|
532
532
|
"255": 1,
|
|
533
533
|
"256": 1,
|
|
534
|
-
"281":
|
|
534
|
+
"281": 12,
|
|
535
535
|
"290": 1
|
|
536
536
|
},
|
|
537
|
-
"fqnsFingerprint": "
|
|
537
|
+
"fqnsFingerprint": "24a489bf1e77b25f5586308f2061ec7e9cdbfa0e142cd270d57fc56b6e9dc64d"
|
|
538
538
|
},
|
|
539
|
-
"
|
|
539
|
+
"13514bf756685ec4825817ac806f4a7510034d11baa93291d3d8749ecc9bc6e2": {
|
|
540
540
|
"translations": {
|
|
541
541
|
"python": {
|
|
542
|
-
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_asset = cloud_assembly_schema.DockerImageAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"]\n )\n)",
|
|
543
|
-
"version": "
|
|
542
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_asset = cloud_assembly_schema.DockerImageAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"],\n network_mode=\"networkMode\"\n )\n)",
|
|
543
|
+
"version": "2"
|
|
544
544
|
},
|
|
545
545
|
"csharp": {
|
|
546
|
-
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageAsset dockerImageAsset = new DockerImageAsset {\n Destinations = new Dictionary<string, DockerImageDestination> {\n { \"destinationsKey\", new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" }\n }\n};",
|
|
546
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageAsset dockerImageAsset = new DockerImageAsset {\n Destinations = new Dictionary<string, DockerImageDestination> {\n { \"destinationsKey\", new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" },\n NetworkMode = \"networkMode\"\n }\n};",
|
|
547
547
|
"version": "1"
|
|
548
548
|
},
|
|
549
549
|
"java": {
|
|
550
|
-
"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 .build())\n .build();",
|
|
550
|
+
"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
551
|
"version": "1"
|
|
552
552
|
},
|
|
553
553
|
"$": {
|
|
554
|
-
"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 },\n};",
|
|
554
|
+
"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
555
|
"version": "0"
|
|
556
556
|
}
|
|
557
557
|
},
|
|
@@ -570,10 +570,10 @@
|
|
|
570
570
|
"@aws-cdk/cloud-assembly-schema.DockerImageDestination",
|
|
571
571
|
"@aws-cdk/cloud-assembly-schema.DockerImageSource"
|
|
572
572
|
],
|
|
573
|
-
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageAsset: cloud_assembly_schema.DockerImageAsset = {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
573
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageAsset: cloud_assembly_schema.DockerImageAsset = {\n destinations: {\n destinationsKey: {\n imageTag: 'imageTag',\n repositoryName: 'repositoryName',\n\n // the properties below are optional\n assumeRoleArn: 'assumeRoleArn',\n assumeRoleExternalId: 'assumeRoleExternalId',\n region: 'region',\n },\n },\n source: {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n },\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
574
574
|
"syntaxKindCounter": {
|
|
575
|
-
"10":
|
|
576
|
-
"75":
|
|
575
|
+
"10": 12,
|
|
576
|
+
"75": 19,
|
|
577
577
|
"153": 1,
|
|
578
578
|
"169": 1,
|
|
579
579
|
"192": 1,
|
|
@@ -584,16 +584,16 @@
|
|
|
584
584
|
"254": 1,
|
|
585
585
|
"255": 1,
|
|
586
586
|
"256": 1,
|
|
587
|
-
"281":
|
|
587
|
+
"281": 15,
|
|
588
588
|
"290": 1
|
|
589
589
|
},
|
|
590
|
-
"fqnsFingerprint": "
|
|
590
|
+
"fqnsFingerprint": "cd7668ec20caebc3429cd02aadcee1b235511c02c467e738177ec3363609f597"
|
|
591
591
|
},
|
|
592
592
|
"3eceaa7485ff32425f456723bd17685f9967b2fd99d81dec3e5d5d4a319ceca7": {
|
|
593
593
|
"translations": {
|
|
594
594
|
"python": {
|
|
595
595
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_destination = cloud_assembly_schema.DockerImageDestination(\n image_tag=\"imageTag\",\n repository_name=\"repositoryName\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n)",
|
|
596
|
-
"version": "
|
|
596
|
+
"version": "2"
|
|
597
597
|
},
|
|
598
598
|
"csharp": {
|
|
599
599
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageDestination dockerImageDestination = new DockerImageDestination {\n ImageTag = \"imageTag\",\n RepositoryName = \"repositoryName\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n};",
|
|
@@ -639,22 +639,22 @@
|
|
|
639
639
|
},
|
|
640
640
|
"fqnsFingerprint": "74ca46abe27a67d74e65971a313c5675034ad3a7703423467a3ca0db3dba8568"
|
|
641
641
|
},
|
|
642
|
-
"
|
|
642
|
+
"3fc97b6f2fd582e233ddca867b3bbda48da9db940935286de08bc96be825b224": {
|
|
643
643
|
"translations": {
|
|
644
644
|
"python": {
|
|
645
|
-
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_source = cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"]\n)",
|
|
646
|
-
"version": "
|
|
645
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ndocker_image_source = cloud_assembly_schema.DockerImageSource(\n directory=\"directory\",\n docker_build_args={\n \"docker_build_args_key\": \"dockerBuildArgs\"\n },\n docker_build_target=\"dockerBuildTarget\",\n docker_file=\"dockerFile\",\n executable=[\"executable\"],\n network_mode=\"networkMode\"\n)",
|
|
646
|
+
"version": "2"
|
|
647
647
|
},
|
|
648
648
|
"csharp": {
|
|
649
|
-
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageSource dockerImageSource = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" }\n};",
|
|
649
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nDockerImageSource dockerImageSource = new DockerImageSource {\n Directory = \"directory\",\n DockerBuildArgs = new Dictionary<string, string> {\n { \"dockerBuildArgsKey\", \"dockerBuildArgs\" }\n },\n DockerBuildTarget = \"dockerBuildTarget\",\n DockerFile = \"dockerFile\",\n Executable = new [] { \"executable\" },\n NetworkMode = \"networkMode\"\n};",
|
|
650
650
|
"version": "1"
|
|
651
651
|
},
|
|
652
652
|
"java": {
|
|
653
|
-
"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 .build();",
|
|
653
|
+
"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
654
|
"version": "1"
|
|
655
655
|
},
|
|
656
656
|
"$": {
|
|
657
|
-
"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};",
|
|
657
|
+
"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
658
|
"version": "0"
|
|
659
659
|
}
|
|
660
660
|
},
|
|
@@ -671,10 +671,10 @@
|
|
|
671
671
|
"fqnsReferenced": [
|
|
672
672
|
"@aws-cdk/cloud-assembly-schema.DockerImageSource"
|
|
673
673
|
],
|
|
674
|
-
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageSource: cloud_assembly_schema.DockerImageSource = {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
674
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst dockerImageSource: cloud_assembly_schema.DockerImageSource = {\n directory: 'directory',\n dockerBuildArgs: {\n dockerBuildArgsKey: 'dockerBuildArgs',\n },\n dockerBuildTarget: 'dockerBuildTarget',\n dockerFile: 'dockerFile',\n executable: ['executable'],\n networkMode: 'networkMode',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
675
675
|
"syntaxKindCounter": {
|
|
676
|
-
"10":
|
|
677
|
-
"75":
|
|
676
|
+
"10": 7,
|
|
677
|
+
"75": 11,
|
|
678
678
|
"153": 1,
|
|
679
679
|
"169": 1,
|
|
680
680
|
"192": 1,
|
|
@@ -685,16 +685,16 @@
|
|
|
685
685
|
"254": 1,
|
|
686
686
|
"255": 1,
|
|
687
687
|
"256": 1,
|
|
688
|
-
"281":
|
|
688
|
+
"281": 7,
|
|
689
689
|
"290": 1
|
|
690
690
|
},
|
|
691
|
-
"fqnsFingerprint": "
|
|
691
|
+
"fqnsFingerprint": "179ff1e0b5761ca798c6708ca3a322c7e22138ddce2772c2e7f34693fd921278"
|
|
692
692
|
},
|
|
693
693
|
"d47b9785bf52ba93f36631c9ec90abc31b341035fc16b8ce1b605671d78ebf8e": {
|
|
694
694
|
"translations": {
|
|
695
695
|
"python": {
|
|
696
696
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nendpoint_service_availability_zones_context_query = cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery(\n account=\"account\",\n region=\"region\",\n service_name=\"serviceName\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
|
|
697
|
-
"version": "
|
|
697
|
+
"version": "2"
|
|
698
698
|
},
|
|
699
699
|
"csharp": {
|
|
700
700
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nEndpointServiceAvailabilityZonesContextQuery endpointServiceAvailabilityZonesContextQuery = new EndpointServiceAvailabilityZonesContextQuery {\n Account = \"account\",\n Region = \"region\",\n ServiceName = \"serviceName\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
|
|
@@ -744,7 +744,7 @@
|
|
|
744
744
|
"translations": {
|
|
745
745
|
"python": {
|
|
746
746
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_asset = cloud_assembly_schema.FileAsset(\n destinations={\n \"destinations_key\": cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n )\n },\n source=cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n )\n)",
|
|
747
|
-
"version": "
|
|
747
|
+
"version": "2"
|
|
748
748
|
},
|
|
749
749
|
"csharp": {
|
|
750
750
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileAsset fileAsset = new FileAsset {\n Destinations = new Dictionary<string, FileDestination> {\n { \"destinationsKey\", new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n } }\n },\n Source = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n }\n};",
|
|
@@ -800,7 +800,7 @@
|
|
|
800
800
|
"translations": {
|
|
801
801
|
"python": {
|
|
802
802
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_asset_metadata_entry = cloud_assembly_schema.FileAssetMetadataEntry(\n artifact_hash_parameter=\"artifactHashParameter\",\n id=\"id\",\n packaging=\"packaging\",\n path=\"path\",\n s3_bucket_parameter=\"s3BucketParameter\",\n s3_key_parameter=\"s3KeyParameter\",\n source_hash=\"sourceHash\"\n)",
|
|
803
|
-
"version": "
|
|
803
|
+
"version": "2"
|
|
804
804
|
},
|
|
805
805
|
"csharp": {
|
|
806
806
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileAssetMetadataEntry fileAssetMetadataEntry = new FileAssetMetadataEntry {\n ArtifactHashParameter = \"artifactHashParameter\",\n Id = \"id\",\n Packaging = \"packaging\",\n Path = \"path\",\n S3BucketParameter = \"s3BucketParameter\",\n S3KeyParameter = \"s3KeyParameter\",\n SourceHash = \"sourceHash\"\n};",
|
|
@@ -850,7 +850,7 @@
|
|
|
850
850
|
"translations": {
|
|
851
851
|
"python": {
|
|
852
852
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_destination = cloud_assembly_schema.FileDestination(\n bucket_name=\"bucketName\",\n object_key=\"objectKey\",\n\n # the properties below are optional\n assume_role_arn=\"assumeRoleArn\",\n assume_role_external_id=\"assumeRoleExternalId\",\n region=\"region\"\n)",
|
|
853
|
-
"version": "
|
|
853
|
+
"version": "2"
|
|
854
854
|
},
|
|
855
855
|
"csharp": {
|
|
856
856
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileDestination fileDestination = new FileDestination {\n BucketName = \"bucketName\",\n ObjectKey = \"objectKey\",\n\n // the properties below are optional\n AssumeRoleArn = \"assumeRoleArn\",\n AssumeRoleExternalId = \"assumeRoleExternalId\",\n Region = \"region\"\n};",
|
|
@@ -900,7 +900,7 @@
|
|
|
900
900
|
"translations": {
|
|
901
901
|
"python": {
|
|
902
902
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nfile_source = cloud_assembly_schema.FileSource(\n executable=[\"executable\"],\n packaging=cloud_assembly_schema.FileAssetPackaging.FILE,\n path=\"path\"\n)",
|
|
903
|
-
"version": "
|
|
903
|
+
"version": "2"
|
|
904
904
|
},
|
|
905
905
|
"csharp": {
|
|
906
906
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nFileSource fileSource = new FileSource {\n Executable = new [] { \"executable\" },\n Packaging = FileAssetPackaging.FILE,\n Path = \"path\"\n};",
|
|
@@ -954,7 +954,7 @@
|
|
|
954
954
|
"translations": {
|
|
955
955
|
"python": {
|
|
956
956
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nhosted_zone_context_query = cloud_assembly_schema.HostedZoneContextQuery(\n account=\"account\",\n domain_name=\"domainName\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n private_zone=False,\n vpc_id=\"vpcId\"\n)",
|
|
957
|
-
"version": "
|
|
957
|
+
"version": "2"
|
|
958
958
|
},
|
|
959
959
|
"csharp": {
|
|
960
960
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nHostedZoneContextQuery hostedZoneContextQuery = new HostedZoneContextQuery {\n Account = \"account\",\n DomainName = \"domainName\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n PrivateZone = false,\n VpcId = \"vpcId\"\n};",
|
|
@@ -1005,7 +1005,7 @@
|
|
|
1005
1005
|
"translations": {
|
|
1006
1006
|
"python": {
|
|
1007
1007
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nkey_context_query = cloud_assembly_schema.KeyContextQuery(\n account=\"account\",\n alias_name=\"aliasName\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
|
|
1008
|
-
"version": "
|
|
1008
|
+
"version": "2"
|
|
1009
1009
|
},
|
|
1010
1010
|
"csharp": {
|
|
1011
1011
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nKeyContextQuery keyContextQuery = new KeyContextQuery {\n Account = \"account\",\n AliasName = \"aliasName\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
|
|
@@ -1055,7 +1055,7 @@
|
|
|
1055
1055
|
"translations": {
|
|
1056
1056
|
"python": {
|
|
1057
1057
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_balancer_context_query = cloud_assembly_schema.LoadBalancerContextQuery(\n account=\"account\",\n load_balancer_type=cloud_assembly_schema.LoadBalancerType.NETWORK,\n region=\"region\",\n\n # the properties below are optional\n load_balancer_arn=\"loadBalancerArn\",\n load_balancer_tags=[cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n )],\n lookup_role_arn=\"lookupRoleArn\"\n)",
|
|
1058
|
-
"version": "
|
|
1058
|
+
"version": "2"
|
|
1059
1059
|
},
|
|
1060
1060
|
"csharp": {
|
|
1061
1061
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadBalancerContextQuery loadBalancerContextQuery = new LoadBalancerContextQuery {\n Account = \"account\",\n LoadBalancerType = LoadBalancerType.NETWORK,\n Region = \"region\",\n\n // the properties below are optional\n LoadBalancerArn = \"loadBalancerArn\",\n LoadBalancerTags = new [] { new Tag {\n Key = \"key\",\n Value = \"value\"\n } },\n LookupRoleArn = \"lookupRoleArn\"\n};",
|
|
@@ -1109,7 +1109,7 @@
|
|
|
1109
1109
|
"translations": {
|
|
1110
1110
|
"python": {
|
|
1111
1111
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_balancer_filter = cloud_assembly_schema.LoadBalancerFilter(\n load_balancer_type=cloud_assembly_schema.LoadBalancerType.NETWORK,\n\n # the properties below are optional\n load_balancer_arn=\"loadBalancerArn\",\n load_balancer_tags=[cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n )]\n)",
|
|
1112
|
-
"version": "
|
|
1112
|
+
"version": "2"
|
|
1113
1113
|
},
|
|
1114
1114
|
"csharp": {
|
|
1115
1115
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadBalancerFilter loadBalancerFilter = new LoadBalancerFilter {\n LoadBalancerType = LoadBalancerType.NETWORK,\n\n // the properties below are optional\n LoadBalancerArn = \"loadBalancerArn\",\n LoadBalancerTags = new [] { new Tag {\n Key = \"key\",\n Value = \"value\"\n } }\n};",
|
|
@@ -1163,7 +1163,7 @@
|
|
|
1163
1163
|
"translations": {
|
|
1164
1164
|
"python": {
|
|
1165
1165
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nload_balancer_listener_context_query = cloud_assembly_schema.LoadBalancerListenerContextQuery(\n account=\"account\",\n load_balancer_type=cloud_assembly_schema.LoadBalancerType.NETWORK,\n region=\"region\",\n\n # the properties below are optional\n listener_arn=\"listenerArn\",\n listener_port=123,\n listener_protocol=cloud_assembly_schema.LoadBalancerListenerProtocol.HTTP,\n load_balancer_arn=\"loadBalancerArn\",\n load_balancer_tags=[cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n )],\n lookup_role_arn=\"lookupRoleArn\"\n)",
|
|
1166
|
-
"version": "
|
|
1166
|
+
"version": "2"
|
|
1167
1167
|
},
|
|
1168
1168
|
"csharp": {
|
|
1169
1169
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nLoadBalancerListenerContextQuery loadBalancerListenerContextQuery = new LoadBalancerListenerContextQuery {\n Account = \"account\",\n LoadBalancerType = LoadBalancerType.NETWORK,\n Region = \"region\",\n\n // the properties below are optional\n ListenerArn = \"listenerArn\",\n ListenerPort = 123,\n ListenerProtocol = LoadBalancerListenerProtocol.HTTP,\n LoadBalancerArn = \"loadBalancerArn\",\n LoadBalancerTags = new [] { new Tag {\n Key = \"key\",\n Value = \"value\"\n } },\n LookupRoleArn = \"lookupRoleArn\"\n};",
|
|
@@ -1220,7 +1220,7 @@
|
|
|
1220
1220
|
"translations": {
|
|
1221
1221
|
"python": {
|
|
1222
1222
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nmetadata_entry = cloud_assembly_schema.MetadataEntry(\n type=\"type\",\n\n # the properties below are optional\n data=\"data\",\n trace=[\"trace\"]\n)",
|
|
1223
|
-
"version": "
|
|
1223
|
+
"version": "2"
|
|
1224
1224
|
},
|
|
1225
1225
|
"csharp": {
|
|
1226
1226
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nMetadataEntry metadataEntry = new MetadataEntry {\n Type = \"type\",\n\n // the properties below are optional\n Data = \"data\",\n Trace = new [] { \"trace\" }\n};",
|
|
@@ -1265,13 +1265,13 @@
|
|
|
1265
1265
|
"281": 3,
|
|
1266
1266
|
"290": 1
|
|
1267
1267
|
},
|
|
1268
|
-
"fqnsFingerprint": "
|
|
1268
|
+
"fqnsFingerprint": "0ef3a172862eaaf834ebf4301fa6ff1b1d4f0a4f34cd995c804b61032a66b546"
|
|
1269
1269
|
},
|
|
1270
1270
|
"d45096ab2fa854fa21866ba05726b072043c135cd833a8a74c547f2dd6848774": {
|
|
1271
1271
|
"translations": {
|
|
1272
1272
|
"python": {
|
|
1273
1273
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nmissing_context = cloud_assembly_schema.MissingContext(\n key=\"key\",\n props=cloud_assembly_schema.AmiContextQuery(\n account=\"account\",\n filters={\n \"filters_key\": [\"filters\"]\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n owners=[\"owners\"]\n ),\n provider=cloud_assembly_schema.ContextProvider.AMI_PROVIDER\n)",
|
|
1274
|
-
"version": "
|
|
1274
|
+
"version": "2"
|
|
1275
1275
|
},
|
|
1276
1276
|
"csharp": {
|
|
1277
1277
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nMissingContext missingContext = new MissingContext {\n Key = \"key\",\n Props = new AmiContextQuery {\n Account = \"account\",\n Filters = new Dictionary<string, string[]> {\n { \"filtersKey\", new [] { \"filters\" } }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n Owners = new [] { \"owners\" }\n },\n Provider = ContextProvider.AMI_PROVIDER\n};",
|
|
@@ -1319,13 +1319,13 @@
|
|
|
1319
1319
|
"281": 9,
|
|
1320
1320
|
"290": 1
|
|
1321
1321
|
},
|
|
1322
|
-
"fqnsFingerprint": "
|
|
1322
|
+
"fqnsFingerprint": "e1278ed7c25ed4966b1c67b46acd60ba543211490815d3eaad8717391eaa6e4a"
|
|
1323
1323
|
},
|
|
1324
1324
|
"c072d6aeb3761e717f260e268e9489c671d49c5238a894644e585339cd2cdb51": {
|
|
1325
1325
|
"translations": {
|
|
1326
1326
|
"python": {
|
|
1327
1327
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nnested_cloud_assembly_properties = cloud_assembly_schema.NestedCloudAssemblyProperties(\n directory_name=\"directoryName\",\n\n # the properties below are optional\n display_name=\"displayName\"\n)",
|
|
1328
|
-
"version": "
|
|
1328
|
+
"version": "2"
|
|
1329
1329
|
},
|
|
1330
1330
|
"csharp": {
|
|
1331
1331
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nNestedCloudAssemblyProperties nestedCloudAssemblyProperties = new NestedCloudAssemblyProperties {\n DirectoryName = \"directoryName\",\n\n // the properties below are optional\n DisplayName = \"displayName\"\n};",
|
|
@@ -1371,11 +1371,61 @@
|
|
|
1371
1371
|
},
|
|
1372
1372
|
"fqnsFingerprint": "a2173c283cb64060479843c115c8c666eb95500aea80726108661b7eab1c919d"
|
|
1373
1373
|
},
|
|
1374
|
+
"2285b026ede7cf814a4d6f18a11dd7394d2b253eecd4b8c6ec91f0b4cecfa6f3": {
|
|
1375
|
+
"translations": {
|
|
1376
|
+
"python": {
|
|
1377
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nplugin_context_query = cloud_assembly_schema.PluginContextQuery(\n plugin_name=\"pluginName\"\n)",
|
|
1378
|
+
"version": "2"
|
|
1379
|
+
},
|
|
1380
|
+
"csharp": {
|
|
1381
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nPluginContextQuery pluginContextQuery = new PluginContextQuery {\n PluginName = \"pluginName\"\n};",
|
|
1382
|
+
"version": "1"
|
|
1383
|
+
},
|
|
1384
|
+
"java": {
|
|
1385
|
+
"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();",
|
|
1386
|
+
"version": "1"
|
|
1387
|
+
},
|
|
1388
|
+
"$": {
|
|
1389
|
+
"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};",
|
|
1390
|
+
"version": "0"
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
"location": {
|
|
1394
|
+
"api": {
|
|
1395
|
+
"api": "type",
|
|
1396
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.PluginContextQuery"
|
|
1397
|
+
},
|
|
1398
|
+
"field": {
|
|
1399
|
+
"field": "example"
|
|
1400
|
+
}
|
|
1401
|
+
},
|
|
1402
|
+
"didCompile": true,
|
|
1403
|
+
"fqnsReferenced": [
|
|
1404
|
+
"@aws-cdk/cloud-assembly-schema.PluginContextQuery"
|
|
1405
|
+
],
|
|
1406
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst pluginContextQuery: cloud_assembly_schema.PluginContextQuery = {\n pluginName: 'pluginName',\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
1407
|
+
"syntaxKindCounter": {
|
|
1408
|
+
"10": 2,
|
|
1409
|
+
"75": 5,
|
|
1410
|
+
"153": 1,
|
|
1411
|
+
"169": 1,
|
|
1412
|
+
"193": 1,
|
|
1413
|
+
"225": 1,
|
|
1414
|
+
"242": 1,
|
|
1415
|
+
"243": 1,
|
|
1416
|
+
"254": 1,
|
|
1417
|
+
"255": 1,
|
|
1418
|
+
"256": 1,
|
|
1419
|
+
"281": 1,
|
|
1420
|
+
"290": 1
|
|
1421
|
+
},
|
|
1422
|
+
"fqnsFingerprint": "78d074e4d2b470a75f833cbc617f3e6d2667991e1805d63d741a9e7cc7fdf8fe"
|
|
1423
|
+
},
|
|
1374
1424
|
"e327fc98591a1ca4bf6867147aeb8b7a1d27221cb2c89501caa802b5a19cd818": {
|
|
1375
1425
|
"translations": {
|
|
1376
1426
|
"python": {
|
|
1377
1427
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nruntime_info = cloud_assembly_schema.RuntimeInfo(\n libraries={\n \"libraries_key\": \"libraries\"\n }\n)",
|
|
1378
|
-
"version": "
|
|
1428
|
+
"version": "2"
|
|
1379
1429
|
},
|
|
1380
1430
|
"csharp": {
|
|
1381
1431
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nRuntimeInfo runtimeInfo = new RuntimeInfo {\n Libraries = new Dictionary<string, string> {\n { \"librariesKey\", \"libraries\" }\n }\n};",
|
|
@@ -1425,7 +1475,7 @@
|
|
|
1425
1475
|
"translations": {
|
|
1426
1476
|
"python": {
|
|
1427
1477
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ns_sMParameter_context_query = cloud_assembly_schema.SSMParameterContextQuery(\n account=\"account\",\n parameter_name=\"parameterName\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\"\n)",
|
|
1428
|
-
"version": "
|
|
1478
|
+
"version": "2"
|
|
1429
1479
|
},
|
|
1430
1480
|
"csharp": {
|
|
1431
1481
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nSSMParameterContextQuery sSMParameterContextQuery = new SSMParameterContextQuery {\n Account = \"account\",\n ParameterName = \"parameterName\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\"\n};",
|
|
@@ -1475,7 +1525,7 @@
|
|
|
1475
1525
|
"translations": {
|
|
1476
1526
|
"python": {
|
|
1477
1527
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nsecurity_group_context_query = cloud_assembly_schema.SecurityGroupContextQuery(\n account=\"account\",\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n security_group_id=\"securityGroupId\",\n security_group_name=\"securityGroupName\",\n vpc_id=\"vpcId\"\n)",
|
|
1478
|
-
"version": "
|
|
1528
|
+
"version": "2"
|
|
1479
1529
|
},
|
|
1480
1530
|
"csharp": {
|
|
1481
1531
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nSecurityGroupContextQuery securityGroupContextQuery = new SecurityGroupContextQuery {\n Account = \"account\",\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n SecurityGroupId = \"securityGroupId\",\n SecurityGroupName = \"securityGroupName\",\n VpcId = \"vpcId\"\n};",
|
|
@@ -1525,7 +1575,7 @@
|
|
|
1525
1575
|
"translations": {
|
|
1526
1576
|
"python": {
|
|
1527
1577
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntag = cloud_assembly_schema.Tag(\n key=\"key\",\n value=\"value\"\n)",
|
|
1528
|
-
"version": "
|
|
1578
|
+
"version": "2"
|
|
1529
1579
|
},
|
|
1530
1580
|
"csharp": {
|
|
1531
1581
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTag tag = new Tag {\n Key = \"key\",\n Value = \"value\"\n};",
|
|
@@ -1575,7 +1625,7 @@
|
|
|
1575
1625
|
"translations": {
|
|
1576
1626
|
"python": {
|
|
1577
1627
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntree_artifact_properties = cloud_assembly_schema.TreeArtifactProperties(\n file=\"file\"\n)",
|
|
1578
|
-
"version": "
|
|
1628
|
+
"version": "2"
|
|
1579
1629
|
},
|
|
1580
1630
|
"csharp": {
|
|
1581
1631
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTreeArtifactProperties treeArtifactProperties = new TreeArtifactProperties {\n File = \"file\"\n};",
|
|
@@ -1625,7 +1675,7 @@
|
|
|
1625
1675
|
"translations": {
|
|
1626
1676
|
"python": {
|
|
1627
1677
|
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\nvpc_context_query = cloud_assembly_schema.VpcContextQuery(\n account=\"account\",\n filter={\n \"filter_key\": \"filter\"\n },\n region=\"region\",\n\n # the properties below are optional\n lookup_role_arn=\"lookupRoleArn\",\n return_asymmetric_subnets=False,\n subnet_group_name_tag=\"subnetGroupNameTag\"\n)",
|
|
1628
|
-
"version": "
|
|
1678
|
+
"version": "2"
|
|
1629
1679
|
},
|
|
1630
1680
|
"csharp": {
|
|
1631
1681
|
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nVpcContextQuery vpcContextQuery = new VpcContextQuery {\n Account = \"account\",\n Filter = new Dictionary<string, string> {\n { \"filterKey\", \"filter\" }\n },\n Region = \"region\",\n\n // the properties below are optional\n LookupRoleArn = \"lookupRoleArn\",\n ReturnAsymmetricSubnets = false,\n SubnetGroupNameTag = \"subnetGroupNameTag\"\n};",
|