From 6741b74ef94c5255094de2da9763f96228975663 Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Sun, 14 May 2023 17:30:56 +0200 Subject: [PATCH] resolves #1543 add default theme and latest version of oracle, aws and azure themes --- .../io/kroki/server/service/Structurizr.java | 172 +- ...on => amazon-web-services-2020.04.30.json} | 2 +- .../amazon-web-services-2022.04.30.json | 3930 +++++++++++++++ .../amazon-web-services-2023.01.31.json | 4460 +++++++++++++++++ .../main/resources/structurizr/default.json | 27 + ...e.json => microsoft-azure-2021.01.26.json} | 0 .../microsoft-azure-2023.01.24.json | 2530 ++++++++++ ...acle-cloud-infrastructure-2021.04.30.json} | 0 ...racle-cloud-infrastructure-2023.04.01.json | 1080 ++++ .../resources/gettingstarted.expected.svg | 2 +- 10 files changed, 12124 insertions(+), 79 deletions(-) rename server/src/main/resources/structurizr/{amazon-web-services.json => amazon-web-services-2020.04.30.json} (99%) create mode 100644 server/src/main/resources/structurizr/amazon-web-services-2022.04.30.json create mode 100644 server/src/main/resources/structurizr/amazon-web-services-2023.01.31.json create mode 100644 server/src/main/resources/structurizr/default.json rename server/src/main/resources/structurizr/{microsoft-azure.json => microsoft-azure-2021.01.26.json} (100%) create mode 100644 server/src/main/resources/structurizr/microsoft-azure-2023.01.24.json rename server/src/main/resources/structurizr/{oracle-cloud-infrastructure.json => oracle-cloud-infrastructure-2021.04.30.json} (100%) create mode 100644 server/src/main/resources/structurizr/oracle-cloud-infrastructure-2023.04.01.json diff --git a/server/src/main/java/io/kroki/server/service/Structurizr.java b/server/src/main/java/io/kroki/server/service/Structurizr.java index 32dff0b17..46b731f85 100644 --- a/server/src/main/java/io/kroki/server/service/Structurizr.java +++ b/server/src/main/java/io/kroki/server/service/Structurizr.java @@ -4,19 +4,7 @@ import com.structurizr.dsl.StructurizrDslParserException; import com.structurizr.export.Diagram; import com.structurizr.export.plantuml.StructurizrPlantUMLExporter; -import com.structurizr.view.Border; -import com.structurizr.view.ComponentView; -import com.structurizr.view.ContainerView; -import com.structurizr.view.DeploymentView; -import com.structurizr.view.DynamicView; -import com.structurizr.view.ElementStyle; -import com.structurizr.view.RelationshipStyle; -import com.structurizr.view.Shape; -import com.structurizr.view.SystemContextView; -import com.structurizr.view.SystemLandscapeView; -import com.structurizr.view.View; -import com.structurizr.view.ViewSet; -import io.kroki.server.action.Commander; +import com.structurizr.view.*; import io.kroki.server.decode.DiagramSource; import io.kroki.server.decode.SourceDecoder; import io.kroki.server.error.BadRequestException; @@ -34,13 +22,7 @@ import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; +import java.util.*; import java.util.stream.Collectors; public class Structurizr implements DiagramService { @@ -53,11 +35,16 @@ public class Structurizr implements DiagramService { // same as PlantUML since we convert Structurizr DSL to PlantUML private static final List SUPPORTED_FORMATS = Arrays.asList(FileFormat.PNG, FileFormat.SVG, FileFormat.PDF, FileFormat.BASE64, FileFormat.TXT, FileFormat.UTXT); - private static final String aws = read("structurizr/amazon-web-services.json"); - private static final String gcp = read("structurizr/google-cloud-platform.json"); - private static final String k8s = read("structurizr/kubernetes.json"); - private static final String azure = read("structurizr/microsoft-azure.json"); - private static final String oracleCloud = read("structurizr/oracle-cloud-infrastructure.json"); + private static final StructurizrTheme defaultTheme = readTheme("structurizr/default.json"); + private static final StructurizrTheme awsTheme2020 = readTheme("structurizr/amazon-web-services-2020.04.30.json"); + private static final StructurizrTheme awsTheme2022 = readTheme("structurizr/amazon-web-services-2022.04.30.json"); + private static final StructurizrTheme awsTheme2023 = readTheme("structurizr/amazon-web-services-2023.01.31.json"); + private static final StructurizrTheme gcpTheme = readTheme("structurizr/google-cloud-platform.json"); + private static final StructurizrTheme k8sTheme = readTheme("structurizr/kubernetes.json"); + private static final StructurizrTheme azureTheme2021 = readTheme("structurizr/microsoft-azure-2021.01.26.json"); + private static final StructurizrTheme azureTheme2023 = readTheme("structurizr/microsoft-azure-2023.01.24.json"); + private static final StructurizrTheme oracleCloudTheme2021 = readTheme("structurizr/oracle-cloud-infrastructure-2021.04.30.json"); + private static final StructurizrTheme oracleCloudTheme2023 = readTheme("structurizr/oracle-cloud-infrastructure-2023.04.01.json"); public Structurizr(Vertx vertx, JsonObject config) { this.vertx = vertx; @@ -121,10 +108,12 @@ static byte[] convert(String source, FileFormat fileFormat, PlantumlCommand plan } for (String url : viewSet.getConfiguration().getThemes()) { if (url.startsWith("https://static.structurizr.com/themes/")) { - String themeContent = getThemeContent(url); - if (themeContent != null) { - applyTheme(viewSet, themeContent); + StructurizrTheme theme = getThemeContent(url); + if (theme != null) { + applyTheme(viewSet, theme); } + } else if (url.equalsIgnoreCase("default")) { + applyTheme(viewSet, defaultTheme); } } final Diagram diagram; @@ -160,23 +149,82 @@ private byte[] convert(String source, FileFormat fileFormat, JsonObject options) return convert(source, fileFormat, this.plantumlCommand, this.structurizrPlantUMLExporter, options); } - private static void applyTheme(ViewSet viewSet, String themeContent) { - Object value = Json.decodeValue(themeContent); - if (value instanceof JsonObject) { - List elementStyles = getElementStyles((JsonObject) value); - for (ElementStyle elementStyle : elementStyles) { - viewSet.getConfiguration().getStyles().add(elementStyle); + private static void applyTheme(ViewSet viewSet, StructurizrTheme theme) { + List elementStyles = theme.getElementStyles(); + for (ElementStyle elementStyle : elementStyles) { + viewSet.getConfiguration().getStyles().add(elementStyle); + } + List relationshipStyles = theme.getRelationshipStyle(); + for (RelationshipStyle relationshipStyle : relationshipStyles) { + viewSet.getConfiguration().getStyles().add(relationshipStyle); + } + } + + private static StructurizrTheme getThemeContent(String url) { + if (url.contains("default")) { + return defaultTheme; + } + if (url.contains("amazon-web-services-2020.04.30")) { + return awsTheme2020; + } + if (url.contains("amazon-web-services-2022.04.30")) { + return awsTheme2022; + } + if (url.contains("amazon-web-services")) { + // default, latest version 2023.01.30 + return awsTheme2023; + } + if (url.contains("google-cloud-platform")) { + return gcpTheme; + } + if (url.contains("kubernetes")) { + return k8sTheme; + } + if (url.contains("microsoft-azure-2021.01.26")) { + return azureTheme2021; + } + if (url.contains("microsoft-azure")) { + // default, latest version 2023.01.24 + return azureTheme2023; + } + if (url.contains("oracle-cloud-infrastructure-2021.04.30")) { + return oracleCloudTheme2021; + } + if (url.contains("oracle-cloud-infrastructure")) { + // default, latest version 2023.04.01 + return oracleCloudTheme2023; + } + return null; + } + + private static StructurizrTheme readTheme(String resource) { + InputStream input = Thread.currentThread().getContextClassLoader().getResourceAsStream(resource); + try { + if (input == null) { + throw new IOException("Unable to get resource: " + resource); } - List relationshipStyles = getRelationshipStyle((JsonObject) value); - for (RelationshipStyle relationshipStyle : relationshipStyles) { - viewSet.getConfiguration().getStyles().add(relationshipStyle); + try (BufferedReader buffer = new BufferedReader(new InputStreamReader(input))) { + String content = buffer.lines().collect(Collectors.joining("\n")); + try { + JsonObject object = (JsonObject) Json.decodeValue(content); + return new StructurizrTheme(object); + } catch (io.vertx.core.json.DecodeException e) { + throw new RuntimeException("Unable to initialize the Structurizr service", e); + } } + } catch (IOException e) { + throw new RuntimeException("Unable to initialize the Structurizr service", e); } } +} + +class StructurizrTheme { + + private final List elementStyles; - private static List getElementStyles(JsonObject value) { - List result = new ArrayList<>(); - Object elementsObject = value.getValue("elements"); + public StructurizrTheme(JsonObject object) { + this.elementStyles = new ArrayList<>(); + Object elementsObject = object.getValue("elements"); if (elementsObject instanceof JsonArray) { for (Object elementObject : ((JsonArray) elementsObject).getList()) { if (elementObject instanceof Map) { @@ -190,59 +238,29 @@ private static List getElementStyles(JsonObject value) { element.getInteger("fontSize") ); elementStyle.setBorder(getBorder(element)); - elementStyle.setStroke(element.getString("stroke")); + elementStyle.setStroke(element.getString("stroke", "#000000")); // remind: cannot pass a null value elementStyle.setShape(getShape(element)); elementStyle.setIcon(element.getString("icon")); elementStyle.setOpacity(element.getInteger("opacity")); elementStyle.setMetadata(element.getBoolean("metadata")); elementStyle.setDescription(element.getBoolean("description")); - result.add(elementStyle); + this.elementStyles.add(elementStyle); } } } - return result; } - private static String getThemeContent(String url) { - if (url.contains("amazon-web-services")) { - return aws; - } - if (url.contains("google-cloud-platform")) { - return gcp; - } - if (url.contains("kubernetes")) { - return k8s; - } - if (url.contains("microsoft-azure")) { - return azure; - } - if (url.contains("oracle-cloud-infrastructure")) { - return oracleCloud; - } - return null; + public List getElementStyles() { + return elementStyles; } - private static List getRelationshipStyle(JsonObject value) { + public List getRelationshipStyle() { List result = new ArrayList<>(); // remind: RelationshipStyle does not have a public constructor, as a result, we cannot instantiate it. return result; } - private static String read(String resource) { - InputStream input = Thread.currentThread().getContextClassLoader().getResourceAsStream(resource); - try { - if (input == null) { - throw new IOException("Unable to get resource: " + resource); - } - try (BufferedReader buffer = new BufferedReader(new InputStreamReader(input))) { - return buffer.lines().collect(Collectors.joining("\n")); - } - } catch (IOException e) { - throw new RuntimeException("Unable to initialize the Structurizr service", e); - } - } - - private static Shape getShape(JsonObject element) { + private Shape getShape(JsonObject element) { String shapeValue = element.getString("shape"); if (shapeValue == null) { return null; @@ -255,7 +273,7 @@ private static Shape getShape(JsonObject element) { } } - private static Border getBorder(JsonObject element) { + private Border getBorder(JsonObject element) { String borderValue = element.getString("border"); if (borderValue == null) { return null; diff --git a/server/src/main/resources/structurizr/amazon-web-services.json b/server/src/main/resources/structurizr/amazon-web-services-2020.04.30.json similarity index 99% rename from server/src/main/resources/structurizr/amazon-web-services.json rename to server/src/main/resources/structurizr/amazon-web-services-2020.04.30.json index 3b92759b4..f8cff3806 100644 --- a/server/src/main/resources/structurizr/amazon-web-services.json +++ b/server/src/main/resources/structurizr/amazon-web-services-2020.04.30.json @@ -1822,4 +1822,4 @@ "color" : "#d86613", "icon" : "https://static.structurizr.com/themes/amazon-web-services-2020.04.30/Spot-fleet_light-bg@4x.png" } ] -} \ No newline at end of file +} diff --git a/server/src/main/resources/structurizr/amazon-web-services-2022.04.30.json b/server/src/main/resources/structurizr/amazon-web-services-2022.04.30.json new file mode 100644 index 000000000..1825cf154 --- /dev/null +++ b/server/src/main/resources/structurizr/amazon-web-services-2022.04.30.json @@ -0,0 +1,3930 @@ +{ + "name" : "Amazon Web Services", + "description" : "This theme includes element styles with icons for each of the AWS services, based upon the AWS Architecture Icons (https://aws.amazon.com/architecture/icons/).", + "elements" : [ { + "tag" : "Amazon Web Services - Route 53 Application Recovery Controller", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Application-Recovery-Controller_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Standard Infrequent Access Table Class", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Standard-Infrequent-Access-Table-Class_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5n", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EC2-M5n_48.png" + }, { + "tag" : "Amazon Web Services - Detective", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Detective_48.png" + }, { + "tag" : "Amazon Web Services - VPC Network Access Control List", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Network-Access-Control-List_48_Light.png" + }, { + "tag" : "Amazon Web Services - Personal Health Dashboard", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Personal-Health-Dashboard_48.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service Email Notification", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Notification-Service_Email-Notification_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Echo", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Echo_48_Light.png" + }, { + "tag" : "Amazon Web Services - ThinkBox Deadline", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ThinkBox-Deadline_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M5d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M5d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Metrics Insights", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Metrics-Insights_48_Light.png" + }, { + "tag" : "Amazon Web Services - Shield", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Shield_48.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Performance", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Trusted-Advisor_Checklist-Performance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Deployments", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Deployments_48_Light.png" + }, { + "tag" : "Amazon Web Services - FreeRTOS", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_FreeRTOS_48.png" + }, { + "tag" : "Amazon Web Services - EC2 T2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_T2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Network Firewall", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Network-Firewall_48.png" + }, { + "tag" : "Amazon Web Services - CloudSearch", + "stroke" : "#7746d3", + "color" : "#7746d3", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-CloudSearch_48.png" + }, { + "tag" : "Amazon Web Services - AWS License Manager Application Discovery", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-License-Manager_Application-Discovery_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Component_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Amazon Aurora Instance alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora_Amazon-Aurora-Instance-alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Inspector", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Inspector_48.png" + }, { + "tag" : "Amazon Web Services - Cloud WAN", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cloud-WAN_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Application Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Elastic-Load-Balancing_Application-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - GameSparks", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-GameSparks_48.png" + }, { + "tag" : "Amazon Web Services - CodeArtifact", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CodeArtifact_48.png" + }, { + "tag" : "Amazon Web Services - Macie", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Macie_48.png" + }, { + "tag" : "Amazon Web Services - Connect", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Connect_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Sailboat ", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Sailboat _48_Light.png" + }, { + "tag" : "Amazon Web Services - Firewall Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Firewall-Manager_48.png" + }, { + "tag" : "Amazon Web Services - EC2 VT1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_VT1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Workflows for Apache Airflow", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Managed-Workflows-for-Apache-Airflow_48.png" + }, { + "tag" : "Amazon Web Services - Elemental Link", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-Link_48.png" + }, { + "tag" : "Amazon Web Services - AWS License Manager License Blending", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-License-Manager_License-Blending_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Private", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Component-Private_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodePipeline", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CodePipeline_48.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Resources", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Resources_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Resolver", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Resolver_48_Light.png" + }, { + "tag" : "Amazon Web Services - Rekognition", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Rekognition_48.png" + }, { + "tag" : "Amazon Web Services - EKS Distro", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EKS-Distro_48.png" + }, { + "tag" : "Amazon Web Services - EC2 D3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_D3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Artifact", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Artifact_48.png" + }, { + "tag" : "Amazon Web Services - Forecast", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Forecast_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT HTTP Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-HTTP_Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - API Gateway Endpoint", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-API-Gateway_Endpoint_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service General Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_General-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Amplify AWS Amplify Studio", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Amplify_AWS-Amplify-Studio_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Directory Service AWS Managed Microsoft AD", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Directory-Service_AWS-Managed-Microsoft-AD_48_Light.png" + }, { + "tag" : "Amazon Web Services - Control Tower", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Control-Tower_48.png" + }, { + "tag" : "Amazon Web Services - ThinkBox Stoke", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ThinkBox-Stoke_48.png" + }, { + "tag" : "Amazon Web Services - Managed Blockchain Blockchain", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Managed-Blockchain_Blockchain_48_Light.png" + }, { + "tag" : "Amazon Web Services - Storage Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Storage-Gateway_48.png" + }, { + "tag" : "Amazon Web Services - Question", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Question_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Glacier Archive", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service-Glacier_Archive_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Amazon DynamoDB Accelerator", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Amazon-DynamoDB-Accelerator_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Router", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Router_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 P4d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_P4d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Containers", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Containers_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Copilot CLI", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_Copilot-CLI_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Shadow", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Shadow_48_Light.png" + }, { + "tag" : "Amazon Web Services - Identity and Access Management", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Identity-and-Access-Management_48.png" + }, { + "tag" : "Amazon Web Services - Rekognition Video", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Rekognition_Video_48_Light.png" + }, { + "tag" : "Amazon Web Services - NICE DCV", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_NICE-DCV_48.png" + }, { + "tag" : "Amazon Web Services - Traditional server", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Traditional-server_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Classic Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Elastic-Load-Balancing_Classic-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - Command Line Interface", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Command-Line-Interface_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch RUM", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_RUM_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Auto Scaling", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Auto-Scaling_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Certificate Manager Certificate Authority", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Certificate-Manager_Certificate-Authority_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Gateway Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Elastic-Load-Balancing_Gateway-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - EMR HDFS Cluster", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EMR_HDFS-Cluster_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Desired State", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Desired-State_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Public", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Component-Public_48_Light.png" + }, { + "tag" : "Amazon Web Services - Amazon API Gateway", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-API-Gateway_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Data Encryption Key", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Data-Encryption-Key_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Task", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_Task_48_Light.png" + }, { + "tag" : "Amazon Web Services - Augmented AI A2I", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Augmented-AI-A2I_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Canvas", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-SageMaker_Canvas_48_Light.png" + }, { + "tag" : "Amazon Web Services - SAML token", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_SAML-token_48_Light.png" + }, { + "tag" : "Amazon Web Services - Glue Elastic Views", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Glue-Elastic-Views_48.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway File Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_File-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Database Migration Service Database migration workflow job", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Database-Migration-Service_Database-migration-workflow-job_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 1", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Simulator-1_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS CloudFormation Stack", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-CloudFormation_Stack_48_Light.png" + }, { + "tag" : "Amazon Web Services - Reserved Instance Reporting", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Reserved-Instance-Reporting_48.png" + }, { + "tag" : "Amazon Web Services - Redshift ML", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Redshift_ML_48_Light.png" + }, { + "tag" : "Amazon Web Services - HealthLake", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-HealthLake_48.png" + }, { + "tag" : "Amazon Web Services - EC2 I3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_I3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - OpenSearch Service", + "stroke" : "#814ede", + "color" : "#814ede", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-OpenSearch-Service_48.png" + }, { + "tag" : "Amazon Web Services - Route 53 Readiness Checks", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Readiness-Checks_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Items", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Items_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Data Streams", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-SiteWise_Data-Streams_48_Light.png" + }, { + "tag" : "Amazon Web Services - Nitro Enclaves", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Nitro-Enclaves_48.png" + }, { + "tag" : "Amazon Web Services - Braket Chandelier", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Chandelier_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Peering Connection", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Peering-Connection_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Direct Connect Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Direct-Connect-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Segment Network", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-WAN_Segment-Network_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cost Explorer", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cost-Explorer_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Model", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-SageMaker_Model_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Device Defender IoT Device Jobs", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Device-Defender_IoT-Device-Jobs_48_Light.png" + }, { + "tag" : "Amazon Web Services - Redshift Dense Compute Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Redshift_Dense-Compute-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Site to Site VPN", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Site-to-Site-VPN_48.png" + }, { + "tag" : "Amazon Web Services - EC2 P2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_P2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Multimedia", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Multimedia_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Front End Web Mobile", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Front-End-Web-Mobile_48.png" + }, { + "tag" : "Amazon Web Services - EC2 G5g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_G5g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Toolkit", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Toolkit_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora PostgreSQL Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-PostgreSQL-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaConnect", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-MediaConnect_48.png" + }, { + "tag" : "Amazon Web Services - Ground Station", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Ground-Station_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Logs", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Logs_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Default Event Bus", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Default-Event-Bus_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lookout for Equipment", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Lookout-for-Equipment_48.png" + }, { + "tag" : "Amazon Web Services - Savings Plans", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Savings-Plans_48.png" + }, { + "tag" : "Amazon Web Services - Application Auto Scaling", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Application-Auto-Scaling_48.png" + }, { + "tag" : "Amazon Web Services - Location Service Place", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Location-Service_Place_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Instances", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Instances_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Directory Service Simple AD", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Directory-Service_Simple-AD_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R6g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R6g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Vibration Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Vibration-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - ECS Anywhere", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-ECS-Anywhere_48.png" + }, { + "tag" : "Amazon Web Services - EC2 X2gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_X2gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Well Architected Tool", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Well-Architected-Tool_48.png" + }, { + "tag" : "Amazon Web Services - IoT SiteWise", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-SiteWise_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Channel", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Analytics_Channel_48_Light.png" + }, { + "tag" : "Amazon Web Services - Auto Scaling", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Auto-Scaling_48.png" + }, { + "tag" : "Amazon Web Services - RDS", + "stroke" : "#3f51d4", + "color" : "#3f51d4", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-RDS_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Event Time Based", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Event-Time-Based_48_Light.png" + }, { + "tag" : "Amazon Web Services - Redshift", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Redshift_48.png" + }, { + "tag" : "Amazon Web Services - Category Serverless", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Serverless_48.png" + }, { + "tag" : "Amazon Web Services - ElastiCache", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-ElastiCache_48.png" + }, { + "tag" : "Amazon Web Services - EC2 G4ad Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_G4ad-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - QuickSight", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-QuickSight_48.png" + }, { + "tag" : "Amazon Web Services - Category Machine Learning", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Machine-Learning_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management AWS STS", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_AWS-STS_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service Track", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Location-Service_Track_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Intelligent Tiering", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Intelligent-Tiering_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Saas Partner Event", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Saas-Partner-Event_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Apps", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Apps_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Customer Enablement", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Customer-Enablement_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing FreeRTOS Device", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_FreeRTOS-Device_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Virtual Router", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-App-Mesh-Virtual-Router_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Cloud Extensions ROS", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-RoboMaker_Cloud-Extensions-ROS_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Glacier", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Simple-Storage-Service-Glacier_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup AWS Backup support for Amazon S3", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_AWS-Backup-support-for-Amazon-S3_48_Light.png" + }, { + "tag" : "Amazon Web Services - Data Pipeline", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Data-Pipeline_48.png" + }, { + "tag" : "Amazon Web Services - AWS Organizations Account", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Organizations_Account_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Amazon RDS Instance Aternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora_Amazon-RDS-Instance-Aternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Backup Vault", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Backup-Vault_48_Light.png" + }, { + "tag" : "Amazon Web Services - Private 5G", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Private-5G_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Synthetics", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Synthetics_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Mesh", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-App-Mesh-Mesh_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Long Term Security Credential", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Long-Term-Security-Credential_48_Light.png" + }, { + "tag" : "Amazon Web Services - AppSync", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-AppSync_48.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Virtual Service", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-App-Mesh-Virtual-Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Backup Restore", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Backup-Restore_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Run Command", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Run-Command_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cognito", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Cognito_48.png" + }, { + "tag" : "Amazon Web Services - WorkLink", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-WorkLink_48.png" + }, { + "tag" : "Amazon Web Services - IoT Things Graph", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Things-Graph_48.png" + }, { + "tag" : "Amazon Web Services - Gear", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Gear_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cloud Directory", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Cloud-Directory_48.png" + }, { + "tag" : "Amazon Web Services - CloudTrail", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CloudTrail_48.png" + }, { + "tag" : "Amazon Web Services - Backup", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Backup_48.png" + }, { + "tag" : "Amazon Web Services - Snowmobile", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Snowmobile_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Inf1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Inf1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Compute Optimizer", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Compute-Optimizer_48.png" + }, { + "tag" : "Amazon Web Services - Category Analytics", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Analytics_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Database", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Database_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management AWS IAM Access Analyzer", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_AWS-IAM-Access-Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5n", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EC2-R5n_48.png" + }, { + "tag" : "Amazon Web Services - Resource Access Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Resource-Access-Manager_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M5dn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M5dn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5b Instance ", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5b-Instance _48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C6g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C6g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Open 3D Engine", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Open-3D-Engine_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Studio Lab", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-SageMaker-Studio-Lab_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Network Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Elastic-Load-Balancing_Network-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Container-Service_48.png" + }, { + "tag" : "Amazon Web Services - Braket State Vector", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_State-Vector_48_Light.png" + }, { + "tag" : "Amazon Web Services - EMR", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EMR_48.png" + }, { + "tag" : "Amazon Web Services - Personalize", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Personalize_48.png" + }, { + "tag" : "Amazon Web Services - Category Compute", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Compute_48.png" + }, { + "tag" : "Amazon Web Services - Quantum Ledger Database", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Quantum-Ledger-Database_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thingbulb", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Lightbulb_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Backup Plan", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Backup-Plan_48_Light.png" + }, { + "tag" : "Amazon Web Services - Glue", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Glue_48.png" + }, { + "tag" : "Amazon Web Services - EC2 G3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_G3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Office building", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Office-building_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Policy", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Policy_48_Light.png" + }, { + "tag" : "Amazon Web Services - ElastiCache ElastiCache for Redis", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-ElastiCache_ElastiCache-for-Redis_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5n Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M5n-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing House", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_House_48_Light.png" + }, { + "tag" : "Amazon Web Services - Proton", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Proton_48.png" + }, { + "tag" : "Amazon Web Services - Textract", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Textract_48.png" + }, { + "tag" : "Amazon Web Services - Bottlerocket", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Bottlerocket_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Actuator", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Actuator_48_Light.png" + }, { + "tag" : "Amazon Web Services - Honeycode", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Honeycode_48.png" + }, { + "tag" : "Amazon Web Services - VPC Internet Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Internet-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Virtual Tape Library", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Virtual-Tape-Library_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Firewall", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Firewall_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Trusted-Advisor_Checklist_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Runtime", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Mainframe-Modernization_Runtime_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Proxy Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-RDS-Proxy-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Pinpoint APIs", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Pinpoint-APIs_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Artifact", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Artifact_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M6gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M6gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Events", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Events_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaStore", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-MediaStore_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Rule", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Chip", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Chip_48_Light.png" + }, { + "tag" : "Amazon Web Services - Sumerian", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Sumerian_48.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Analyzer", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Mainframe-Modernization_Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C7g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C7g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Schema", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Schema_48_Light.png" + }, { + "tag" : "Amazon Web Services - FSx for WFS", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-FSx-for-WFS_48.png" + }, { + "tag" : "Amazon Web Services - Route 53 Resolver DNS Firewall", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Resolver-DNS-Firewall_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Beanstalk", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elastic-Beanstalk_48.png" + }, { + "tag" : "Amazon Web Services - Signer", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Signer_48.png" + }, { + "tag" : "Amazon Web Services - Generic database", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Generic-database_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R6i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R6i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Global secondary index", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Global-secondary-index_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 G5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_G5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Device Defender", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Device-Defender_48.png" + }, { + "tag" : "Amazon Web Services - Pinpoint Journey", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Pinpoint_Journey_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Container 2", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_Container-2_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Directory Service AD Connector", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Directory-Service_AD-Connector_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 G4dn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_G4dn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Users", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Users_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 H1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_H1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 HMI Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_HMI-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora SQL Server Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-SQL-Server-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager State Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_State-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - Backint Agent", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Backint-Agent_48.png" + }, { + "tag" : "Amazon Web Services - DeepLens", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-DeepLens_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Temperature Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Temperature-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Spot Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Spot-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Attributes", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Attributes_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Amazon S3 File Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Amazon-S3-File-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Rule", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M1 Mac Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M1-Mac-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Travel", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Travel_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset Properties", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-SiteWise_Asset-Properties_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Registry", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Container-Registry_48.png" + }, { + "tag" : "Amazon Web Services - AWS Network Firewall Endpoints", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Network-Firewall_Endpoints_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS SFTP", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Transfer-Family_AWS-SFTP_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Thermostat", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Thermostat_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Virtual PoP", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-WAN_Virtual-PoP_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Volume Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Volume-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Core Network Edge", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-WAN_Core-Network-Edge_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Compute", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Compute_48_Light.png" + }, { + "tag" : "Amazon Web Services - PrivateLink", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-PrivateLink_48.png" + }, { + "tag" : "Amazon Web Services - AWS Migration Hub Refactor Spaces Services", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Migration-Hub_Refactor-Spaces-Services_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Services", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Managed-Services_48.png" + }, { + "tag" : "Amazon Web Services - Neptune", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Neptune_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Object", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_Object_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Machine Learning", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Component-Machine-Learning_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - Snowball Edge", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Snowball-Edge_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C6i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Distro for OpenTelemetry", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Distro-for-OpenTelemetry_48.png" + }, { + "tag" : "Amazon Web Services - App Mesh Virtual Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_App-Mesh_Virtual-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Forums", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Forums_48_Light.png" + }, { + "tag" : "Amazon Web Services - Rekognition Image", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Rekognition_Image_48_Light.png" + }, { + "tag" : "Amazon Web Services - Nimble Studio", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Nimble-Studio_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Temporary Security Credential", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Temporary-Security-Credential_48_Light.png" + }, { + "tag" : "Amazon Web Services - TorchServe", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_TorchServe_48.png" + }, { + "tag" : "Amazon Web Services - Internet alt1", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Internet-alt1_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Quantum Technologies", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Quantum-Technologies_48.png" + }, { + "tag" : "Amazon Web Services - IoT RoboRunner", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-RoboRunner_48.png" + }, { + "tag" : "Amazon Web Services - EC2 P4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_P4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Media Services", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Media-Services_48.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Alarm", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Alarm_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora MariaDB Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-MariaDB-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Fault Injection Simulator", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Fault-Injection-Simulator_48.png" + }, { + "tag" : "Amazon Web Services - EventBridge Custom Event Bus", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Custom-Event-Bus_48_Light.png" + }, { + "tag" : "Amazon Web Services - DeepRacer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-DeepRacer_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup AWS Backup Support for VMware Workloads", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_AWS-Backup-Support-for-VMware-Workloads_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Endpoints", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Endpoints_48_Light.png" + }, { + "tag" : "Amazon Web Services - IQ", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IQ_48.png" + }, { + "tag" : "Amazon Web Services - Resilience Hub", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Resilience-Hub_48.png" + }, { + "tag" : "Amazon Web Services - Red Hat OpenShift", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Red-Hat-OpenShift_48.png" + }, { + "tag" : "Amazon Web Services - EC2 AWS Inferentia", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_AWS-Inferentia_48_Light.png" + }, { + "tag" : "Amazon Web Services - Corretto", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Corretto_48.png" + }, { + "tag" : "Amazon Web Services - Inspector Agent", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Inspector_Agent_48_Light.png" + }, { + "tag" : "Amazon Web Services - Serverless Application Repository", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Serverless-Application-Repository_48.png" + }, { + "tag" : "Amazon Web Services - IoT TwinMaker", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-TwinMaker_48.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS FTPS", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Transfer-Family_AWS-FTPS_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Kubernetes Service", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Kubernetes-Service_48.png" + }, { + "tag" : "Amazon Web Services - Simple Email Service Email", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Email-Service_Email_48_Light.png" + }, { + "tag" : "Amazon Web Services - FinSpace", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-FinSpace_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service VPC Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_VPC-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Routing Controls", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Routing-Controls_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Apache MXNet on AWS", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Apache-MXNet-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - Redshift Dense Storage Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Redshift_Dense-Storage-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Glacier Deep Archive", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Glacier-Deep-Archive_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Server", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-Server_48.png" + }, { + "tag" : "Amazon Web Services - Professional Services", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Professional-Services_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Fabric Adapter", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Elastic-Fabric-Adapter_48.png" + }, { + "tag" : "Amazon Web Services - WAF", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-WAF_48.png" + }, { + "tag" : "Amazon Web Services - GuardDuty", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-GuardDuty_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront Download Distribution", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudFront_Download-Distribution_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Recovery Point Objective", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Recovery-Point-Objective_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Door Lock", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Door-Lock_48_Light.png" + }, { + "tag" : "Amazon Web Services - GameLift", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-GameLift_48.png" + }, { + "tag" : "Amazon Web Services - RDS Multi AZ", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-RDS_Multi-AZ_48_Light.png" + }, { + "tag" : "Amazon Web Services - Fargate", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Fargate_48.png" + }, { + "tag" : "Amazon Web Services - Wavelength", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Wavelength_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Fire TV", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Fire_TV_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Oracle Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-Oracle-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 X2iezn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_X2iezn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - FSx for OpenZFS", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-FSx-for-OpenZFS_48.png" + }, { + "tag" : "Amazon Web Services - Polly", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Polly_48.png" + }, { + "tag" : "Amazon Web Services - Camera", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Camera_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Robotics", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Robotics_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Glacier Vault", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service-Glacier_Vault_48_Light.png" + }, { + "tag" : "Amazon Web Services - Timestream", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Timestream_48.png" + }, { + "tag" : "Amazon Web Services - CloudHSM", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CloudHSM_48.png" + }, { + "tag" : "Amazon Web Services - Application Cost Profiler", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Application-Cost-Profiler_48.png" + }, { + "tag" : "Amazon Web Services - EC2 F1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_F1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chatbot", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Chatbot_48.png" + }, { + "tag" : "Amazon Web Services - Pinpoint", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Pinpoint_48.png" + }, { + "tag" : "Amazon Web Services - EMR EMR Engine", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EMR_EMR-Engine_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Evidently", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Evidently_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Temperature Humidity Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Temperature-Humidity-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Snowball", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Snowball_48.png" + }, { + "tag" : "Amazon Web Services - IoT Button", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Button_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset Model", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-SiteWise_Asset-Model_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Container 3", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_Container-3_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Security Identity Compliance", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Security-Identity-Compliance_48.png" + }, { + "tag" : "Amazon Web Services - Simple Queue Service Message", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Queue-Service_Message_48_Light.png" + }, { + "tag" : "Amazon Web Services - Amplify", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Amplify_48.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaLive", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-MediaLive_48.png" + }, { + "tag" : "Amazon Web Services - X Ray", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-X-Ray_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Stream Manager", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Stream-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Amazon FSx File Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Amazon-FSx-File-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Kubernetes", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Container-Kubernetes_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Generic", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Generic_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Queue Service Queue", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Queue-Service_Queue_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Maintenance Windows", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Maintenance-Windows_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EventBridge_48.png" + }, { + "tag" : "Amazon Web Services - Glue DataBrew", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Glue-DataBrew_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager OpsCenter", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_OpsCenter_48_Light.png" + }, { + "tag" : "Amazon Web Services - Outposts servers", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Outposts-servers_48.png" + }, { + "tag" : "Amazon Web Services - Internet", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Internet_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Storage", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Storage_48.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Map Namespace", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-Map-Namespace_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Device Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Device-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Attribute", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Attribute_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Labels", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Labels_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkDocs", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-WorkDocs_48.png" + }, { + "tag" : "Amazon Web Services - VPC NAT Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_NAT-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudEndure Disaster Recovery", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_CloudEndure-Disaster-Recovery_48.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Bot Control", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Bot-Control_48_Light.png" + }, { + "tag" : "Amazon Web Services - AppStream", + "stroke" : "#2b8d78", + "color" : "#2b8d78", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-AppStream_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C5a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C5a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - ElastiCache Cache Node", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-ElastiCache_Cache-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Game Tech", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Game-Tech_48.png" + }, { + "tag" : "Amazon Web Services - AWS CloudFormation Change Set", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-CloudFormation_Change-Set_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Appliances & Software", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-Appliances-&-Software_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Data Store", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Analytics_Data-Store_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Lambda Function", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Lambda_Function_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Noise Simulator", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Noise-Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - NICE EnginFrame", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_NICE-EnginFrame_48.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Monitoring", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Monitoring_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Glue Crawler", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Glue_Crawler_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cloud Development Kit", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cloud-Development-Kit_48.png" + }, { + "tag" : "Amazon Web Services - Elastic File System One Zone", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-File-System_One-Zone_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 A1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_A1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chime SDK", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Chime-SDK_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Car", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Car_48_Light.png" + }, { + "tag" : "Amazon Web Services - Client", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Client_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Cached Volume", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Cached-Volume_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Shield AWS Shield Advanced", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Shield_AWS-Shield-Advanced_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Stack2", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Stack2_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkSpaces", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-WorkSpaces_48.png" + }, { + "tag" : "Amazon Web Services - Audit Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Audit-Manager_48.png" + }, { + "tag" : "Amazon Web Services - EC2 DB Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_DB-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Bicycle", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Bicycle_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transit Gateway Attachment", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Transit-Gateway_Attachment_48_Light.png" + }, { + "tag" : "Amazon Web Services - OpsWorks", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-OpsWorks_48.png" + }, { + "tag" : "Amazon Web Services - Snowcone", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Snowcone_48.png" + }, { + "tag" : "Amazon Web Services - Aurora MySQL Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-MySQL-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Event", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Event_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Stream", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Stream_48_Light.png" + }, { + "tag" : "Amazon Web Services - Tape storage", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Tape-storage_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management MFA Token", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_MFA-Token_48_Light.png" + }, { + "tag" : "Amazon Web Services - ParallelCluster", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ParallelCluster_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Windfarm", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Windfarm_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS on VMware", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-RDS-on-VMware_48.png" + }, { + "tag" : "Amazon Web Services - Cloud9", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cloud9_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M5zn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M5zn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Satellite", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Satellite_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C6gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Client VPN", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Client-VPN_48.png" + }, { + "tag" : "Amazon Web Services - EC2 T4g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_T4g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Simulator", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Layers", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Layers_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Is4gen Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Is4gen-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Alexa Enabled Device", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Alexa_Enabled-Device_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Relay", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Relay_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Bad Bot", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Bad-Bot_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora PIOPS Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-PIOPS-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Elastic Network Interface", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Elastic-Network-Interface_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Rule", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - Marketplace", + "stroke" : "#232f3e", + "color" : "#232f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Marketplace_Light_48.png" + }, { + "tag" : "Amazon Web Services - EC2 I2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_I2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis Firehose", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Kinesis-Firehose_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M6g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M6g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Support", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Support_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Mac Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Mac-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - User", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_User_48_Light.png" + }, { + "tag" : "Amazon Web Services - Systems Manager", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Systems-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Object Lambda Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Object-Lambda-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - App Mesh", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-App-Mesh_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT LoRaWAN Protocol ", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_LoRaWAN-Protocol _48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Automation", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Automation_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkMail", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-WorkMail_48.png" + }, { + "tag" : "Amazon Web Services - EC2 X1e Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_X1e-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Map Resource", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-Map-Resource_48_Light.png" + }, { + "tag" : "Amazon Web Services - Express Workflows", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Express-Workflows_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Container 1", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_Container-1_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Trainium Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Trainium-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Fault Tolerant", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Trusted-Advisor_Checklist-Fault-Tolerant_48_Light.png" + }, { + "tag" : "Amazon Web Services - Deep Learning Containers", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Deep-Learning-Containers_48.png" + }, { + "tag" : "Amazon Web Services - Category Application Integration", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Application-Integration_48.png" + }, { + "tag" : "Amazon Web Services - EC2 P3dn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_P3dn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5n Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C5n-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Trusted Advisor", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Trusted-Advisor_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service ECS Anywhere", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_ECS-Anywhere_48_Light.png" + }, { + "tag" : "Amazon Web Services - Amazonsail", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Lightsail_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing PLC", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_PLC_48_Light.png" + }, { + "tag" : "Amazon Web Services - ElastiCache ElastiCache for Memcached", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-ElastiCache_ElastiCache-for-Memcached_48_Light.png" + }, { + "tag" : "Amazon Web Services - ThinkBox Krakatoa", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ThinkBox-Krakatoa_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Transcoder", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Transcoder_48.png" + }, { + "tag" : "Amazon Web Services - Elastic File System File System", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-File-System_File-System_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 T3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_T3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Analytics", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Analytics_48.png" + }, { + "tag" : "Amazon Web Services - Location Service Geofence", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Location-Service_Geofence_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis Data Analytics", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Kinesis-Data-Analytics_48.png" + }, { + "tag" : "Amazon Web Services - Alexa For Business", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Alexa-For-Business_48.png" + }, { + "tag" : "Amazon Web Services - FSx for NetApp ONTAP", + "stroke" : "#488e29", + "color" : "#488e29", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-FSx-for-NetApp-ONTAP_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Recovery Time Objective", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Recovery-Time-Objective_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch", + "stroke" : "#cd2264", + "color" : "#cd2264", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-CloudWatch_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Encrypted Data", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Encrypted-Data_48_Light.png" + }, { + "tag" : "Amazon Web Services - SageMaker Train", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-SageMaker_Train_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chime", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Chime_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Permissions", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Permissions_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Industrial PC", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Industrial-PC_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Migration Hub Refactor Spaces Applications", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Migration-Hub_Refactor-Spaces-Applications_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Flow Logs", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Flow-Logs_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Virtual Machine Monitor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Virtual-Machine-Monitor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Cloud Financial Management", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Cloud-Financial-Management_48.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaPackage", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-MediaPackage_48.png" + }, { + "tag" : "Amazon Web Services - Lookout for Vision", + "stroke" : "#23836f", + "color" : "#23836f", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Lookout-for-Vision_48.png" + }, { + "tag" : "Amazon Web Services - IoT FleetWise", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-FleetWise_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Hardware Board", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Hardware-Board_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Traffic Mirroring", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Traffic-Mirroring_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 AWS Microservice Extractor for ", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_AWS-Microservice-Extractor-for-.NET_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Migration Transfer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Migration-Transfer_48.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Filtering Rule", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Filtering-Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Organizations Organizational Unit", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Organizations_Organizational-Unit_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5ad Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C5ad-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Internet alt2", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Internet-alt2_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Simulation", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-RoboMaker_Simulation_48_Light.png" + }, { + "tag" : "Amazon Web Services - Direct Connect", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Direct-Connect_48.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service Topic", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Notification-Service_Topic_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lambda", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Lambda_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Recipe", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Recipe_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service Routes", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Location-Service_Routes_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis Video Streams", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Kinesis-Video-Streams_48.png" + }, { + "tag" : "Amazon Web Services - Database Migration Service", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Database-Migration-Service_48.png" + }, { + "tag" : "Amazon Web Services - EC2 R5n Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5n-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System One Zone Infrequent Access", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-File-System_One-Zone-Infrequent-Access_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 D2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_D2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 One Zone IA", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-One-Zone-IA_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Tensor Network", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Tensor-Network_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora PostgreSQL Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-PostgreSQL-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Inventory", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Inventory_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Greengrass", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Greengrass_48.png" + }, { + "tag" : "Amazon Web Services - DevOps Guru", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-DevOps-Guru_48.png" + }, { + "tag" : "Amazon Web Services - MQ Broker", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-MQ_Broker_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Developer Tools", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Developer-Tools_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Volume", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Block-Store_Volume_48_Light.png" + }, { + "tag" : "Amazon Web Services - RoboMaker", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-RoboMaker_48.png" + }, { + "tag" : "Amazon Web Services - DevOps Guru Insights", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DevOps-Guru_Insights_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Rdn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Rdn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud9 Cloud9", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud9_Cloud9_48_Light.png" + }, { + "tag" : "Amazon Web Services - FSx", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-FSx_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Service", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Service_Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Cost", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Trusted-Advisor_Checklist-Cost_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeCommit", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CodeCommit_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Image Builder", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EC2-Image-Builder_48.png" + }, { + "tag" : "Amazon Web Services - Config", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Config_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT HTTP2 Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_HTTP2-Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Lambda Lambda Function", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Lambda_Lambda-Function_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Nucleus", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Component-Nucleus_48_Light.png" + }, { + "tag" : "Amazon Web Services - EKS Cloud", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EKS-Cloud_48.png" + }, { + "tag" : "Amazon Web Services - DataSync", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-DataSync_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Amazon Data Lifecycle Manager", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Block-Store_Amazon-Data-Lifecycle-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - GameKit", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-GameKit_48.png" + }, { + "tag" : "Amazon Web Services - Global Accelerator", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Global-Accelerator_48.png" + }, { + "tag" : "Amazon Web Services - Aurora Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - MemoryDB for Redis", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-MemoryDB-for-Redis_48.png" + }, { + "tag" : "Amazon Web Services - Secrets Manager", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Secrets-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Managed Service for Prometheus", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Managed-Service-for-Prometheus_48.png" + }, { + "tag" : "Amazon Web Services - EC2 I3en Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_I3en-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Security Hub Finding", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Security-Hub_Finding_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Temperature Vibration Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Temperature-Vibration-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Streaming for Apache Kafka", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Managed-Streaming-for-Apache-Kafka_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT MQTT Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-MQTT_Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Management Governance", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Management-Governance_48.png" + }, { + "tag" : "Amazon Web Services - Step Functions", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Step-Functions_48.png" + }, { + "tag" : "Amazon Web Services - FSx for Lustre", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-FSx-for-Lustre_48.png" + }, { + "tag" : "Amazon Web Services - Cloud Control API", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cloud-Control-API_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Coffee Pot", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Coffee-Pot_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Elastic Beanstalk Application", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Elastic-Beanstalk_Application_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 On Outposts", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-On-Outposts_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Servo", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Servo_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Add on", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Add-on_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Permissions", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-OpsWorks_Permissions_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS FTP", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Transfer-Family_AWS-FTP_48_Light.png" + }, { + "tag" : "Amazon Web Services - Deep Learning AMIs", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Deep-Learning-AMIs_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront Functions", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudFront_Functions_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Standard", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-File-System_Standard_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Camera", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Camera_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Action", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Action_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Reported State", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Reported-State_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Registry Registry", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Registry_Registry_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Oracle Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-Oracle-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Standard Access Table Class", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Standard-Access-Table-Class_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C5d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Transit Gateway", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Transit-Gateway_48.png" + }, { + "tag" : "Amazon Web Services - AppConfig", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-AppConfig_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Rescue", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Rescue_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaTailor", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-MediaTailor_48.png" + }, { + "tag" : "Amazon Web Services - Local Zones", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Local-Zones_48.png" + }, { + "tag" : "Amazon Web Services - DeepComposer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-DeepComposer_48.png" + }, { + "tag" : "Amazon Web Services - WorkDocs SDK", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-WorkDocs-SDK_48.png" + }, { + "tag" : "Amazon Web Services - Transfer Family", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Transfer-Family_48.png" + }, { + "tag" : "Amazon Web Services - VPC VPN Connection", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_VPN-Connection_48_Light.png" + }, { + "tag" : "Amazon Web Services - Transcribe", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Transcribe_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-CloudFront_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Notebook", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-SageMaker_Notebook_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 P3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_P3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Location-Service_48.png" + }, { + "tag" : "Amazon Web Services - Budgets", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Budgets_48.png" + }, { + "tag" : "Amazon Web Services - Redshift RA3", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Redshift_RA3_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkSpaces WorkSpaces Web", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-WorkSpaces_WorkSpaces-Web_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Intelligent Tiering", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-File-System_Intelligent-Tiering_48_Light.png" + }, { + "tag" : "Amazon Web Services - Billing Conductor", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Billing-Conductor_48.png" + }, { + "tag" : "Amazon Web Services - DocumentDB", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-DocumentDB_48.png" + }, { + "tag" : "Amazon Web Services - Aurora MySQL Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-MySQL-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Humidity Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Humidity-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Database", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Database_48.png" + }, { + "tag" : "Amazon Web Services - Aurora SQL Server Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-SQL-Server-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cloud Map", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cloud-Map_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6gn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C6gn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Service Catalog", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Service-Catalog_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Utility", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Utility_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Virtual Machine", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Virtual-Machine_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Digital Interface", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-Digital-Interface_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Multi AZ DB Cluster", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-RDS_Multi-AZ-DB-Cluster_48_Light.png" + }, { + "tag" : "Amazon Web Services - Monitron", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Monitron_48.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Standard Infrequent Access", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-File-System_Standard-Infrequent-Access_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Blockchain", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Managed-Blockchain_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-SageMaker_48.png" + }, { + "tag" : "Amazon Web Services - AWS Datasync Agent", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Datasync_Agent_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Hosted Zone", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53-Hosted-Zone_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Reachability Analyzer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Reachability-Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Over Air Update", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Over-Air-Update_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 DL1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_DL1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Directory Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Directory-Service_48.png" + }, { + "tag" : "Amazon Web Services - MQ", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-MQ_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Snapshot", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Block-Store_Snapshot_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Storage", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Storage_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Im4gn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Im4gn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - VMware Cloud on AWS", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_VMware-Cloud-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Documents", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Documents_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Bucket With Objects", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_Bucket-With-Objects_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Elastic-Load-Balancing_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Standard", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Standard_48_Light.png" + }, { + "tag" : "Amazon Web Services - Application Migration Service", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Application-Migration-Service_48.png" + }, { + "tag" : "Amazon Web Services - Application Discovery Service", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Application-Discovery-Service_48.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Item", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Item_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lookout for Metrics", + "stroke" : "#23836f", + "color" : "#23836f", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Lookout-for-Metrics_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Alexa Voice Service", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Alexa_Voice-Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Lake Formation Data Lake", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Lake-Formation_Data-Lake_48_Light.png" + }, { + "tag" : "Amazon Web Services - Security Hub", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Security-Hub_48.png" + }, { + "tag" : "Amazon Web Services - AWS Elastic Beanstalk Deployment", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Elastic-Beanstalk_Deployment_48_Light.png" + }, { + "tag" : "Amazon Web Services - Mobile client", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Mobile-client_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset Hierarchy", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-SiteWise_Asset-Hierarchy_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Inference", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Inference_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Dataset", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Analytics_Dataset_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Alexa Skill", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Alexa_Skill_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Elastic IP Address", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Elastic-IP-Address_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Patch Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Patch-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Amazon RDS Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora_Amazon-RDS-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Organizations Management Account", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Organizations_Management-Account_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Table", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-DynamoDB_Table_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Data Exchange for APIs", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Data-Exchange-for-APIs_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M5a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - ThinkBox Sequoia", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ThinkBox-Sequoia_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Rule", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Networking Content Delivery", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Networking-Content-Delivery_48.png" + }, { + "tag" : "Amazon Web Services - rePost", + "stroke" : "#3f51d4", + "color" : "#3f51d4", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-rePost_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Pipeline", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Analytics_Pipeline_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Simple-Notification-Service_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Stacklight", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Thing_Stacklight_48_Light.png" + }, { + "tag" : "Amazon Web Services - S3 on Outposts", + "stroke" : "#488e29", + "color" : "#488e29", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-S3-on-Outposts_48.png" + }, { + "tag" : "Amazon Web Services - CloudFormation", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CloudFormation_48.png" + }, { + "tag" : "Amazon Web Services - Comprehend Medical", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Comprehend-Medical_48.png" + }, { + "tag" : "Amazon Web Services - EC2 X2idn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_X2idn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - SSL padlock", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_SSL-padlock_48_Light.png" + }, { + "tag" : "Amazon Web Services - Launch Wizard", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Launch-Wizard_48.png" + }, { + "tag" : "Amazon Web Services - Interactive Video Service", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Interactive-Video-Service_48.png" + }, { + "tag" : "Amazon Web Services - VPC VPN Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_VPN-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Console Mobile Application ", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Console-Mobile-Application _48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Event Event Based", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudWatch_Event-Event-Based_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-SiteWise_Asset_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Cart", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Cart_48_Light.png" + }, { + "tag" : "Amazon Web Services - ThinkBox XMesh", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ThinkBox-XMesh_48.png" + }, { + "tag" : "Amazon Web Services - Documents", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Documents_48_Light.png" + }, { + "tag" : "Amazon Web Services - Management Console", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Management-Console_48.png" + }, { + "tag" : "Amazon Web Services - Migration Hub", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Migration-Hub_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Multiple Volumes", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Block-Store_Multiple-Volumes_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-DynamoDB_48.png" + }, { + "tag" : "Amazon Web Services - EFS", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EFS_48.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Fleet Management", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-RoboMaker_Fleet-Management_48_Light.png" + }, { + "tag" : "Amazon Web Services - Email", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Email_48_Light.png" + }, { + "tag" : "Amazon Web Services - Athena", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Athena_48.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Developer", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Mainframe-Modernization_Developer_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Core", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Core_48.png" + }, { + "tag" : "Amazon Web Services - Outposts rack", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Outposts-rack_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Parameter Store", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Systems-Manager_Parameter-Store_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 X1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_X1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Blockchain", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Blockchain_48.png" + }, { + "tag" : "Amazon Web Services - EC2 z1d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_z1d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lake Formation", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Lake-Formation_48.png" + }, { + "tag" : "Amazon Web Services - Migration Evaluator", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Migration-Evaluator_48.png" + }, { + "tag" : "Amazon Web Services - EC2 R5ad Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_R5ad-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Comprehend", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Comprehend_48.png" + }, { + "tag" : "Amazon Web Services - Route 53 Resolver Query Logging", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Resolver-Query-Logging_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Disk", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Disk_48_Light.png" + }, { + "tag" : "Amazon Web Services - Systems Manager Incident Manager", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Systems-Manager-Incident-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Kendra", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Kendra_48.png" + }, { + "tag" : "Amazon Web Services - Aurora MariaDB Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Aurora-MariaDB-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Internet of Things", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Internet-of-Things_48.png" + }, { + "tag" : "Amazon Web Services - IoT ExpressLink", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-ExpressLink_48.png" + }, { + "tag" : "Amazon Web Services - VPC Customer Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Customer-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeGuru", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-CodeGuru_48.png" + }, { + "tag" : "Amazon Web Services - Organizations", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Organizations_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Volume gp3", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Block-Store_Volume-gp3_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Instance with CloudWatch", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Instance-with-CloudWatch_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 2", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Simulator-2_48_Light.png" + }, { + "tag" : "Amazon Web Services - Data Exchange", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Data-Exchange_48.png" + }, { + "tag" : "Amazon Web Services - Outposts family", + "stroke" : "#fefcfb", + "color" : "#fefcfb", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Outposts-family_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Fire TV Stick", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Fire-TV_Stick_48_Light.png" + }, { + "tag" : "Amazon Web Services - Genomics CLI", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Genomics-CLI_48.png" + }, { + "tag" : "Amazon Web Services - CodeStar", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CodeStar_48.png" + }, { + "tag" : "Amazon Web Services - Tools and SDKs", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Tools-and-SDKs_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Factory", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Factory_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Converter", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Mainframe-Modernization_Converter_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Noncached Volume", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Noncached-Volume_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Elastic Network Adapter", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Elastic-Network-Adapter_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Instances", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Instances_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS CloudFormation Template", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-CloudFormation_Template_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Development Environment", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-RoboMaker_Development-Environment_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 X2iedn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_X2iedn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Snowball Snowball Import Export", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Snowball_Snowball-Import-Export_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket QPU", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_QPU_48_Light.png" + }, { + "tag" : "Amazon Web Services - MSK Amazon MSK Connect", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-MSK_Amazon-MSK-Connect_48_Light.png" + }, { + "tag" : "Amazon Web Services - TensorFlow on AWS", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_TensorFlow-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Map Service", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Cloud-Map_Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Medical Emergency", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Medical-Emergency_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Role", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_Role_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Glue Data Catalog", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Glue_Data-Catalog_48_Light.png" + }, { + "tag" : "Amazon Web Services - ThinkBox Frost", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-ThinkBox-Frost_48.png" + }, { + "tag" : "Amazon Web Services - Activate", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Activate_48.png" + }, { + "tag" : "Amazon Web Services - Training Certification", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Training-Certification_48.png" + }, { + "tag" : "Amazon Web Services - EC2 D3en Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_D3en-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service HTTP Notification", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Notification-Service_HTTP-Notification_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Route Table", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Route-53_Route-Table_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Compiler", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Mainframe-Modernization_Compiler_48_Light.png" + }, { + "tag" : "Amazon Web Services - Single Sign On", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Single-Sign-On_48.png" + }, { + "tag" : "Amazon Web Services - Braket", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Braket_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management AWS STS Alternate", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Identity-Access-Management_AWS-STS-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - SageMaker Ground Truth", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-SageMaker-Ground-Truth_48.png" + }, { + "tag" : "Amazon Web Services - CloudSearch Search Documents", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudSearch_Search-Documents_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Live", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-Live_48.png" + }, { + "tag" : "Amazon Web Services - Aurora", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Aurora_48.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Bot", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Bot_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Standard IA", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Standard-IA_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Glacier Instant Retrieval", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Glacier-Instant-Retrieval_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudFront Streaming Distribution", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudFront_Streaming-Distribution_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Migration Hub Refactor Spaces Environments", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Migration-Hub_Refactor-Spaces-Environments_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M6i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M6i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Network Access Analyzer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Network-Access-Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service Map", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Location-Service_Map_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chime Voice Connector", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Chime-Voice-Connector_48.png" + }, { + "tag" : "Amazon Web Services - Lex", + "stroke" : "#21816d", + "color" : "#21816d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Lex_48.png" + }, { + "tag" : "Amazon Web Services - Key Management Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Key-Management-Service_48.png" + }, { + "tag" : "Amazon Web Services - License Manager", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-License-Manager_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Connector", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Connector_48_Light.png" + }, { + "tag" : "Amazon Web Services - Certificate Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Certificate-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Kinesis Data Streams", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Kinesis-Data-Streams_48.png" + }, { + "tag" : "Amazon Web Services - Server Migration Service", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Server-Migration-Service_48.png" + }, { + "tag" : "Amazon Web Services - EventBridge Schema Registry", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EventBridge_Schema-Registry_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Interprocess Communication", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Greengrass_Interprocess-Communication_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Notebook", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Analytics_Notebook_48_Light.png" + }, { + "tag" : "Amazon Web Services - Batch", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Batch_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront Edge Location", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-CloudFront_Edge-Location_48_Light.png" + }, { + "tag" : "Amazon Web Services - Panorama", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Panorama_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Topic", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Topic_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Replication", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Replication_48_Light.png" + }, { + "tag" : "Amazon Web Services - Keyspaces", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Keyspaces_48.png" + }, { + "tag" : "Amazon Web Services - Elemental Delta", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-Delta_48.png" + }, { + "tag" : "Amazon Web Services - Fraud Detector", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Fraud-Detector_48.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Tape Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Storage-Gateway_Tape-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Proxy Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-RDS-Proxy-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cost and Usage Report", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Cost-and-Usage-Report_48.png" + }, { + "tag" : "Amazon Web Services - EC2 AMI", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_AMI_48_Light.png" + }, { + "tag" : "Amazon Web Services - EKS Anywhere", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EKS-Anywhere_48.png" + }, { + "tag" : "Amazon Web Services - IoT 1 Click", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-1-Click_48.png" + }, { + "tag" : "Amazon Web Services - Category Business Applications", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_Business-Applications_48.png" + }, { + "tag" : "Amazon Web Services - EC2 T3a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_T3a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Conductor", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-Conductor_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Glacier Flexible Retrieval", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Glacier-Flexible-Retrieval_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Simple-Storage-Service_48.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaConvert", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Elemental-MediaConvert_48.png" + }, { + "tag" : "Amazon Web Services - SDK", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_SDK_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Carrier Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-VPC_Carrier-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Replication Time Control", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Replication-Time-Control_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Police Emergency", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Police-Emergency_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Email Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Simple-Email-Service_48.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Virtual Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-App-Mesh-Virtual-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_M6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudShell", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CloudShell_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Bucket", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_Bucket_48_Light.png" + }, { + "tag" : "Amazon Web Services - Virtual Private Cloud", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Virtual-Private-Cloud_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Bank", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT-Thing_Bank_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Queue Service", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Simple-Queue-Service_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Compliance Reporting", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Backup_Compliance-Reporting_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Storage Lens", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Storage-Lens_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_C4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AppFlow", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-AppFlow_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Registry Image", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Elastic-Container-Registry_Image_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Object Lambda", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Simple-Storage-Service_S3-Object-Lambda_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Kinesis_48.png" + }, { + "tag" : "Amazon Web Services - CodeDeploy", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CodeDeploy_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Elastic-Block-Store_48.png" + }, { + "tag" : "Amazon Web Services - Neuron", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Neuron_48.png" + }, { + "tag" : "Amazon Web Services - Device Farm", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Device-Farm_48.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Security", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-Trusted-Advisor_Checklist-Security_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Route-53_48.png" + }, { + "tag" : "Amazon Web Services - IoT Device Management", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-IoT-Device-Management_48.png" + }, { + "tag" : "Amazon Web Services - EC2", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-EC2_48.png" + }, { + "tag" : "Amazon Web Services - Mainframe Modernization", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-Mainframe-Modernization_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Habana Gaudi Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Habana-Gaudi-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Hpc6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Hpc6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Trn1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EC2_Trn1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category End User Computing", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_End-User-Computing_48.png" + }, { + "tag" : "Amazon Web Services - EMR Cluster", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-EMR_Cluster_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeBuild", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-CodeBuild_48.png" + }, { + "tag" : "Amazon Web Services - Category VR AR", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch-Category_VR-AR_48.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 3", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Simulator-3_48_Light.png" + }, { + "tag" : "Amazon Web Services - App Runner", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_AWS-App-Runner_48.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Managed Rule", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-WAF_Managed-Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Certificate", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_AWS-IoT_Certificate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Translate", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Translate_48.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 4", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Res_Amazon-Braket_Simulator-4_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Service for Grafana", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2022.04.30/Arch_Amazon-Managed-Service-for-Grafana_48.png" + } ] +} diff --git a/server/src/main/resources/structurizr/amazon-web-services-2023.01.31.json b/server/src/main/resources/structurizr/amazon-web-services-2023.01.31.json new file mode 100644 index 000000000..612b76129 --- /dev/null +++ b/server/src/main/resources/structurizr/amazon-web-services-2023.01.31.json @@ -0,0 +1,4460 @@ +{ + "name" : "Amazon Web Services", + "description" : "This theme includes element styles with icons for each of the AWS services, based upon the AWS Architecture Icons (https://aws.amazon.com/architecture/icons/).", + "elements" : [ { + "tag" : "Amazon Web Services - Route 53 Application Recovery Controller", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Application-Recovery-Controller_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Standard Infrequent Access Table Class", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Standard-Infrequent-Access-Table-Class_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Incident Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Incident-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Cross account Observability", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Cross-account-Observability_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5n", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EC2-M5n_48.png" + }, { + "tag" : "Amazon Web Services - Detective", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Detective_48.png" + }, { + "tag" : "Amazon Web Services - VPC Network Access Control List", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Network-Access-Control-List_48_Light.png" + }, { + "tag" : "Amazon Web Services - Personal Health Dashboard", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Personal-Health-Dashboard_48.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service Email Notification", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Notification-Service_Email-Notification_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Echo", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Echo_48_Light.png" + }, { + "tag" : "Amazon Web Services - Thinkbox Deadline", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Thinkbox-Deadline_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M5d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M5d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Scheduler", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Scheduler_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Metrics Insights", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Metrics-Insights_48_Light.png" + }, { + "tag" : "Amazon Web Services - Shield", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Shield_48.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Performance", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Trusted-Advisor_Checklist-Performance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Deployments", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Deployments_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C7gn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C7gn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - FreeRTOS", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_FreeRTOS_48.png" + }, { + "tag" : "Amazon Web Services - EC2 T2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_T2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Network Firewall", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Network-Firewall_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Object Lock", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Object-Lock_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudSearch", + "stroke" : "#7746d3", + "color" : "#7746d3", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-CloudSearch_48.png" + }, { + "tag" : "Amazon Web Services - AWS License Manager Application Discovery", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-License-Manager_Application-Discovery_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Component_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Amazon Aurora Instance alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora_Amazon-Aurora-Instance-alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Inspector", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Inspector_48.png" + }, { + "tag" : "Amazon Web Services - Cloud WAN", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cloud-WAN_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Application Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Elastic-Load-Balancing_Application-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - GameSparks", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-GameSparks_48.png" + }, { + "tag" : "Amazon Web Services - Supply Chain", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Supply-Chain_48.png" + }, { + "tag" : "Amazon Web Services - CodeArtifact", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CodeArtifact_48.png" + }, { + "tag" : "Amazon Web Services - Macie", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Macie_48.png" + }, { + "tag" : "Amazon Web Services - Connect", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Connect_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Sailboat", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Sailboat _48_Light.png" + }, { + "tag" : "Amazon Web Services - Firewall Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Firewall-Manager_48.png" + }, { + "tag" : "Amazon Web Services - EC2 VT1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_VT1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Workflows for Apache Airflow", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Managed-Workflows-for-Apache-Airflow_48.png" + }, { + "tag" : "Amazon Web Services - Elemental Link", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-Link_48.png" + }, { + "tag" : "Amazon Web Services - AWS License Manager License Blending", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-License-Manager_License-Blending_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Private", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Component-Private_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodePipeline", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CodePipeline_48.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Resources", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Resources_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Resolver", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Resolver_48_Light.png" + }, { + "tag" : "Amazon Web Services - Rekognition", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Rekognition_48.png" + }, { + "tag" : "Amazon Web Services - EKS Distro", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EKS-Distro_48.png" + }, { + "tag" : "Amazon Web Services - EC2 D3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_D3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - File Cache S3 linked datasets", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-File-Cache_S3-linked-datasets_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup AWS Backup for AWS CloudFormation", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_AWS-Backup-for-AWS-CloudFormation_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Embedded Simulator", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Embedded-Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkSpaces Family", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-WorkSpaces-Family_48.png" + }, { + "tag" : "Amazon Web Services - Artifact", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Artifact_48.png" + }, { + "tag" : "Amazon Web Services - Forecast", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Forecast_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT HTTP Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-HTTP_Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - API Gateway Endpoint", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-API-Gateway_Endpoint_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Session Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Session-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service General Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_General-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkSpaces Family Amazon WorkSpaces Core", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces-Core_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Amplify AWS Amplify Studio", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Amplify_AWS-Amplify-Studio_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkSpaces Family Amazon WorkSpaces", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Directory Service AWS Managed Microsoft AD", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Directory-Service_AWS-Managed-Microsoft-AD_48_Light.png" + }, { + "tag" : "Amazon Web Services - SageMaker Shadow Testing", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-SageMaker_Shadow-Testing_48_Light.png" + }, { + "tag" : "Amazon Web Services - Control Tower", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Control-Tower_48.png" + }, { + "tag" : "Amazon Web Services - Thinkbox Stoke", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Thinkbox-Stoke_48.png" + }, { + "tag" : "Amazon Web Services - Managed Blockchain Blockchain", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Managed-Blockchain_Blockchain_48_Light.png" + }, { + "tag" : "Amazon Web Services - Storage Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Storage-Gateway_48.png" + }, { + "tag" : "Amazon Web Services - Question", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Question_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Glacier Archive", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service-Glacier_Archive_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Amazon DynamoDB Accelerator", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Amazon-DynamoDB-Accelerator_48_Light.png" + }, { + "tag" : "Amazon Web Services - SimSpace Weaver", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-SimSpace-Weaver_48.png" + }, { + "tag" : "Amazon Web Services - VPC Router", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Router_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 P4d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_P4d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup AWS Backup support for Amazon FSx for NetApp ONTAP", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_AWS-Backup-support-for-Amazon-FSx-for-NetApp-ONTAP_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Containers", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Containers_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Copilot CLI", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_Copilot-CLI_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Shadow", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Shadow_48_Light.png" + }, { + "tag" : "Amazon Web Services - Identity and Access Management", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Identity-and-Access-Management_48.png" + }, { + "tag" : "Amazon Web Services - Rekognition Video", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Rekognition_Video_48_Light.png" + }, { + "tag" : "Amazon Web Services - NICE DCV", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_NICE-DCV_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M6idn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M6idn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Traditional server", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Traditional-server_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Classic Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Elastic-Load-Balancing_Classic-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - Document", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Document_48_Light.png" + }, { + "tag" : "Amazon Web Services - Command Line Interface", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Command-Line-Interface_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch RUM", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_RUM_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Auto Scaling", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Auto-Scaling_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Certificate Manager Certificate Authority", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Certificate-Manager_Certificate-Authority_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Gateway Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Elastic-Load-Balancing_Gateway-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - EMR HDFS Cluster", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EMR_HDFS-Cluster_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Application Discovery Service Migration Evaluator Collector", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Application-Discovery-Service_Migration-Evaluator-Collector_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Desired State", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Desired-State_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Public", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Component-Public_48_Light.png" + }, { + "tag" : "Amazon Web Services - Amazon API Gateway", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_ Amazon-API-Gateway_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Data Encryption Key", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Data-Encryption-Key_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Task", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_Task_48_Light.png" + }, { + "tag" : "Amazon Web Services - Augmented AI A2I", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Augmented-AI-A2I_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Canvas", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-SageMaker_Canvas_48_Light.png" + }, { + "tag" : "Amazon Web Services - SAML token", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_SAML-token_48_Light.png" + }, { + "tag" : "Amazon Web Services - Glue Elastic Views", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Glue-Elastic-Views_48.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway File Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_File-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Database Migration Service Database migration workflow job", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Database-Migration-Service_Database-migration-workflow-job_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 1", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Simulator-1_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS CloudFormation Stack", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-CloudFormation_Stack_48_Light.png" + }, { + "tag" : "Amazon Web Services - Reserved Instance Reporting", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Reserved-Instance-Reporting_48.png" + }, { + "tag" : "Amazon Web Services - Redshift ML", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_ML_48_Light.png" + }, { + "tag" : "Amazon Web Services - HealthLake", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-HealthLake_48.png" + }, { + "tag" : "Amazon Web Services - EC2 I3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_I3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - OpenSearch Service", + "stroke" : "#814ede", + "color" : "#814ede", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-OpenSearch-Service_48.png" + }, { + "tag" : "Amazon Web Services - Route 53 Readiness Checks", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Readiness-Checks_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Items", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Items_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Data Streams", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-SiteWise_Data-Streams_48_Light.png" + }, { + "tag" : "Amazon Web Services - File Cache On premises NFS linked datasets", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-File-Cache_On-premises-NFS-linked-datasets_48_Light.png" + }, { + "tag" : "Amazon Web Services - Nitro Enclaves", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Nitro-Enclaves_48.png" + }, { + "tag" : "Amazon Web Services - Braket Chandelier", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Chandelier_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Peering Connection", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Peering-Connection_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Direct Connect Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Direct-Connect-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Segment Network", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-WAN_Segment-Network_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cost Explorer", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cost-Explorer_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Model", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-SageMaker_Model_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT EduKit", + "stroke" : "#488e29", + "color" : "#488e29", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-EduKit_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Device Defender IoT Device Jobs", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Device-Defender_IoT-Device-Jobs_48_Light.png" + }, { + "tag" : "Amazon Web Services - Redshift Dense Compute Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_Dense-Compute-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Site to Site VPN", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Site-to-Site-VPN_48.png" + }, { + "tag" : "Amazon Web Services - EC2 P2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_P2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Multimedia", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Multimedia_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Front End Web Mobile", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Front-End-Web-Mobile_48.png" + }, { + "tag" : "Amazon Web Services - EC2 G5g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_G5g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Toolkit", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Toolkit_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora PostgreSQL Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-PostgreSQL-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaConnect", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-MediaConnect_48.png" + }, { + "tag" : "Amazon Web Services - Ground Station", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Ground-Station_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Logs", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Logs_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Default Event Bus", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Default-Event-Bus_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lookout for Equipment", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Lookout-for-Equipment_48.png" + }, { + "tag" : "Amazon Web Services - Savings Plans", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Savings-Plans_48.png" + }, { + "tag" : "Amazon Web Services - Application Auto Scaling", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Application-Auto-Scaling_48.png" + }, { + "tag" : "Amazon Web Services - Location Service Place", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Location-Service_Place_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Instances", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Instances_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Directory Service Simple AD", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Directory-Service_Simple-AD_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R6g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R6g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Vibration Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Vibration-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - ECS Anywhere", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-ECS-Anywhere_48.png" + }, { + "tag" : "Amazon Web Services - Resource Explorer", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Resource-Explorer_48.png" + }, { + "tag" : "Amazon Web Services - EC2 X2gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_X2gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Well Architected Tool", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Well-Architected-Tool_48.png" + }, { + "tag" : "Amazon Web Services - IoT SiteWise", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-SiteWise_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Channel", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Analytics_Channel_48_Light.png" + }, { + "tag" : "Amazon Web Services - Auto Scaling", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Auto-Scaling_48.png" + }, { + "tag" : "Amazon Web Services - RDS", + "stroke" : "#3f51d4", + "color" : "#3f51d4", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-RDS_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Audit Manager", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Audit-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - Redshift Auto copy", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_Auto-copy_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Event Time Based", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Event-Time-Based_48_Light.png" + }, { + "tag" : "Amazon Web Services - Redshift", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Redshift_48.png" + }, { + "tag" : "Amazon Web Services - Category Serverless", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Serverless_48.png" + }, { + "tag" : "Amazon Web Services - ElastiCache", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-ElastiCache_48.png" + }, { + "tag" : "Amazon Web Services - EC2 G4ad Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_G4ad-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - QuickSight", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-QuickSight_48.png" + }, { + "tag" : "Amazon Web Services - Category Machine Learning", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Machine-Learning_48.png" + }, { + "tag" : "Amazon Web Services - Globe", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Globe_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management AWS STS", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_AWS-STS_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service Track", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Location-Service_Track_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Intelligent Tiering", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Intelligent-Tiering_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Saas Partner Event", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Saas-Partner-Event_48_Light.png" + }, { + "tag" : "Amazon Web Services - Generic Application", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Generic-Application_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Apps", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Apps_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Customer Enablement", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Customer-Enablement_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing FreeRTOS Device", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_FreeRTOS-Device_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Virtual Router", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-App-Mesh-Virtual-Router_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Cloud Extensions ROS", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-RoboMaker_Cloud-Extensions-ROS_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Glacier", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Simple-Storage-Service-Glacier_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Application Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Application-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup AWS Backup support for Amazon S3", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_AWS-Backup-support-for-Amazon-S3_48_Light.png" + }, { + "tag" : "Amazon Web Services - Data Pipeline", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Data-Pipeline_48.png" + }, { + "tag" : "Amazon Web Services - AWS Organizations Account", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Organizations_Account_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Amazon RDS Instance Aternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora_Amazon-RDS-Instance-Aternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Backup Vault", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Backup-Vault_48_Light.png" + }, { + "tag" : "Amazon Web Services - Private 5G", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Private-5G_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Synthetics", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Synthetics_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Mesh", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-App-Mesh-Mesh_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Long Term Security Credential", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Long-Term-Security-Credential_48_Light.png" + }, { + "tag" : "Amazon Web Services - DataZone Business Data Catalog", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DataZone_Business-Data-Catalog_48_Light.png" + }, { + "tag" : "Amazon Web Services - AppSync", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-AppSync_48.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Virtual Service", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-App-Mesh-Virtual-Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Backup Restore", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Backup-Restore_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Run Command", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Run-Command_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cognito", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Cognito_48.png" + }, { + "tag" : "Amazon Web Services - WorkLink", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-WorkLink_48.png" + }, { + "tag" : "Amazon Web Services - IoT Things Graph", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Things-Graph_48.png" + }, { + "tag" : "Amazon Web Services - Gear", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Gear_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cloud Directory", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Cloud-Directory_48.png" + }, { + "tag" : "Amazon Web Services - CloudTrail", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CloudTrail_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Distributor", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Distributor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Backup", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Backup_48.png" + }, { + "tag" : "Amazon Web Services - Snowmobile", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Snowmobile_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Inf1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Inf1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Compute Optimizer", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Compute-Optimizer_48.png" + }, { + "tag" : "Amazon Web Services - Category Analytics", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Analytics_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Database", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Database_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5n", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EC2-R5n_48.png" + }, { + "tag" : "Amazon Web Services - Resource Access Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Resource-Access-Manager_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M5dn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M5dn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5b Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R5b-Instance _48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C6g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C6g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Open 3D Engine", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Open-3D-Engine_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Studio Lab", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-SageMaker-Studio-Lab_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing Network Load Balancer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Elastic-Load-Balancing_Network-Load-Balancer_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Container-Service_48.png" + }, { + "tag" : "Amazon Web Services - Braket State Vector", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_State-Vector_48_Light.png" + }, { + "tag" : "Amazon Web Services - EMR", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EMR_48.png" + }, { + "tag" : "Amazon Web Services - Personalize", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Personalize_48.png" + }, { + "tag" : "Amazon Web Services - Category Compute", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Compute_48.png" + }, { + "tag" : "Amazon Web Services - Quantum Ledger Database", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Quantum-Ledger-Database_48.png" + }, { + "tag" : "Amazon Web Services - Source Code", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Source-Code_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thingbulb", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Lightbulb_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Backup Plan", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Backup-Plan_48_Light.png" + }, { + "tag" : "Amazon Web Services - Glue", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Glue_48.png" + }, { + "tag" : "Amazon Web Services - EC2 G3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_G3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Office building", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Office-building_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Policy", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Policy_48_Light.png" + }, { + "tag" : "Amazon Web Services - ElastiCache ElastiCache for Redis", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-ElastiCache_ElastiCache-for-Redis_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5n Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M5n-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing House", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_House_48_Light.png" + }, { + "tag" : "Amazon Web Services - Proton", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Proton_48.png" + }, { + "tag" : "Amazon Web Services - Textract", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Textract_48.png" + }, { + "tag" : "Amazon Web Services - Bottlerocket", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Bottlerocket_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Actuator", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Actuator_48_Light.png" + }, { + "tag" : "Amazon Web Services - Honeycode", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Honeycode_48.png" + }, { + "tag" : "Amazon Web Services - VPC Internet Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Internet-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Virtual Tape Library", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Virtual-Tape-Library_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Firewall", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Firewall_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Trusted-Advisor_Checklist_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Runtime", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Mainframe-Modernization_Runtime_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Proxy Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS-Proxy-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Application Composer", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Application-Composer_48.png" + }, { + "tag" : "Amazon Web Services - Pinpoint APIs", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Pinpoint-APIs_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Artifact", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Artifact_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M6gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M6gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Events", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Events_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaStore", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-MediaStore_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Rule", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Chip", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Chip_48_Light.png" + }, { + "tag" : "Amazon Web Services - Sumerian", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Sumerian_48.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Analyzer", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Mainframe-Modernization_Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C7g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C7g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Schema", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Schema_48_Light.png" + }, { + "tag" : "Amazon Web Services - FSx for WFS", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-FSx-for-WFS_48.png" + }, { + "tag" : "Amazon Web Services - Route 53 Resolver DNS Firewall", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Resolver-DNS-Firewall_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Beanstalk", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elastic-Beanstalk_48.png" + }, { + "tag" : "Amazon Web Services - Signer", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Signer_48.png" + }, { + "tag" : "Amazon Web Services - Generic database", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Generic-database_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R6i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R6i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Global secondary index", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Global-secondary-index_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 G5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_G5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Device Defender", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Device-Defender_48.png" + }, { + "tag" : "Amazon Web Services - Pinpoint Journey", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Pinpoint_Journey_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Container 2", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_Container-2_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Directory Service AD Connector", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Directory-Service_AD-Connector_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Core Device Location", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Core_Device-Location_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Glue AWS Glue for Ray", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Glue_AWS-Glue-for-Ray_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 G4dn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_G4dn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Users", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Users_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 H1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_H1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 HMI Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_HMI-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - OpenSearch Service UltraWarm Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-OpenSearch-Service_UltraWarm-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora SQL Server Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-SQL-Server-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager State Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_State-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - Backint Agent", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Backint-Agent_48.png" + }, { + "tag" : "Amazon Web Services - DeepLens", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-DeepLens_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Temperature Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Temperature-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Spot Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Spot-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Attributes", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Attributes_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Amazon S3 File Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Amazon-S3-File-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Rule", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M1 Mac Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M1-Mac-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - File Cache", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-File-Cache_48.png" + }, { + "tag" : "Amazon Web Services - Red Hat OpenShift Service on AWS", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Red-Hat-OpenShift-Service-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Travel", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Travel_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset Properties", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-SiteWise_Asset-Properties_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Registry", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Container-Registry_48.png" + }, { + "tag" : "Amazon Web Services - AWS Network Firewall Endpoints", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Network-Firewall_Endpoints_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS SFTP", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Transfer-Family_AWS-SFTP_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Thermostat", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Thermostat_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Virtual PoP", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-WAN_Virtual-PoP_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Volume Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Volume-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Core Network Edge", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-WAN_Core-Network-Edge_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Blue Green Deployments", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS_Blue-Green-Deployments_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Compute", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Compute_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud WAN Transit Gateway Route Table Attachment", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-WAN_Transit-Gateway-Route-Table-Attachment_48_Light.png" + }, { + "tag" : "Amazon Web Services - PrivateLink", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-PrivateLink_48.png" + }, { + "tag" : "Amazon Web Services - AWS Migration Hub Refactor Spaces Services", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Migration-Hub_Refactor-Spaces-Services_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS CloudTrail CloudTrail Lake", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-CloudTrail_CloudTrail-Lake_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Services", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Managed-Services_48.png" + }, { + "tag" : "Amazon Web Services - Neptune", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Neptune_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Object", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_Object_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Machine Learning", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Component-Machine-Learning_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - Snowball Edge", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Snowball-Edge_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C6i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Distro for OpenTelemetry", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Distro-for-OpenTelemetry_48.png" + }, { + "tag" : "Amazon Web Services - App Mesh Virtual Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_App-Mesh_Virtual-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Forums", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Forums_48_Light.png" + }, { + "tag" : "Amazon Web Services - Rekognition Image", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Rekognition_Image_48_Light.png" + }, { + "tag" : "Amazon Web Services - Nimble Studio", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Nimble-Studio_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Temporary Security Credential", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Temporary-Security-Credential_48_Light.png" + }, { + "tag" : "Amazon Web Services - TorchServe", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_TorchServe_48.png" + }, { + "tag" : "Amazon Web Services - Internet alt1", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Internet-alt1_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Quantum Technologies", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Quantum-Technologies_48.png" + }, { + "tag" : "Amazon Web Services - IoT RoboRunner", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-RoboRunner_48.png" + }, { + "tag" : "Amazon Web Services - Braket Managed Simulator", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Managed-Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 P4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_P4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Media Services", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Media-Services_48.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Alarm", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Alarm_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora MariaDB Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-MariaDB-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Fault Injection Simulator", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Fault-Injection-Simulator_48.png" + }, { + "tag" : "Amazon Web Services - EventBridge Custom Event Bus", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Custom-Event-Bus_48_Light.png" + }, { + "tag" : "Amazon Web Services - DeepRacer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-DeepRacer_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup AWS Backup support for VMware Workloads", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_AWS-Backup-support-for-VMware-Workloads_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Endpoints", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Endpoints_48_Light.png" + }, { + "tag" : "Amazon Web Services - IQ", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IQ_48.png" + }, { + "tag" : "Amazon Web Services - Resilience Hub", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Resilience-Hub_48.png" + }, { + "tag" : "Amazon Web Services - EC2 AWS Inferentia", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_AWS-Inferentia_48_Light.png" + }, { + "tag" : "Amazon Web Services - Corretto", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Corretto_48.png" + }, { + "tag" : "Amazon Web Services - Inspector Agent", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Inspector_Agent_48_Light.png" + }, { + "tag" : "Amazon Web Services - Serverless Application Repository", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Serverless-Application-Repository_48.png" + }, { + "tag" : "Amazon Web Services - IoT TwinMaker", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-TwinMaker_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M6in Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M6in-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS FTPS", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Transfer-Family_AWS-FTPS_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Virtual private cloud VPC", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Virtual-private-cloud-VPC_48_Light.png" + }, { + "tag" : "Amazon Web Services - Wickr", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Wickr_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Kubernetes Service", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Kubernetes-Service_48.png" + }, { + "tag" : "Amazon Web Services - Simple Email Service Email", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Email-Service_Email_48_Light.png" + }, { + "tag" : "Amazon Web Services - FinSpace", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-FinSpace_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service VPC Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_VPC-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Routing Controls", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Routing-Controls_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Apache MXNet on AWS", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Apache-MXNet-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - Redshift Dense Storage Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_Dense-Storage-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Glacier Deep Archive", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Glacier-Deep-Archive_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Server", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-Server_48.png" + }, { + "tag" : "Amazon Web Services - Professional Services", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Professional-Services_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Select", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Select_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Fabric Adapter", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Elastic-Fabric-Adapter_48.png" + }, { + "tag" : "Amazon Web Services - WAF", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-WAF_48.png" + }, { + "tag" : "Amazon Web Services - GuardDuty", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-GuardDuty_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront Download Distribution", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudFront_Download-Distribution_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Elastic Throughput", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_Elastic-Throughput_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Recovery Point Objective", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Recovery-Point-Objective_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R5a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Door Lock", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Door-Lock_48_Light.png" + }, { + "tag" : "Amazon Web Services - GameLift", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-GameLift_48.png" + }, { + "tag" : "Amazon Web Services - RDS Multi AZ", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS_Multi-AZ_48_Light.png" + }, { + "tag" : "Amazon Web Services - Fargate", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Fargate_48.png" + }, { + "tag" : "Amazon Web Services - Wavelength", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Wavelength_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Fire TV", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Fire_TV_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Oracle Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-Oracle-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 X2iezn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_X2iezn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - FSx for OpenZFS", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-FSx-for-OpenZFS_48.png" + }, { + "tag" : "Amazon Web Services - Polly", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Polly_48.png" + }, { + "tag" : "Amazon Web Services - Camera", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Camera_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Robotics", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Robotics_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Glacier Vault", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service-Glacier_Vault_48_Light.png" + }, { + "tag" : "Amazon Web Services - Timestream", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Timestream_48.png" + }, { + "tag" : "Amazon Web Services - CloudHSM", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CloudHSM_48.png" + }, { + "tag" : "Amazon Web Services - Application Cost Profiler", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Application-Cost-Profiler_48.png" + }, { + "tag" : "Amazon Web Services - EC2 F1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_F1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chatbot", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Chatbot_48.png" + }, { + "tag" : "Amazon Web Services - Pinpoint", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Pinpoint_48.png" + }, { + "tag" : "Amazon Web Services - OpenSearch Service Data Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-OpenSearch-Service_Data-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - EMR EMR Engine", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EMR_EMR-Engine_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Evidently", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Evidently_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Temperature Humidity Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Temperature-Humidity-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Snowball", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Snowball_48.png" + }, { + "tag" : "Amazon Web Services - IoT Button", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Button_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset Model", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-SiteWise_Asset-Model_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Container 3", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_Container-3_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Security Identity Compliance", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Security-Identity-Compliance_48.png" + }, { + "tag" : "Amazon Web Services - Simple Queue Service Message", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Queue-Service_Message_48_Light.png" + }, { + "tag" : "Amazon Web Services - Amplify", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Amplify_48.png" + }, { + "tag" : "Amazon Web Services - VPC Lattice", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-VPC-Lattice_48.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaLive", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-MediaLive_48.png" + }, { + "tag" : "Amazon Web Services - X Ray", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-X-Ray_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Stream Manager", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Stream-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Amazon FSx File Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Amazon-FSx-File-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Kubernetes", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Container-Kubernetes_48.png" + }, { + "tag" : "Amazon Web Services - OpenSearch Service Index", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-OpenSearch-Service_Index_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Generic", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Generic_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Queue Service Queue", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Queue-Service_Queue_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Maintenance Windows", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Maintenance-Windows_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EventBridge_48.png" + }, { + "tag" : "Amazon Web Services - Glue DataBrew", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Glue-DataBrew_48.png" + }, { + "tag" : "Amazon Web Services - Git Repository", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Git-Repository_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Hpc6id Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Hpc6id-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager OpsCenter", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_OpsCenter_48_Light.png" + }, { + "tag" : "Amazon Web Services - Outposts servers", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Outposts-servers_48.png" + }, { + "tag" : "Amazon Web Services - Internet", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Internet_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeCatalyst", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-CodeCatalyst_48.png" + }, { + "tag" : "Amazon Web Services - Category Storage", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Storage_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Change Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Change-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Map Namespace", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-Map-Namespace_48_Light.png" + }, { + "tag" : "Amazon Web Services - Omics", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Omics_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Device Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Device-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Attribute", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Attribute_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Labels", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Labels_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkDocs", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-WorkDocs_48.png" + }, { + "tag" : "Amazon Web Services - VPC NAT Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_NAT-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Bot Control", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Bot-Control_48_Light.png" + }, { + "tag" : "Amazon Web Services - AppStream", + "stroke" : "#2b8d78", + "color" : "#2b8d78", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-AppStream_48.png" + }, { + "tag" : "Amazon Web Services - AWS Management Console", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Management-Console_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Pipes", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Pipes_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C5a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - ElastiCache Cache Node", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-ElastiCache_Cache-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS CloudFormation Change Set", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-CloudFormation_Change-Set_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Appliances & Software", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-Appliances-&-Software_48.png" + }, { + "tag" : "Amazon Web Services - AWS Key Management Service External Key Store", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Key-Management-Service_External-Key-Store_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Data Store", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Analytics_Data-Store_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Lambda Function", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Lambda_Function_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Noise Simulator", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Noise-Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - NICE EnginFrame", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_NICE-EnginFrame_48.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Monitoring", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Monitoring_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Glue Crawler", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Glue_Crawler_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cloud Development Kit", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cloud-Development-Kit_48.png" + }, { + "tag" : "Amazon Web Services - Elastic File System One Zone", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_One-Zone_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 A1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_A1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chime SDK", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Chime-SDK_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Car", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Car_48_Light.png" + }, { + "tag" : "Amazon Web Services - Client", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Client_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Cached Volume", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Cached-Volume_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Shield AWS Shield Advanced", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Shield_AWS-Shield-Advanced_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Stack2", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Stack2_48_Light.png" + }, { + "tag" : "Amazon Web Services - Audit Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Audit-Manager_48.png" + }, { + "tag" : "Amazon Web Services - DataZone Data Portal", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DataZone_Data-Portal_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 DB Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_DB-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Bicycle", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Bicycle_48_Light.png" + }, { + "tag" : "Amazon Web Services - Textract Analyze Lending", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Textract_Analyze-Lending_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transit Gateway Attachment", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Transit-Gateway_Attachment_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 P4de Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_P4de-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - OpsWorks", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-OpsWorks_48.png" + }, { + "tag" : "Amazon Web Services - Snowcone", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Snowcone_48.png" + }, { + "tag" : "Amazon Web Services - Aurora MySQL Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-MySQL-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - EventBridge Event", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Event_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Stream", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Stream_48_Light.png" + }, { + "tag" : "Amazon Web Services - Tape storage", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Tape-storage_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management MFA Token", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_MFA-Token_48_Light.png" + }, { + "tag" : "Amazon Web Services - ParallelCluster", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-ParallelCluster_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Windfarm", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Windfarm_48_Light.png" + }, { + "tag" : "Amazon Web Services - DataZone Data Projects", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DataZone_Data-Projects_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS on VMware", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-RDS-on-VMware_48.png" + }, { + "tag" : "Amazon Web Services - Cloud9", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cloud9_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M5zn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M5zn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Satellite", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Satellite_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C6gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Client VPN", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Client-VPN_48.png" + }, { + "tag" : "Amazon Web Services - EC2 T4g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_T4g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 I4i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_I4i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Simulator", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Simulator_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Layers", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Layers_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Is4gen Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Is4gen-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Alexa Enabled Device", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Alexa_Enabled-Device_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Relay", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Relay_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Bad Bot", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Bad-Bot_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora PIOPS Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-PIOPS-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Elastic Network Interface", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Elastic-Network-Interface_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R5-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Rule", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - Marketplace", + "stroke" : "#232f3e", + "color" : "#232f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Marketplace_Light_48.png" + }, { + "tag" : "Amazon Web Services - EC2 R6idn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R6idn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 I2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_I2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis Firehose", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Kinesis-Firehose_48.png" + }, { + "tag" : "Amazon Web Services - EC2 M6g Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M6g-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Support", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Support_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Mac Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Mac-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - User", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_User_48_Light.png" + }, { + "tag" : "Amazon Web Services - Systems Manager", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Systems-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Object Lambda Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Object-Lambda-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - App Mesh", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-App-Mesh_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT LoRaWAN Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_LoRaWAN-Protocol _48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Inf2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Inf2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Automation", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Automation_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkMail", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-WorkMail_48.png" + }, { + "tag" : "Amazon Web Services - EC2 X1e Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_X1e-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Map Resource", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-Map-Resource_48_Light.png" + }, { + "tag" : "Amazon Web Services - Express Workflows", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Express-Workflows_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Container 1", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_Container-1_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Trainium Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Trainium-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Fault Tolerant", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Trusted-Advisor_Checklist-Fault-Tolerant_48_Light.png" + }, { + "tag" : "Amazon Web Services - Deep Learning Containers", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Deep-Learning-Containers_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Batch Operations", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Batch-Operations_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Application Integration", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Application-Integration_48.png" + }, { + "tag" : "Amazon Web Services - EC2 P3dn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_P3dn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5n Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C5n-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Trusted Advisor", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Trusted-Advisor_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service ECS Anywhere", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_ECS-Anywhere_48_Light.png" + }, { + "tag" : "Amazon Web Services - Amazonsail", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Lightsail_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing PLC", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_PLC_48_Light.png" + }, { + "tag" : "Amazon Web Services - ElastiCache ElastiCache for Memcached", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-ElastiCache_ElastiCache-for-Memcached_48_Light.png" + }, { + "tag" : "Amazon Web Services - Thinkbox Krakatoa", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Thinkbox-Krakatoa_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Transcoder", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Transcoder_48.png" + }, { + "tag" : "Amazon Web Services - Elastic File System File System", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_File-System_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS AS2", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Transfer-Family_AWS-AS2_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 T3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_T3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Analytics", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Analytics_48.png" + }, { + "tag" : "Amazon Web Services - Location Service Geofence", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Location-Service_Geofence_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis Data Analytics", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Kinesis-Data-Analytics_48.png" + }, { + "tag" : "Amazon Web Services - Alexa For Business", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Alexa-For-Business_48.png" + }, { + "tag" : "Amazon Web Services - FSx for NetApp ONTAP", + "stroke" : "#488e29", + "color" : "#488e29", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-FSx-for-NetApp-ONTAP_48.png" + }, { + "tag" : "Amazon Web Services - Redshift Data Sharing Governance", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_Data-Sharing-Governance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Recovery Time Objective", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Recovery-Time-Objective_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management IAM Access Analyzer", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_IAM-Access-Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudWatch", + "stroke" : "#cd2264", + "color" : "#cd2264", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-CloudWatch_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Encrypted Data", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Encrypted-Data_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Trusted Language Extensions for PostgreSQL", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS_Trusted-Language-Extensions-for-PostgreSQL_48_Light.png" + }, { + "tag" : "Amazon Web Services - SageMaker Train", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-SageMaker_Train_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chime", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Chime_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Permissions", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Permissions_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Industrial PC", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Industrial-PC_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Migration Hub Refactor Spaces Applications", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Migration-Hub_Refactor-Spaces-Applications_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Flow Logs", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Flow-Logs_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Virtual Machine Monitor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Virtual-Machine-Monitor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Cloud Financial Management", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Cloud-Financial-Management_48.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaPackage", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-MediaPackage_48.png" + }, { + "tag" : "Amazon Web Services - Lookout for Vision", + "stroke" : "#23836f", + "color" : "#23836f", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Lookout-for-Vision_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Change Calendar", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Change-Calendar_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT FleetWise", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-FleetWise_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Hardware Board", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Hardware-Board_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Traffic Mirroring", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Traffic-Mirroring_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 AWS Microservice Extractor for", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_AWS-Microservice-Extractor-for-.NET_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Migration Transfer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Migration-Transfer_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6in Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C6in-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Filtering Rule", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Filtering-Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Organizations Organizational Unit", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Organizations_Organizational-Unit_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5ad Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C5ad-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - OpenSearch Service Cluster Administrator Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-OpenSearch-Service_Cluster-Administrator-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - Internet alt2", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Internet-alt2_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Simulation", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-RoboMaker_Simulation_48_Light.png" + }, { + "tag" : "Amazon Web Services - Direct Connect", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Direct-Connect_48.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service Topic", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Notification-Service_Topic_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lambda", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Lambda_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Device Tester", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Device-Tester_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Recipe", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Recipe_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service Routes", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Location-Service_Routes_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis Video Streams", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Kinesis-Video-Streams_48.png" + }, { + "tag" : "Amazon Web Services - Database Migration Service", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Database-Migration-Service_48.png" + }, { + "tag" : "Amazon Web Services - EC2 R5n Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R5n-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System One Zone Infrequent Access", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_One-Zone-Infrequent-Access_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 D2 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_D2-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 One Zone IA", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-One-Zone-IA_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Tensor Network", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Tensor-Network_48_Light.png" + }, { + "tag" : "Amazon Web Services - Magnifying Glass", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Magnifying-Glass_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Application Discovery Service AWS Discovery Agent", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Application-Discovery-Service_AWS-Discovery-Agent_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora PostgreSQL Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-PostgreSQL-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Inventory", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Inventory_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Greengrass", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Greengrass_48.png" + }, { + "tag" : "Amazon Web Services - Redshift Query Editor v2", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_Query-Editor-v2.0_48_Light.png" + }, { + "tag" : "Amazon Web Services - DevOps Guru", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-DevOps-Guru_48.png" + }, { + "tag" : "Amazon Web Services - MQ Broker", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-MQ_Broker_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Developer Tools", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Developer-Tools_48.png" + }, { + "tag" : "Amazon Web Services - EC2 R7iz Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R7iz-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Volume", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Block-Store_Volume_48_Light.png" + }, { + "tag" : "Amazon Web Services - RoboMaker", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-RoboMaker_48.png" + }, { + "tag" : "Amazon Web Services - DevOps Guru Insights", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DevOps-Guru_Insights_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud9 Cloud9", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud9_Cloud9_48_Light.png" + }, { + "tag" : "Amazon Web Services - FSx", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-FSx_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service Service", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management IAM Roles Anywhere", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_IAM-Roles-Anywhere_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Cost", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Trusted-Advisor_Checklist-Cost_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeCommit", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CodeCommit_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Image Builder", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EC2-Image-Builder_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Geospatial ML", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-SageMaker_Geospatial-ML_48_Light.png" + }, { + "tag" : "Amazon Web Services - Config", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Config_48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Data Protection", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Data-Protection_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT HTTP2 Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_HTTP2-Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Lambda Lambda Function", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Lambda_Lambda-Function_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Component Nucleus", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Component-Nucleus_48_Light.png" + }, { + "tag" : "Amazon Web Services - EKS Cloud", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EKS-Cloud_48.png" + }, { + "tag" : "Amazon Web Services - DataSync", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-DataSync_48.png" + }, { + "tag" : "Amazon Web Services - AWS Glue Data Quality", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Glue_Data-Quality_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Amazon Data Lifecycle Manager", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Block-Store_Amazon-Data-Lifecycle-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - GameKit", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-GameKit_48.png" + }, { + "tag" : "Amazon Web Services - Global Accelerator", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Global-Accelerator_48.png" + }, { + "tag" : "Amazon Web Services - Aurora Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - MemoryDB for Redis", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-MemoryDB-for-Redis_48.png" + }, { + "tag" : "Amazon Web Services - Secrets Manager", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Secrets-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Managed Service for Prometheus", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Managed-Service-for-Prometheus_48.png" + }, { + "tag" : "Amazon Web Services - EC2 I3en Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_I3en-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Security Hub Finding", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Security-Hub_Finding_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Temperature Vibration Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Temperature-Vibration-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Streaming for Apache Kafka", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Managed-Streaming-for-Apache-Kafka_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT MQTT Protocol", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-MQTT_Protocol_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Management Governance", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Management-Governance_48.png" + }, { + "tag" : "Amazon Web Services - Alert", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Alert_48_Light.png" + }, { + "tag" : "Amazon Web Services - Step Functions", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Step-Functions_48.png" + }, { + "tag" : "Amazon Web Services - FSx for Lustre", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-FSx-for-Lustre_48.png" + }, { + "tag" : "Amazon Web Services - Cloud Control API", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cloud-Control-API_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Coffee Pot", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Coffee-Pot_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Elastic Beanstalk Application", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Elastic-Beanstalk_Application_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 On Outposts", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-On-Outposts_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Servo", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Servo_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Add on", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Add-on_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS OpsWorks Permissions", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-OpsWorks_Permissions_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Transfer Family AWS FTP", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Transfer-Family_AWS-FTP_48_Light.png" + }, { + "tag" : "Amazon Web Services - Deep Learning AMIs", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Deep-Learning-AMIs_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront Functions", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudFront_Functions_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Standard", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_Standard_48_Light.png" + }, { + "tag" : "Amazon Web Services - Verified Access", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Verified-Access_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Camera", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Camera_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Device Management Fleet Hub", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Device-Management_Fleet-Hub_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Action", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Action_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Reported State", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Reported-State_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Registry Registry", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Registry_Registry_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Oracle Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-Oracle-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Standard Access Table Class", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Standard-Access-Table-Class_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C5d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C5d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Transit Gateway", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Transit-Gateway_48.png" + }, { + "tag" : "Amazon Web Services - AppConfig", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-AppConfig_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Rescue", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Rescue_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaTailor", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-MediaTailor_48.png" + }, { + "tag" : "Amazon Web Services - Local Zones", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Local-Zones_48.png" + }, { + "tag" : "Amazon Web Services - DeepComposer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-DeepComposer_48.png" + }, { + "tag" : "Amazon Web Services - RDS Optimized Writes", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS_Optimized-Writes_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkDocs SDK", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-WorkDocs-SDK_48.png" + }, { + "tag" : "Amazon Web Services - Transfer Family", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Transfer-Family_48.png" + }, { + "tag" : "Amazon Web Services - VPC VPN Connection", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_VPN-Connection_48_Light.png" + }, { + "tag" : "Amazon Web Services - Transcribe", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Transcribe_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-CloudFront_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker Notebook", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-SageMaker_Notebook_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 P3 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_P3-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Location-Service_48.png" + }, { + "tag" : "Amazon Web Services - Budgets", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Budgets_48.png" + }, { + "tag" : "Amazon Web Services - Redshift RA3", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_RA3_48_Light.png" + }, { + "tag" : "Amazon Web Services - Athena Data Source Connectors", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Athena_Data-Source-Connectors_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Intelligent Tiering", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_Intelligent-Tiering_48_Light.png" + }, { + "tag" : "Amazon Web Services - Billing Conductor", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Billing-Conductor_48.png" + }, { + "tag" : "Amazon Web Services - DocumentDB", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-DocumentDB_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Legal Hold", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Legal-Hold_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora MySQL Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-MySQL-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Humidity Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Humidity-Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Database", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Database_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Vault Lock", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Vault-Lock_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora SQL Server Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-SQL-Server-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cloud Map", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cloud-Map_48.png" + }, { + "tag" : "Amazon Web Services - EC2 C6gn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C6gn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Service Catalog", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Service-Catalog_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Utility", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Utility_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Application Discovery Service AWS Agentless Collector", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Application-Discovery-Service_AWS-Agentless-Collector_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Virtual Machine", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Virtual-Machine_48_Light.png" + }, { + "tag" : "Amazon Web Services - WorkSpaces Family Amazon WorkSpaces Web", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces-Web_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Digital Interface", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-Digital-Interface_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Multi AZ DB Cluster", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS_Multi-AZ-DB-Cluster_48_Light.png" + }, { + "tag" : "Amazon Web Services - Monitron", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Monitron_48.png" + }, { + "tag" : "Amazon Web Services - Elastic File System Standard Infrequent Access", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-File-System_Standard-Infrequent-Access_48_Light.png" + }, { + "tag" : "Amazon Web Services - Managed Blockchain", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Managed-Blockchain_48.png" + }, { + "tag" : "Amazon Web Services - SageMaker", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-SageMaker_48.png" + }, { + "tag" : "Amazon Web Services - AWS Datasync Agent", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Datasync_Agent_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Hosted Zone", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53-Hosted-Zone_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Reachability Analyzer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Reachability-Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Over Air Update", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Over-Air-Update_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 DL1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_DL1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Directory Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Directory-Service_48.png" + }, { + "tag" : "Amazon Web Services - MQ", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-MQ_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Snapshot", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Block-Store_Snapshot_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Storage", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Storage_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R5gd Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R5gd-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Im4gn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Im4gn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - VMware Cloud on AWS", + "stroke" : "#e2730e", + "color" : "#e2730e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_VMware-Cloud-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Documents", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Documents_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Bucket With Objects", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_Bucket-With-Objects_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Load Balancing", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Elastic-Load-Balancing_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Standard", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Standard_48_Light.png" + }, { + "tag" : "Amazon Web Services - Application Migration Service", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Application-Migration-Service_48.png" + }, { + "tag" : "Amazon Web Services - Application Discovery Service", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Application-Discovery-Service_48.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Item", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Item_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lookout for Metrics", + "stroke" : "#23836f", + "color" : "#23836f", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Lookout-for-Metrics_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Alexa Voice Service", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Alexa_Voice-Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Lake Formation Data Lake", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Lake-Formation_Data-Lake_48_Light.png" + }, { + "tag" : "Amazon Web Services - Redshift Streaming Ingestion", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Redshift_Streaming-Ingestion_48_Light.png" + }, { + "tag" : "Amazon Web Services - Security Hub", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Security-Hub_48.png" + }, { + "tag" : "Amazon Web Services - AWS Elastic Beanstalk Deployment", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Elastic-Beanstalk_Deployment_48_Light.png" + }, { + "tag" : "Amazon Web Services - Mobile client", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Mobile-client_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset Hierarchy", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-SiteWise_Asset-Hierarchy_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Inference", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Inference_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Dataset", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Analytics_Dataset_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Alexa Skill", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Alexa_Skill_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Elastic IP Address", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Elastic-IP-Address_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Patch Manager", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Patch-Manager_48_Light.png" + }, { + "tag" : "Amazon Web Services - Aurora Amazon RDS Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora_Amazon-RDS-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Organizations Management Account", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Organizations_Management-Account_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB Table", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DynamoDB_Table_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Multi Region Access Points", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Multi-Region-Access-Points_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Data Exchange for APIs", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Data-Exchange-for-APIs_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M5a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M5a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Thinkbox Sequoia", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Thinkbox-Sequoia_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Rule", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Networking Content Delivery", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Networking-Content-Delivery_48.png" + }, { + "tag" : "Amazon Web Services - Managed Grafana", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Managed-Grafana_48.png" + }, { + "tag" : "Amazon Web Services - rePost", + "stroke" : "#3f51d4", + "color" : "#3f51d4", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-rePost_48.png" + }, { + "tag" : "Amazon Web Services - Security Lake", + "stroke" : "#e02f36", + "color" : "#e02f36", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Security-Lake_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Pipeline", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Analytics_Pipeline_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Simple-Notification-Service_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Stacklight", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Thing_Stacklight_48_Light.png" + }, { + "tag" : "Amazon Web Services - S3 on Outposts", + "stroke" : "#488e29", + "color" : "#488e29", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-S3-on-Outposts_48.png" + }, { + "tag" : "Amazon Web Services - CloudFormation", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CloudFormation_48.png" + }, { + "tag" : "Amazon Web Services - Comprehend Medical", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Comprehend-Medical_48.png" + }, { + "tag" : "Amazon Web Services - EC2 X2idn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_X2idn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Folder", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Folder_48_Light.png" + }, { + "tag" : "Amazon Web Services - SSL padlock", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_SSL-padlock_48_Light.png" + }, { + "tag" : "Amazon Web Services - Launch Wizard", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Launch-Wizard_48.png" + }, { + "tag" : "Amazon Web Services - Interactive Video Service", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Interactive-Video-Service_48.png" + }, { + "tag" : "Amazon Web Services - VPC VPN Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_VPN-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Console Mobile Application", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Console-Mobile-Application _48.png" + }, { + "tag" : "Amazon Web Services - CloudWatch Event Event Based", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudWatch_Event-Event-Based_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT SiteWise Asset", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-SiteWise_Asset_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Cart", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Cart_48_Light.png" + }, { + "tag" : "Amazon Web Services - Thinkbox XMesh", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Thinkbox-XMesh_48.png" + }, { + "tag" : "Amazon Web Services - Documents", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Documents_48_Light.png" + }, { + "tag" : "Amazon Web Services - Management Console", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Management-Console_48.png" + }, { + "tag" : "Amazon Web Services - Migration Hub", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Migration-Hub_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Multiple Volumes", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Block-Store_Multiple-Volumes_48_Light.png" + }, { + "tag" : "Amazon Web Services - DynamoDB", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-DynamoDB_48.png" + }, { + "tag" : "Amazon Web Services - EFS", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EFS_48.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Fleet Management", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-RoboMaker_Fleet-Management_48_Light.png" + }, { + "tag" : "Amazon Web Services - Email", + "stroke" : "#242f3e", + "color" : "#242f3e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Email_48_Light.png" + }, { + "tag" : "Amazon Web Services - DocumentDB Elastic Clusters", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-DocumentDB_Elastic-Clusters_48_Light.png" + }, { + "tag" : "Amazon Web Services - Athena", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Athena_48.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Developer", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Mainframe-Modernization_Developer_48_Light.png" + }, { + "tag" : "Amazon Web Services - IoT Core", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Core_48.png" + }, { + "tag" : "Amazon Web Services - Outposts rack", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Outposts-rack_48.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Parameter Store", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Parameter-Store_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 X1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_X1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Blockchain", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Blockchain_48.png" + }, { + "tag" : "Amazon Web Services - EC2 z1d Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_z1d-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Lake Formation", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Lake-Formation_48.png" + }, { + "tag" : "Amazon Web Services - Migration Evaluator", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Migration-Evaluator_48.png" + }, { + "tag" : "Amazon Web Services - EC2 R5ad Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R5ad-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 R6in Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_R6in-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Comprehend", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Comprehend_48.png" + }, { + "tag" : "Amazon Web Services - Route 53 Resolver Query Logging", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Resolver-Query-Logging_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Disk", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Disk_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kendra", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Kendra_48.png" + }, { + "tag" : "Amazon Web Services - Aurora MariaDB Instance", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Aurora-MariaDB-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Recover", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Recover_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Internet of Things", + "stroke" : "#418825", + "color" : "#418825", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Internet-of-Things_48.png" + }, { + "tag" : "Amazon Web Services - IoT ExpressLink", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-ExpressLink_48.png" + }, { + "tag" : "Amazon Web Services - AWS DataSync Discovery", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-DataSync_Discovery_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Customer Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Customer-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeGuru", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-CodeGuru_48.png" + }, { + "tag" : "Amazon Web Services - Organizations", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Organizations_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store Volume gp3", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Block-Store_Volume-gp3_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Instance with CloudWatch", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Instance-with-CloudWatch_48_Light.png" + }, { + "tag" : "Amazon Web Services - Folders", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Folders_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 2", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Simulator-2_48_Light.png" + }, { + "tag" : "Amazon Web Services - Data Exchange", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Data-Exchange_48.png" + }, { + "tag" : "Amazon Web Services - Outposts family", + "stroke" : "#fefcfb", + "color" : "#fefcfb", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Outposts-family_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Fire TV Stick", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Fire-TV_Stick_48_Light.png" + }, { + "tag" : "Amazon Web Services - Genomics CLI", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Genomics-CLI_48.png" + }, { + "tag" : "Amazon Web Services - CodeStar", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CodeStar_48.png" + }, { + "tag" : "Amazon Web Services - Tools and SDKs", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Tools-and-SDKs_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Factory", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Factory_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Converter", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Mainframe-Modernization_Converter_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Noncached Volume", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Noncached-Volume_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Elastic Network Adapter", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Elastic-Network-Adapter_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Instances", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Instances_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS CloudFormation Template", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-CloudFormation_Template_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS RoboMaker Development Environment", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-RoboMaker_Development-Environment_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 X2iedn Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_X2iedn-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Snowball Snowball Import Export", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Snowball_Snowball-Import-Export_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket QPU", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_QPU_48_Light.png" + }, { + "tag" : "Amazon Web Services - MSK Amazon MSK Connect", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-MSK_Amazon-MSK-Connect_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Systems Manager Compliance", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Systems-Manager_Compliance_48_Light.png" + }, { + "tag" : "Amazon Web Services - TensorFlow on AWS", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_TensorFlow-on-AWS_48.png" + }, { + "tag" : "Amazon Web Services - AWS Cloud Map Service", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Cloud-Map_Service_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Medical Emergency", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Medical-Emergency_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management Role", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_Role_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Glue Data Catalog", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Glue_Data-Catalog_48_Light.png" + }, { + "tag" : "Amazon Web Services - Thinkbox Frost", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Thinkbox-Frost_48.png" + }, { + "tag" : "Amazon Web Services - Activate", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Activate_48.png" + }, { + "tag" : "Amazon Web Services - Training Certification", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Training-Certification_48.png" + }, { + "tag" : "Amazon Web Services - EC2 D3en Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_D3en-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Notification Service HTTP Notification", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Notification-Service_HTTP-Notification_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53 Route Table", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Route-53_Route-Table_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Mainframe Modernization Compiler", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Mainframe-Modernization_Compiler_48_Light.png" + }, { + "tag" : "Amazon Web Services - Braket", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Braket_48.png" + }, { + "tag" : "Amazon Web Services - AWS Identity Access Management AWS STS Alternate", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Identity-Access-Management_AWS-STS-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - SageMaker Ground Truth", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-SageMaker-Ground-Truth_48.png" + }, { + "tag" : "Amazon Web Services - CloudSearch Search Documents", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudSearch_Search-Documents_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Live", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-Live_48.png" + }, { + "tag" : "Amazon Web Services - Aurora", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Aurora_48.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Bot", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Bot_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Standard IA", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Standard-IA_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Glacier Instant Retrieval", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Glacier-Instant-Retrieval_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudFront Streaming Distribution", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudFront_Streaming-Distribution_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS Migration Hub Refactor Spaces Environments", + "stroke" : "#067f68", + "color" : "#067f68", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Migration-Hub_Refactor-Spaces-Environments_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Sensor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Sensor_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M6i Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M6i-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Network Access Analyzer", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Network-Access-Analyzer_48_Light.png" + }, { + "tag" : "Amazon Web Services - Location Service Map", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Location-Service_Map_48_Light.png" + }, { + "tag" : "Amazon Web Services - Chime Voice Connector", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Chime-Voice-Connector_48.png" + }, { + "tag" : "Amazon Web Services - Lex", + "stroke" : "#21816d", + "color" : "#21816d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Lex_48.png" + }, { + "tag" : "Amazon Web Services - Chat", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Chat_48_Light.png" + }, { + "tag" : "Amazon Web Services - Quicksight Paginated Reports", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Quicksight_Paginated-Reports_48_Light.png" + }, { + "tag" : "Amazon Web Services - Key Management Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Key-Management-Service_48.png" + }, { + "tag" : "Amazon Web Services - License Manager", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-License-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Service Management Connector", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Service-Management-Connector_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Connector", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Connector_48_Light.png" + }, { + "tag" : "Amazon Web Services - Certificate Manager", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Certificate-Manager_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Disaster Recovery", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elastic-Disaster-Recovery_48.png" + }, { + "tag" : "Amazon Web Services - Kinesis Data Streams", + "stroke" : "#6a3dc6", + "color" : "#6a3dc6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Kinesis-Data-Streams_48.png" + }, { + "tag" : "Amazon Web Services - Server Migration Service", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Server-Migration-Service_48.png" + }, { + "tag" : "Amazon Web Services - EventBridge Schema Registry", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EventBridge_Schema-Registry_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Greengrass Interprocess Communication", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Greengrass_Interprocess-Communication_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Analytics Notebook", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Analytics_Notebook_48_Light.png" + }, { + "tag" : "Amazon Web Services - Batch", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Batch_48.png" + }, { + "tag" : "Amazon Web Services - CloudFront Edge Location", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-CloudFront_Edge-Location_48_Light.png" + }, { + "tag" : "Amazon Web Services - Private Certificate Authority", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Private-Certificate-Authority_48.png" + }, { + "tag" : "Amazon Web Services - Panorama", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Panorama_48.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Topic", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Topic_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Replication", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Replication_48_Light.png" + }, { + "tag" : "Amazon Web Services - Keyspaces", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Keyspaces_48.png" + }, { + "tag" : "Amazon Web Services - Elemental Delta", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-Delta_48.png" + }, { + "tag" : "Amazon Web Services - Fraud Detector", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Fraud-Detector_48.png" + }, { + "tag" : "Amazon Web Services - AWS Storage Gateway Tape Gateway", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Storage-Gateway_Tape-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - RDS Proxy Instance Alternate", + "stroke" : "#2e27ad", + "color" : "#2e27ad", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-RDS-Proxy-Instance-Alternate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Cost and Usage Report", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Cost-and-Usage-Report_48.png" + }, { + "tag" : "Amazon Web Services - EC2 AMI", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_AMI_48_Light.png" + }, { + "tag" : "Amazon Web Services - EKS Anywhere", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EKS-Anywhere_48.png" + }, { + "tag" : "Amazon Web Services - IoT 1 Click", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-1-Click_48.png" + }, { + "tag" : "Amazon Web Services - Category Business Applications", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Business-Applications_48.png" + }, { + "tag" : "Amazon Web Services - EC2 T3a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_T3a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elemental Conductor", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-Conductor_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Glacier Flexible Retrieval", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Glacier-Flexible-Retrieval_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Simple-Storage-Service_48.png" + }, { + "tag" : "Amazon Web Services - Elemental MediaConvert", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Elemental-MediaConvert_48.png" + }, { + "tag" : "Amazon Web Services - SDK", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_SDK_48_Light.png" + }, { + "tag" : "Amazon Web Services - VPC Carrier Gateway", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-VPC_Carrier-Gateway_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Replication Time Control", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Replication-Time-Control_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Police Emergency", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Police-Emergency_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Email Service", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Simple-Email-Service_48.png" + }, { + "tag" : "Amazon Web Services - AWS App Mesh Virtual Node", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-App-Mesh-Virtual-Node_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 M6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_M6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - CloudShell", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CloudShell_48.png" + }, { + "tag" : "Amazon Web Services - Verified Permissions", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Verified-Permissions_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service Bucket", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_Bucket_48_Light.png" + }, { + "tag" : "Amazon Web Services - Virtual Private Cloud", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Virtual-Private-Cloud_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Service ECS Service Connect", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Service_ECS-Service-Connect_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Thing Bank", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Thing_Bank_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Queue Service", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Simple-Queue-Service_48.png" + }, { + "tag" : "Amazon Web Services - AWS Backup Compliance Reporting", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Backup_Compliance-Reporting_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeWhisperer", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-CodeWhisperer_48.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Storage Lens", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Storage-Lens_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 C4 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_C4-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - AppFlow", + "stroke" : "#d72b6c", + "color" : "#d72b6c", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-AppFlow_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Container Registry Image", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Container-Registry_Image_48_Light.png" + }, { + "tag" : "Amazon Web Services - Simple Storage Service S3 Object Lambda", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Simple-Storage-Service_S3-Object-Lambda_48_Light.png" + }, { + "tag" : "Amazon Web Services - Kinesis", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Kinesis_48.png" + }, { + "tag" : "Amazon Web Services - CodeDeploy", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CodeDeploy_48.png" + }, { + "tag" : "Amazon Web Services - Elastic Block Store", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Elastic-Block-Store_48.png" + }, { + "tag" : "Amazon Web Services - Neuron", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Neuron_48.png" + }, { + "tag" : "Amazon Web Services - Device Farm", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Device-Farm_48.png" + }, { + "tag" : "Amazon Web Services - AWS Trusted Advisor Checklist Security", + "stroke" : "#b0084d", + "color" : "#b0084d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-Trusted-Advisor_Checklist-Security_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Core Device Advisor", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT-Core_Device-Advisor_48_Light.png" + }, { + "tag" : "Amazon Web Services - Route 53", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Route-53_48.png" + }, { + "tag" : "Amazon Web Services - IoT Device Management", + "stroke" : "#468c28", + "color" : "#468c28", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IoT-Device-Management_48.png" + }, { + "tag" : "Amazon Web Services - File Cache Hybrid NFS linked datasets", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-File-Cache_Hybrid-NFS-linked-datasets_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-EC2_48.png" + }, { + "tag" : "Amazon Web Services - Mainframe Modernization", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Mainframe-Modernization_48.png" + }, { + "tag" : "Amazon Web Services - EC2 Habana Gaudi Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Habana-Gaudi-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Elastic Kubernetes Service EKS on Outposts", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Elastic-Kubernetes-Service_EKS-on-Outposts_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Hpc6a Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Hpc6a-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Servers", + "stroke" : "#232f3d", + "color" : "#232f3d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Servers_48_Light.png" + }, { + "tag" : "Amazon Web Services - EC2 Trn1 Instance", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EC2_Trn1-Instance_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category End User Computing", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_End-User-Computing_48.png" + }, { + "tag" : "Amazon Web Services - DataZone", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-DataZone_48.png" + }, { + "tag" : "Amazon Web Services - EMR Cluster", + "stroke" : "#4d27aa", + "color" : "#4d27aa", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-EMR_Cluster_48_Light.png" + }, { + "tag" : "Amazon Web Services - CodeBuild", + "stroke" : "#4053d6", + "color" : "#4053d6", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-CodeBuild_48.png" + }, { + "tag" : "Amazon Web Services - Category VR AR", + "stroke" : "#da2e6e", + "color" : "#da2e6e", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_VR-AR_48.png" + }, { + "tag" : "Amazon Web Services - Clean Rooms", + "stroke" : "#814ede", + "color" : "#814ede", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-Clean-Rooms_48.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 3", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Simulator-3_48_Light.png" + }, { + "tag" : "Amazon Web Services - IAM Identity Center", + "stroke" : "#de2d34", + "color" : "#de2d34", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-IAM-Identity-Center_48.png" + }, { + "tag" : "Amazon Web Services - App Runner", + "stroke" : "#e5770d", + "color" : "#e5770d", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_AWS-App-Runner_48.png" + }, { + "tag" : "Amazon Web Services - AWS WAF Managed Rule", + "stroke" : "#bf0816", + "color" : "#bf0816", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-WAF_Managed-Rule_48_Light.png" + }, { + "tag" : "Amazon Web Services - AWS IoT Certificate", + "stroke" : "#3f8624", + "color" : "#3f8624", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_AWS-IoT_Certificate_48_Light.png" + }, { + "tag" : "Amazon Web Services - Translate", + "stroke" : "#2d8f7a", + "color" : "#2d8f7a", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch_Amazon-Translate_48.png" + }, { + "tag" : "Amazon Web Services - Braket Simulator 4", + "stroke" : "#d45b07", + "color" : "#d45b07", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Res_Amazon-Braket_Simulator-4_48_Light.png" + }, { + "tag" : "Amazon Web Services - Category Games", + "stroke" : "#7545d1", + "color" : "#7545d1", + "icon" : "https://static.structurizr.com/themes/amazon-web-services-2023.01.31/Arch-Category_Games_48.png" + } ] +} diff --git a/server/src/main/resources/structurizr/default.json b/server/src/main/resources/structurizr/default.json new file mode 100644 index 000000000..e7deb6a4f --- /dev/null +++ b/server/src/main/resources/structurizr/default.json @@ -0,0 +1,27 @@ +{ + "name" : "Default theme", + "elements" : [ { + "tag" : "Element", + "shape" : "RoundedBox" + }, { + "tag" : "Software System", + "background" : "#1168bd", + "color" : "#ffffff" + }, { + "tag" : "Container", + "background" : "#438dd5", + "color" : "#ffffff" + }, { + "tag" : "Component", + "background" : "#85bbf0", + "color" : "#000000" + }, { + "tag" : "Person", + "background" : "#08427b", + "color" : "#ffffff", + "shape" : "Person" + }, { + "tag" : "Infrastructure Node", + "background" : "#ffffff" + } ] +} diff --git a/server/src/main/resources/structurizr/microsoft-azure.json b/server/src/main/resources/structurizr/microsoft-azure-2021.01.26.json similarity index 100% rename from server/src/main/resources/structurizr/microsoft-azure.json rename to server/src/main/resources/structurizr/microsoft-azure-2021.01.26.json diff --git a/server/src/main/resources/structurizr/microsoft-azure-2023.01.24.json b/server/src/main/resources/structurizr/microsoft-azure-2023.01.24.json new file mode 100644 index 000000000..f954d6f5e --- /dev/null +++ b/server/src/main/resources/structurizr/microsoft-azure-2023.01.24.json @@ -0,0 +1,2530 @@ +{ + "name" : "Microsoft Azure", + "description" : "This theme includes element styles with icons for each of the Azure services, based upon the Microsoft Azure icon set (https://docs.microsoft.com/en-us/azure/architecture/icons/).", + "elements" : [ { + "tag" : "Microsoft Azure - Container Apps Environments", + "stroke" : "#9869eb", + "color" : "#9869eb", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02989-icon-service-Container-Apps-Environments.png" + }, { + "tag" : "Microsoft Azure - Controls Horizontal", + "stroke" : "#5e9624", + "color" : "#5e9624", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10790-icon-service-Controls-Horizontal.png" + }, { + "tag" : "Microsoft Azure - Tenant Status", + "stroke" : "#b31b1b", + "color" : "#b31b1b", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10342-icon-service-Tenant-Status.png" + }, { + "tag" : "Microsoft Azure - Intune App Protection", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10344-icon-service-Intune-App-Protection.png" + }, { + "tag" : "Microsoft Azure - Learn", + "stroke" : "#54aef0", + "color" : "#54aef0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10816-icon-service-Learn.png" + }, { + "tag" : "Microsoft Azure - Azure Fileshares", + "stroke" : "#50e5ff", + "color" : "#50e5ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10400-icon-service-Azure-Fileshares.png" + }, { + "tag" : "Microsoft Azure - Web App + Database", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02515-icon-service-Web-App-%2B-Database.png" + }, { + "tag" : "Microsoft Azure - Image Templates", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02634-icon-service-Image-Templates.png" + }, { + "tag" : "Microsoft Azure - Data Lake Store Gen1", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10150-icon-service-Data-Lake-Store-Gen1.png" + }, { + "tag" : "Microsoft Azure - Private Link Services", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02209-icon-service-Private-Link-Services.png" + }, { + "tag" : "Microsoft Azure - Feature Previews", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10827-icon-service-Feature-Previews.png" + }, { + "tag" : "Microsoft Azure - Update Management Center", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02846-icon-service-Update-Management-Center.png" + }, { + "tag" : "Microsoft Azure - Activity Log", + "stroke" : "#54aef0", + "color" : "#54aef0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00007-icon-service-Activity-Log.png" + }, { + "tag" : "Microsoft Azure - Load Balancer Hub", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02302-icon-service-Load-Balancer-Hub.png" + }, { + "tag" : "Microsoft Azure - Azure AD Authentication Methods", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03343-icon-service-Azure-AD-Authentication-Methods.png" + }, { + "tag" : "Microsoft Azure - Elastic SAN", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03190-icon-service-Elastic-SAN.png" + }, { + "tag" : "Microsoft Azure - Automanaged VM", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02112-icon-service-Automanaged-VM.png" + }, { + "tag" : "Microsoft Azure - Resource Explorer", + "stroke" : "#ef7100", + "color" : "#ef7100", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10349-icon-service-Resource-Explorer.png" + }, { + "tag" : "Microsoft Azure - Reserved IP Addresses (Classic)", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10371-icon-service-Reserved-IP-Addresses-(Classic).png" + }, { + "tag" : "Microsoft Azure - Azure Sentinel", + "stroke" : "#c3f1ff", + "color" : "#c3f1ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10248-icon-service-Azure-Sentinel.png" + }, { + "tag" : "Microsoft Azure - Elastic Job Agents", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10128-icon-service-Elastic-Job-Agents.png" + }, { + "tag" : "Microsoft Azure - Azure Chaos Studio", + "stroke" : "#a80000", + "color" : "#a80000", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02223-icon-service-Azure-Chaos-Studio.png" + }, { + "tag" : "Microsoft Azure - VM Images (Classic)", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10040-icon-service-VM-Images-(Classic).png" + }, { + "tag" : "Microsoft Azure - Host Pools", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00328-icon-service-Host-Pools.png" + }, { + "tag" : "Microsoft Azure - Logic Apps Custom Connector", + "stroke" : "#6dae2a", + "color" : "#6dae2a", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10363-icon-service-Logic-Apps-Custom-Connector.png" + }, { + "tag" : "Microsoft Azure - Media", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10854-icon-service-Media.png" + }, { + "tag" : "Microsoft Azure - Controls", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10789-icon-service-Controls.png" + }, { + "tag" : "Microsoft Azure - Managed Identities", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10227-icon-service-Managed-Identities.png" + }, { + "tag" : "Microsoft Azure - Bastions", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02422-icon-service-Bastions.png" + }, { + "tag" : "Microsoft Azure - Relays", + "stroke" : "#999999", + "color" : "#999999", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10209-icon-service-Relays.png" + }, { + "tag" : "Microsoft Azure - Edge Management", + "stroke" : "#579ded", + "color" : "#579ded", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10117-icon-service-Edge-Management.png" + }, { + "tag" : "Microsoft Azure - Key Vaults", + "stroke" : "#ffd70f", + "color" : "#ffd70f", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10245-icon-service-Key-Vaults.png" + }, { + "tag" : "Microsoft Azure - Container Instances", + "stroke" : "#a67af4", + "color" : "#a67af4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10104-icon-service-Container-Instances.png" + }, { + "tag" : "Microsoft Azure - Managed Desktop", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10311-icon-service-Managed-Desktop.png" + }, { + "tag" : "Microsoft Azure - Azure Storage Mover", + "stroke" : "#b14d95", + "color" : "#b14d95", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03091-icon-service-Azure-Storage-Mover.png" + }, { + "tag" : "Microsoft Azure - Device Enrollment", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10337-icon-service-Device-Enrollment.png" + }, { + "tag" : "Microsoft Azure - Application Group", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00329-icon-service-Application-Group.png" + }, { + "tag" : "Microsoft Azure - Storage Tasks", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02909-icon-service-Storage-Tasks.png" + }, { + "tag" : "Microsoft Azure - ExtendedSecurityUpdates", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10572-icon-service-ExtendedSecurityUpdates.png" + }, { + "tag" : "Microsoft Azure - Local Network Gateways", + "stroke" : "#4aa599", + "color" : "#4aa599", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10077-icon-service-Local-Network-Gateways.png" + }, { + "tag" : "Microsoft Azure - Instance Pools", + "stroke" : "#777777", + "color" : "#777777", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10139-icon-service-Instance-Pools.png" + }, { + "tag" : "Microsoft Azure - Management Portal", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10820-icon-service-Management-Portal.png" + }, { + "tag" : "Microsoft Azure - Data Lake Storage Gen1", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10090-icon-service-Data-Lake-Storage-Gen1.png" + }, { + "tag" : "Microsoft Azure - Administrative Units", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00919-icon-service-Administrative-Units.png" + }, { + "tag" : "Microsoft Azure - Azure Applied AI Services", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02749-icon-service-Azure-Applied-AI-Services.png" + }, { + "tag" : "Microsoft Azure - Computer Vision", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00792-icon-service-Computer-Vision.png" + }, { + "tag" : "Microsoft Azure - Service Fabric Clusters", + "stroke" : "#e27908", + "color" : "#e27908", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10036-icon-service-Service-Fabric-Clusters.png" + }, { + "tag" : "Microsoft Azure - Event Hub Clusters", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10149-icon-service-Event-Hub-Clusters.png" + }, { + "tag" : "Microsoft Azure - Region Management", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10116-icon-service-Region-Management.png" + }, { + "tag" : "Microsoft Azure - Ceres", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02828-icon-service-Ceres.png" + }, { + "tag" : "Microsoft Azure - Azure AD Risky Users", + "stroke" : "#59b4d9", + "color" : "#59b4d9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03342-icon-service-Azure-AD-Risky-Users.png" + }, { + "tag" : "Microsoft Azure - Service Endpoint Policies", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10085-icon-service-Service-Endpoint-Policies.png" + }, { + "tag" : "Microsoft Azure - Spot VMSS", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02692-icon-service-Spot-VMSS.png" + }, { + "tag" : "Microsoft Azure - Batch Accounts", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10031-icon-service-Batch-Accounts.png" + }, { + "tag" : "Microsoft Azure - Savings Plans", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02880-icon-service-Savings-Plans.png" + }, { + "tag" : "Microsoft Azure - Diagnostics Settings", + "stroke" : "#5e9624", + "color" : "#5e9624", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00008-icon-service-Diagnostics-Settings.png" + }, { + "tag" : "Microsoft Azure - Private Link", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00427-icon-service-Private-Link.png" + }, { + "tag" : "Microsoft Azure - On Premises Data Gateways", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10070-icon-service-On-Premises-Data-Gateways.png" + }, { + "tag" : "Microsoft Azure - Event Grid Domains", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10215-icon-service-Event-Grid-Domains.png" + }, { + "tag" : "Microsoft Azure - Device Configuration", + "stroke" : "#5b9fee", + "color" : "#5b9fee", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10338-icon-service-Device-Configuration.png" + }, { + "tag" : "Microsoft Azure - Windows Notification Services", + "stroke" : "#ffb34d", + "color" : "#ffb34d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02733-icon-service-Windows-Notification-Services.png" + }, { + "tag" : "Microsoft Azure - IoT Edge", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10186-icon-service-IoT-Edge.png" + }, { + "tag" : "Microsoft Azure - Intune For Education", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10343-icon-service-Intune-For-Education.png" + }, { + "tag" : "Microsoft Azure - Outbound Connection", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10364-icon-service-Outbound-Connection.png" + }, { + "tag" : "Microsoft Azure - Host Groups", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10346-icon-service-Host-Groups.png" + }, { + "tag" : "Microsoft Azure - Automation Accounts", + "stroke" : "#599eed", + "color" : "#599eed", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00022-icon-service-Automation-Accounts.png" + }, { + "tag" : "Microsoft Azure - Maintenance Configuration", + "stroke" : "#7a7a7a", + "color" : "#7a7a7a", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00195-icon-service-Maintenance-Configuration.png" + }, { + "tag" : "Microsoft Azure - DNS Private Resolver", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02882-icon-service-DNS-Private-Resolver.png" + }, { + "tag" : "Microsoft Azure - Azure SQL Edge", + "stroke" : "#0072c6", + "color" : "#0072c6", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02750-icon-service-Azure-SQL-Edge.png" + }, { + "tag" : "Microsoft Azure - Journey Hub", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10814-icon-service-Journey-Hub.png" + }, { + "tag" : "Microsoft Azure - Device Security Apple", + "stroke" : "#dc92bf", + "color" : "#dc92bf", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00399-icon-service-Device-Security-Apple.png" + }, { + "tag" : "Microsoft Azure - Azure Deployment Environments", + "stroke" : "#3cd4c2", + "color" : "#3cd4c2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03251-icon-service-Azure-Deployment-Environments.png" + }, { + "tag" : "Microsoft Azure - Cost Analysis", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10792-icon-service-Cost-Analysis.png" + }, { + "tag" : "Microsoft Azure - Genomics Accounts", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10164-icon-service-Genomics-Accounts.png" + }, { + "tag" : "Microsoft Azure - Azure AD Domain Services", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10222-icon-service-Azure-AD-Domain-Services.png" + }, { + "tag" : "Microsoft Azure - Azure NetApp Files", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10096-icon-service-Azure-NetApp-Files.png" + }, { + "tag" : "Microsoft Azure - Azure AD Identity Protection", + "stroke" : "#f78d1e", + "color" : "#f78d1e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10231-icon-service-Azure-AD-Identity-Protection.png" + }, { + "tag" : "Microsoft Azure - App Services", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10035-icon-service-App-Services.png" + }, { + "tag" : "Microsoft Azure - Marketplace Management", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10112-icon-service-Marketplace-Management.png" + }, { + "tag" : "Microsoft Azure - Heart", + "stroke" : "#e62323", + "color" : "#e62323", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10811-icon-service-Heart.png" + }, { + "tag" : "Microsoft Azure - Cost Management and Billing", + "stroke" : "#ffca00", + "color" : "#ffca00", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00004-icon-service-Cost-Management-and-Billing.png" + }, { + "tag" : "Microsoft Azure - Azure Active Directory", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10221-icon-service-Azure-Active-Directory.png" + }, { + "tag" : "Microsoft Azure - Azure Spring Apps", + "stroke" : "#5fb832", + "color" : "#5fb832", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10370-icon-service-Azure-Spring-Apps.png" + }, { + "tag" : "Microsoft Azure - Cost Management", + "stroke" : "#74b92c", + "color" : "#74b92c", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10019-icon-service-Cost-Management.png" + }, { + "tag" : "Microsoft Azure - User Settings", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10433-icon-service-User-Settings.png" + }, { + "tag" : "Microsoft Azure - Peering Service", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00970-icon-service-Peering-Service.png" + }, { + "tag" : "Microsoft Azure - Log Streaming", + "stroke" : "#f78d1e", + "color" : "#f78d1e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10819-icon-service-Log-Streaming.png" + }, { + "tag" : "Microsoft Azure - Powershell", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10825-icon-service-Powershell.png" + }, { + "tag" : "Microsoft Azure - Azure VMware Solution", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01219-icon-service-Azure-VMware-Solution.png" + }, { + "tag" : "Microsoft Azure - Help and Support", + "stroke" : "#767676", + "color" : "#767676", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10013-icon-service-Help-and-Support.png" + }, { + "tag" : "Microsoft Azure - Azure Network Function Manager Functions", + "stroke" : "#b796f9", + "color" : "#b796f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01001-icon-service-Azure-Network-Function-Manager-Functions.png" + }, { + "tag" : "Microsoft Azure - Server Farm", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10835-icon-service-Server-Farm.png" + }, { + "tag" : "Microsoft Azure - Identity Governance", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10235-icon-service-Identity-Governance.png" + }, { + "tag" : "Microsoft Azure - Template Specs", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02340-icon-service-Template-Specs.png" + }, { + "tag" : "Microsoft Azure - Virtual Networks", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10061-icon-service-Virtual-Networks.png" + }, { + "tag" : "Microsoft Azure - Azure Database PostgreSQL Server Group", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02827-icon-service-Azure-Database-PostgreSQL-Server-Group.png" + }, { + "tag" : "Microsoft Azure - Kubernetes Services", + "stroke" : "#341a6e", + "color" : "#341a6e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10023-icon-service-Kubernetes-Services.png" + }, { + "tag" : "Microsoft Azure - Industrial IoT", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02359-icon-service-Industrial-IoT.png" + }, { + "tag" : "Microsoft Azure - Subnet", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02742-icon-service-Subnet.png" + }, { + "tag" : "Microsoft Azure - Education", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00026-icon-service-Education.png" + }, { + "tag" : "Microsoft Azure - Service Catalog MAD", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00027-icon-service-Service-Catalog-MAD.png" + }, { + "tag" : "Microsoft Azure - Azure Stack Edge", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10095-icon-service-Azure-Stack-Edge.png" + }, { + "tag" : "Microsoft Azure - Web Application Firewall Policies(WAF)", + "stroke" : "#821010", + "color" : "#821010", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10362-icon-service-Web-Application-Firewall-Policies(WAF).png" + }, { + "tag" : "Microsoft Azure - Availability Sets", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10025-icon-service-Availability-Sets.png" + }, { + "tag" : "Microsoft Azure - Quickstart Center", + "stroke" : "#f78d1e", + "color" : "#f78d1e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10010-icon-service-Quickstart-Center.png" + }, { + "tag" : "Microsoft Azure - Resource Guard", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02819-icon-service-Resource-Guard.png" + }, { + "tag" : "Microsoft Azure - HD Insight Clusters", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10142-icon-service-HD-Insight-Clusters.png" + }, { + "tag" : "Microsoft Azure - Network Security Perimeters", + "stroke" : "#ffbd02", + "color" : "#ffbd02", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02939-icon-service-Network-Security-Perimeters.png" + }, { + "tag" : "Microsoft Azure - Open Supply Chain Platform", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02602-icon-service-Open-Supply-Chain-Platform.png" + }, { + "tag" : "Microsoft Azure - Private Link Service", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01105-icon-service-Private-Link-Service.png" + }, { + "tag" : "Microsoft Azure - Production Ready Database", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10829-icon-service-Production-Ready-Database.png" + }, { + "tag" : "Microsoft Azure - Solutions", + "stroke" : "#31d1f2", + "color" : "#31d1f2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00021-icon-service-Solutions.png" + }, { + "tag" : "Microsoft Azure - Connected Cache", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02509-icon-service-Connected-Cache.png" + }, { + "tag" : "Microsoft Azure - FHIR Service", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02658-icon-service-FHIR-Service.png" + }, { + "tag" : "Microsoft Azure - Container Services (Deprecated)", + "stroke" : "#341a6e", + "color" : "#341a6e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10049-icon-service-Container-Services-(Deprecated).png" + }, { + "tag" : "Microsoft Azure - Mobile Engagement", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10823-icon-service-Mobile-Engagement.png" + }, { + "tag" : "Microsoft Azure - Mobile", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10822-icon-service-Mobile.png" + }, { + "tag" : "Microsoft Azure - Azure Experimentation Studio", + "stroke" : "#552f99", + "color" : "#552f99", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01239-icon-service-Azure-Experimentation-Studio.png" + }, { + "tag" : "Microsoft Azure - Storage Accounts", + "stroke" : "#37c2b1", + "color" : "#37c2b1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10086-icon-service-Storage-Accounts.png" + }, { + "tag" : "Microsoft Azure - Front Door and CDN Profiles", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10073-icon-service-Front-Door-and-CDN-Profiles.png" + }, { + "tag" : "Microsoft Azure - Azure Backup Center", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02360-icon-service-Azure-Backup-Center.png" + }, { + "tag" : "Microsoft Azure - Resource Group List", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10830-icon-service-Resource-Group-List.png" + }, { + "tag" : "Microsoft Azure - Network Managers", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02237-icon-service-Network-Managers.png" + }, { + "tag" : "Microsoft Azure - Connections", + "stroke" : "#5e9624", + "color" : "#5e9624", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10081-icon-service-Connections.png" + }, { + "tag" : "Microsoft Azure - Azure Edge Hardware Center", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02810-icon-service-Azure-Edge-Hardware-Center.png" + }, { + "tag" : "Microsoft Azure - OS Images (Classic)", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10027-icon-service-OS-Images-(Classic).png" + }, { + "tag" : "Microsoft Azure - Web Test", + "stroke" : "#3cd4c2", + "color" : "#3cd4c2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10850-icon-service-Web-Test.png" + }, { + "tag" : "Microsoft Azure - Custom Azure AD Roles", + "stroke" : "#f78d1e", + "color" : "#f78d1e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02680-icon-service-Custom-Azure-AD-Roles.png" + }, { + "tag" : "Microsoft Azure - Endpoint Analytics", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00562-icon-service-Endpoint-Analytics.png" + }, { + "tag" : "Microsoft Azure - Partner Registration", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02265-icon-service-Partner-Registration.png" + }, { + "tag" : "Microsoft Azure - Detonation", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00378-icon-service-Detonation.png" + }, { + "tag" : "Microsoft Azure - Azure Firewall Policy", + "stroke" : "#821010", + "color" : "#821010", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00272-icon-service-Azure-Firewall-Policy.png" + }, { + "tag" : "Microsoft Azure - Capacity Reservation Groups", + "stroke" : "#a33a85", + "color" : "#a33a85", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02732-icon-service-Capacity-Reservation-Groups.png" + }, { + "tag" : "Microsoft Azure - Video Analyzers", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00712-icon-service-Video-Analyzers.png" + }, { + "tag" : "Microsoft Azure - Recent", + "stroke" : "#7a7a7a", + "color" : "#7a7a7a", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10006-icon-service-Recent.png" + }, { + "tag" : "Microsoft Azure - Azure API for FHIR", + "stroke" : "#ffe452", + "color" : "#ffe452", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10212-icon-service-Azure-API-for-FHIR.png" + }, { + "tag" : "Microsoft Azure - ExpressRoute Circuits", + "stroke" : "#a67af4", + "color" : "#a67af4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10079-icon-service-ExpressRoute-Circuits.png" + }, { + "tag" : "Microsoft Azure - Security Center", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10241-icon-service-Security-Center.png" + }, { + "tag" : "Microsoft Azure - Input Output", + "stroke" : "#999999", + "color" : "#999999", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10813-icon-service-Input-Output.png" + }, { + "tag" : "Microsoft Azure - DNS Zones", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10064-icon-service-DNS-Zones.png" + }, { + "tag" : "Microsoft Azure - Express Route Traffic Collector", + "stroke" : "#6536c1", + "color" : "#6536c1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03137-icon-service-Express-Route-Traffic-Collector.png" + }, { + "tag" : "Microsoft Azure - Network Interfaces", + "stroke" : "#365615", + "color" : "#365615", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10080-icon-service-Network-Interfaces.png" + }, { + "tag" : "Microsoft Azure - Time Series Data Sets", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10198-icon-service-Time-Series-Data-Sets.png" + }, { + "tag" : "Microsoft Azure - Virtual Router", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02496-icon-service-Virtual-Router.png" + }, { + "tag" : "Microsoft Azure - Device Update IoT Hub", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02475-icon-service-Device-Update-IoT-Hub.png" + }, { + "tag" : "Microsoft Azure - QnA Makers", + "stroke" : "#40d1ed", + "color" : "#40d1ed", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00799-icon-service-QnA-Makers.png" + }, { + "tag" : "Microsoft Azure - Azure Monitor Dashboard", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02488-icon-service-Azure-Monitor-Dashboard.png" + }, { + "tag" : "Microsoft Azure - Biz Talk", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10779-icon-service-Biz-Talk.png" + }, { + "tag" : "Microsoft Azure - Speech Services", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00797-icon-service-Speech-Services.png" + }, { + "tag" : "Microsoft Azure - Reserved Capacity", + "stroke" : "#dc93c0", + "color" : "#dc93c0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02638-icon-service-Reserved-Capacity.png" + }, { + "tag" : "Microsoft Azure - Azure Hybrid Center", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02573-icon-service-Azure-Hybrid-Center.png" + }, { + "tag" : "Microsoft Azure - Download", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10797-icon-service-Download.png" + }, { + "tag" : "Microsoft Azure - Troubleshoot", + "stroke" : "#31d1f2", + "color" : "#31d1f2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10341-icon-service-Troubleshoot.png" + }, { + "tag" : "Microsoft Azure - Form Recognizers", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00819-icon-service-Form-Recognizers.png" + }, { + "tag" : "Microsoft Azure - Extensions", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10799-icon-service-Extensions.png" + }, { + "tag" : "Microsoft Azure - Azure Databricks", + "stroke" : "#ff3621", + "color" : "#ff3621", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10787-icon-service-Azure-Databricks.png" + }, { + "tag" : "Microsoft Azure - Folder Blank", + "stroke" : "#ffd100", + "color" : "#ffd100", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10802-icon-service-Folder-Blank.png" + }, { + "tag" : "Microsoft Azure - Azurite", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02842-icon-service-Azurite.png" + }, { + "tag" : "Microsoft Azure - Azure Lighthouse", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00471-icon-service-Azure-Lighthouse.png" + }, { + "tag" : "Microsoft Azure - Connected Vehicle Platform", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02573-icon-service-Connected-Vehicle-Platform.png" + }, { + "tag" : "Microsoft Azure - ExpressRoute Direct", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00903-icon-service-ExpressRoute-Direct.png" + }, { + "tag" : "Microsoft Azure - Azure Workbooks", + "stroke" : "#188de6", + "color" : "#188de6", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02189-icon-service-Azure-Workbooks.png" + }, { + "tag" : "Microsoft Azure - Location", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10818-icon-service-Location.png" + }, { + "tag" : "Microsoft Azure - Azure Media Service", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10309-icon-service-Azure-Media-Service.png" + }, { + "tag" : "Microsoft Azure - Cubes", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10795-icon-service-Cubes.png" + }, { + "tag" : "Microsoft Azure - Machine Learning Studio Workspaces", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10167-icon-service-Machine-Learning-Studio-Workspaces.png" + }, { + "tag" : "Microsoft Azure - Keys", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00787-icon-service-Keys.png" + }, { + "tag" : "Microsoft Azure - Storage Explorer", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10091-icon-service-Storage-Explorer.png" + }, { + "tag" : "Microsoft Azure - Traffic Manager Profiles", + "stroke" : "#6f4bb2", + "color" : "#6f4bb2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10065-icon-service-Traffic-Manager-Profiles.png" + }, { + "tag" : "Microsoft Azure - Azure SQL Server Stretch Databases", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10137-icon-service-Azure-SQL-Server-Stretch-Databases.png" + }, { + "tag" : "Microsoft Azure - API Proxy", + "stroke" : "#3cd4c2", + "color" : "#3cd4c2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02386-icon-service-API-Proxy.png" + }, { + "tag" : "Microsoft Azure - Users", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10230-icon-service-Users.png" + }, { + "tag" : "Microsoft Azure - Exchange On Premises Access", + "stroke" : "#5a9eee", + "color" : "#5a9eee", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10334-icon-service-Exchange-On-Premises-Access.png" + }, { + "tag" : "Microsoft Azure - Software as a Service", + "stroke" : "#959595", + "color" : "#959595", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10213-icon-service-Software-as-a-Service.png" + }, { + "tag" : "Microsoft Azure - Blockchain Applications", + "stroke" : "#b796f9", + "color" : "#b796f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10210-icon-service-Blockchain-Applications.png" + }, { + "tag" : "Microsoft Azure - Machine Learning Studio Web Service Plans", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10168-icon-service-Machine-Learning-Studio-Web-Service-Plans.png" + }, { + "tag" : "Microsoft Azure - Client Apps", + "stroke" : "#5a9eee", + "color" : "#5a9eee", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10331-icon-service-Client-Apps.png" + }, { + "tag" : "Microsoft Azure - Azure Migrate", + "stroke" : "#31d1f3", + "color" : "#31d1f3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10281-icon-service-Azure-Migrate.png" + }, { + "tag" : "Microsoft Azure - Public IP Addresses (Classic)", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10068-icon-service-Public-IP-Addresses-(Classic).png" + }, { + "tag" : "Microsoft Azure - Blob Page", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10781-icon-service-Blob-Page.png" + }, { + "tag" : "Microsoft Azure - Custom IP Prefix", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02654-icon-service-Custom-IP-Prefix.png" + }, { + "tag" : "Microsoft Azure - Security Baselines", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10336-icon-service-Security-Baselines.png" + }, { + "tag" : "Microsoft Azure - Language", + "stroke" : "#faa21d", + "color" : "#faa21d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02876-icon-service-Language.png" + }, { + "tag" : "Microsoft Azure - Files", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10801-icon-service-Files.png" + }, { + "tag" : "Microsoft Azure - TFS VC Repository", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10843-icon-service-TFS-VC-Repository.png" + }, { + "tag" : "Microsoft Azure - Event Grid Topics", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10206-icon-service-Event-Grid-Topics.png" + }, { + "tag" : "Microsoft Azure - Search Grid", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10856-icon-service-Search-Grid.png" + }, { + "tag" : "Microsoft Azure - Sonic Dash", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02922-icon-service-Sonic-Dash.png" + }, { + "tag" : "Microsoft Azure - IoT Hub", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10182-icon-service-IoT-Hub.png" + }, { + "tag" : "Microsoft Azure - Virtual WAN Hub", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00860-icon-service-Virtual-WAN-Hub.png" + }, { + "tag" : "Microsoft Azure - Azure Quotas", + "stroke" : "#b4ec36", + "color" : "#b4ec36", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02951-icon-service-Azure-Quotas.png" + }, { + "tag" : "Microsoft Azure - Azure Blockchain Service", + "stroke" : "#b796f9", + "color" : "#b796f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10366-icon-service-Azure-Blockchain-Service.png" + }, { + "tag" : "Microsoft Azure - Virtual Machines (Classic)", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10028-icon-service-Virtual-Machines-(Classic).png" + }, { + "tag" : "Microsoft Azure - Preview Features", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00456-icon-service-Preview-Features.png" + }, { + "tag" : "Microsoft Azure - SignalR", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10052-icon-service-SignalR.png" + }, { + "tag" : "Microsoft Azure - Private Endpoints", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02579-icon-service-Private-Endpoints.png" + }, { + "tag" : "Microsoft Azure - Website Power", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10847-icon-service-Website-Power.png" + }, { + "tag" : "Microsoft Azure - Storage Sync Services", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10093-icon-service-Storage-Sync-Services.png" + }, { + "tag" : "Microsoft Azure - Auto Scale", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10832-icon-service-Auto-Scale.png" + }, { + "tag" : "Microsoft Azure - Security", + "stroke" : "#5a9fee", + "color" : "#5a9fee", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00321-icon-service-Security.png" + }, { + "tag" : "Microsoft Azure - Azure Object Understanding", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01688-icon-service-Azure-Object-Understanding.png" + }, { + "tag" : "Microsoft Azure - Azure Purview Accounts", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02517-icon-service-Azure-Purview-Accounts.png" + }, { + "tag" : "Microsoft Azure - Globe Success", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10808-icon-service-Globe-Success.png" + }, { + "tag" : "Microsoft Azure - Lab Services", + "stroke" : "#3c91e5", + "color" : "#3c91e5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10265-icon-service-Lab-Services.png" + }, { + "tag" : "Microsoft Azure - Scheduler Job Collections", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00010-icon-service-Scheduler-Job-Collections.png" + }, { + "tag" : "Microsoft Azure - App Service Domains", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00050-icon-service-App-Service-Domains.png" + }, { + "tag" : "Microsoft Azure - Central Service Instance For SAP", + "stroke" : "#0077d2", + "color" : "#0077d2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03092-icon-service-Central-Service-Instance-For-SAP.png" + }, { + "tag" : "Microsoft Azure - Consortium", + "stroke" : "#5e9624", + "color" : "#5e9624", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10375-icon-service-Consortium.png" + }, { + "tag" : "Microsoft Azure - Azure Database MySQL Server", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10122-icon-service-Azure-Database-MySQL-Server.png" + }, { + "tag" : "Microsoft Azure - Marketplace", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10008-icon-service-Marketplace.png" + }, { + "tag" : "Microsoft Azure - CloudTest", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02373-icon-service-CloudTest.png" + }, { + "tag" : "Microsoft Azure - Folder Website", + "stroke" : "#dfa500", + "color" : "#dfa500", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10803-icon-service-Folder-Website.png" + }, { + "tag" : "Microsoft Azure - API Connections", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10048-icon-service-API-Connections.png" + }, { + "tag" : "Microsoft Azure - Azure AD Roles and Administrators", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10340-icon-service-Azure-AD-Roles-and-Administrators.png" + }, { + "tag" : "Microsoft Azure - Image", + "stroke" : "#b4ec36", + "color" : "#b4ec36", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10812-icon-service-Image.png" + }, { + "tag" : "Microsoft Azure - IoT Central Applications", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10184-icon-service-IoT-Central-Applications.png" + }, { + "tag" : "Microsoft Azure - App Service Plans", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00046-icon-service-App-Service-Plans.png" + }, { + "tag" : "Microsoft Azure - Disks (Classic)", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10041-icon-service-Disks-(Classic).png" + }, { + "tag" : "Microsoft Azure - StorSimple Data Managers", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10092-icon-service-StorSimple-Data-Managers.png" + }, { + "tag" : "Microsoft Azure - Azure HPC Workbenches", + "stroke" : "#1b93eb", + "color" : "#1b93eb", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02518-icon-service-Azure-HPC-Workbenches.png" + }, { + "tag" : "Microsoft Azure - Virtual WANs", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10353-icon-service-Virtual-WANs.png" + }, { + "tag" : "Microsoft Azure - Mission Landing Zone", + "stroke" : "#5e9624", + "color" : "#5e9624", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02793-icon-service-Mission-Landing-Zone.png" + }, { + "tag" : "Microsoft Azure - Managed Service Fabric", + "stroke" : "#e27908", + "color" : "#e27908", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02370-icon-service-Managed-Service-Fabric.png" + }, { + "tag" : "Microsoft Azure - Time Series Insights Environments", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10181-icon-service-Time-Series-Insights-Environments.png" + }, { + "tag" : "Microsoft Azure - Devices", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10332-icon-service-Devices.png" + }, { + "tag" : "Microsoft Azure - Customer Lockbox for Microsoft Azure", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10314-icon-service-Customer-Lockbox-for-Microsoft-Azure.png" + }, { + "tag" : "Microsoft Azure - Cost Export", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00913-icon-service-Cost-Export.png" + }, { + "tag" : "Microsoft Azure - Exchange Access", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10339-icon-service-Exchange-Access.png" + }, { + "tag" : "Microsoft Azure - Firewalls", + "stroke" : "#821010", + "color" : "#821010", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10084-icon-service-Firewalls.png" + }, { + "tag" : "Microsoft Azure - Device Provisioning Services", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10369-icon-service-Device-Provisioning-Services.png" + }, { + "tag" : "Microsoft Azure - Image Versions", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10038-icon-service-Image-Versions.png" + }, { + "tag" : "Microsoft Azure - SSIS Lift And Shift IR", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02392-icon-service-SSIS-Lift-And-Shift-IR.png" + }, { + "tag" : "Microsoft Azure - Dedicated HSM", + "stroke" : "#ffd70f", + "color" : "#ffd70f", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02322-icon-service-Dedicated-HSM.png" + }, { + "tag" : "Microsoft Azure - Restore Points Collections", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02818-icon-service-Restore-Points-Collections.png" + }, { + "tag" : "Microsoft Azure - User Subscriptions", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10111-icon-service-User-Subscriptions.png" + }, { + "tag" : "Microsoft Azure - Intune Trends", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00408-icon-service-Intune-Trends.png" + }, { + "tag" : "Microsoft Azure - Search", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10834-icon-service-Search.png" + }, { + "tag" : "Microsoft Azure - Windows10 Core Services", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10203-icon-service-Windows10-Core-Services.png" + }, { + "tag" : "Microsoft Azure - Peerings", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01285-icon-service-Peerings.png" + }, { + "tag" : "Microsoft Azure - Restore Points", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02817-icon-service-Restore-Points.png" + }, { + "tag" : "Microsoft Azure - Event Grid Subscriptions", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10221-icon-service-Event-Grid-Subscriptions.png" + }, { + "tag" : "Microsoft Azure - SendGrid Accounts", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10220-icon-service-SendGrid-Accounts.png" + }, { + "tag" : "Microsoft Azure - Machine Learning", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10166-icon-service-Machine-Learning.png" + }, { + "tag" : "Microsoft Azure - Integration Service Environments", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00555-icon-service-Integration-Service-Environments.png" + }, { + "tag" : "Microsoft Azure - Azure Database Migration Services", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10133-icon-service-Azure-Database-Migration-Services.png" + }, { + "tag" : "Microsoft Azure - Public IP Addresses", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10069-icon-service-Public-IP-Addresses.png" + }, { + "tag" : "Microsoft Azure - Notification Hubs", + "stroke" : "#ffe452", + "color" : "#ffe452", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10045-icon-service-Notification-Hubs.png" + }, { + "tag" : "Microsoft Azure - VM App Versions", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02806-icon-service-VM-App-Versions.png" + }, { + "tag" : "Microsoft Azure - Azure Synapse Analytics", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00606-icon-service-Azure-Synapse-Analytics.png" + }, { + "tag" : "Microsoft Azure - Application Insights", + "stroke" : "#624fd0", + "color" : "#624fd0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00012-icon-service-Application-Insights.png" + }, { + "tag" : "Microsoft Azure - SSD", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10837-icon-service-SSD.png" + }, { + "tag" : "Microsoft Azure - Data Share Invitations", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10097-icon-service-Data-Share-Invitations.png" + }, { + "tag" : "Microsoft Azure - Azure Center for SAP", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03090-icon-service-Azure-Center-for-SAP.png" + }, { + "tag" : "Microsoft Azure - Media File", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10821-icon-service-Media-File.png" + }, { + "tag" : "Microsoft Azure - Application Gateways", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10076-icon-service-Application-Gateways.png" + }, { + "tag" : "Microsoft Azure - Alerts", + "stroke" : "#629c25", + "color" : "#629c25", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00002-icon-service-Alerts.png" + }, { + "tag" : "Microsoft Azure - File", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10800-icon-service-File.png" + }, { + "tag" : "Microsoft Azure - Image Definitions", + "stroke" : "#c3f1ff", + "color" : "#c3f1ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10037-icon-service-Image-Definitions.png" + }, { + "tag" : "Microsoft Azure - Counter", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10794-icon-service-Counter.png" + }, { + "tag" : "Microsoft Azure - Resource Graph Explorer", + "stroke" : "#b796f9", + "color" : "#b796f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10318-icon-service-Resource-Graph-Explorer.png" + }, { + "tag" : "Microsoft Azure - Azure Service Bus", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10836-icon-service-Azure-Service-Bus.png" + }, { + "tag" : "Microsoft Azure - Time Series Insights Access Policies", + "stroke" : "#ffd70f", + "color" : "#ffd70f", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10192-icon-service-Time-Series-Insights-Access-Policies.png" + }, { + "tag" : "Microsoft Azure - Batch AI", + "stroke" : "#1b93eb", + "color" : "#1b93eb", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00028-icon-service-Batch-AI.png" + }, { + "tag" : "Microsoft Azure - Azure Support Center Blue", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02507-icon-service-Azure-Support-Center-Blue.png" + }, { + "tag" : "Microsoft Azure - Versions", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10845-icon-service-Versions.png" + }, { + "tag" : "Microsoft Azure - VM Image Version", + "stroke" : "#c3f1ff", + "color" : "#c3f1ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02866-icon-service-VM-Image-Version.png" + }, { + "tag" : "Microsoft Azure - Load Balancers", + "stroke" : "#b4ec36", + "color" : "#b4ec36", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10062-icon-service-Load-Balancers.png" + }, { + "tag" : "Microsoft Azure - App Configuration", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10219-icon-service-App-Configuration.png" + }, { + "tag" : "Microsoft Azure - VM Scale Sets", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10034-icon-service-VM-Scale-Sets.png" + }, { + "tag" : "Microsoft Azure - Azure Virtual Desktop", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00327-icon-service-Azure-Virtual-Desktop.png" + }, { + "tag" : "Microsoft Azure - eBooks", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10330-icon-service-eBooks.png" + }, { + "tag" : "Microsoft Azure - DevTest Labs", + "stroke" : "#552f99", + "color" : "#552f99", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10264-icon-service-DevTest-Labs.png" + }, { + "tag" : "Microsoft Azure - Change Analysis", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00563-icon-service-Change-Analysis.png" + }, { + "tag" : "Microsoft Azure - Verifiable Credentials", + "stroke" : "#b796f9", + "color" : "#b796f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01084-icon-service-Verifiable-Credentials.png" + }, { + "tag" : "Microsoft Azure - Targets Management", + "stroke" : "#82bbff", + "color" : "#82bbff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02908-icon-service-Targets-Management.png" + }, { + "tag" : "Microsoft Azure - Device Compliance", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10333-icon-service-Device-Compliance.png" + }, { + "tag" : "Microsoft Azure - ABS Member", + "stroke" : "#b796f9", + "color" : "#b796f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10374-icon-service-ABS-Member.png" + }, { + "tag" : "Microsoft Azure - Disks", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10032-icon-service-Disks.png" + }, { + "tag" : "Microsoft Azure - Import Export Jobs", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10100-icon-service-Import-Export-Jobs.png" + }, { + "tag" : "Microsoft Azure - Resource Mover", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02200-icon-service-Resource-Mover.png" + }, { + "tag" : "Microsoft Azure - Virtual Visits Builder", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02949-icon-service-Virtual-Visits-Builder.png" + }, { + "tag" : "Microsoft Azure - Load Testing", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02423-icon-service-Load-Testing.png" + }, { + "tag" : "Microsoft Azure - Commit", + "stroke" : "#a67af4", + "color" : "#a67af4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10788-icon-service-Commit.png" + }, { + "tag" : "Microsoft Azure - Azure Databox Gateway", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00691-icon-service-Azure-Databox-Gateway.png" + }, { + "tag" : "Microsoft Azure - Azure DevOps", + "stroke" : "#509aeb", + "color" : "#509aeb", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10261-icon-service-Azure-DevOps.png" + }, { + "tag" : "Microsoft Azure - Code", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10787-icon-service-Code.png" + }, { + "tag" : "Microsoft Azure - Managed Applications Center", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10313-icon-service-Managed-Applications-Center.png" + }, { + "tag" : "Microsoft Azure - Infrastructure Backup", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10108-icon-service-Infrastructure-Backup.png" + }, { + "tag" : "Microsoft Azure - Templates", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10009-icon-service-Templates.png" + }, { + "tag" : "Microsoft Azure - Static Apps", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01007-icon-service-Static-Apps.png" + }, { + "tag" : "Microsoft Azure - Worker Container App", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02884-icon-service-Worker-Container-App.png" + }, { + "tag" : "Microsoft Azure - Workbooks", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10851-icon-service-Workbooks.png" + }, { + "tag" : "Microsoft Azure - SQL Database", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10130-icon-service-SQL-Database.png" + }, { + "tag" : "Microsoft Azure - Azure Managed Grafana", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02905-icon-service-Azure-Managed-Grafana.png" + }, { + "tag" : "Microsoft Azure - Cloud Services (Classic)", + "stroke" : "#1a83dc", + "color" : "#1a83dc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10030-icon-service-Cloud-Services-(Classic).png" + }, { + "tag" : "Microsoft Azure - Cost Budgets", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10793-icon-service-Cost-Budgets.png" + }, { + "tag" : "Microsoft Azure - Toolbox", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10844-icon-service-Toolbox.png" + }, { + "tag" : "Microsoft Azure - Azure Stack", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10114-icon-service-Azure-Stack.png" + }, { + "tag" : "Microsoft Azure - Azure Database PostgreSQL Server", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10131-icon-service-Azure-Database-PostgreSQL-Server.png" + }, { + "tag" : "Microsoft Azure - SSH Keys", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00412-icon-service-SSH-Keys.png" + }, { + "tag" : "Microsoft Azure - Tags", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10842-icon-service-Tags.png" + }, { + "tag" : "Microsoft Azure - VM App Definitions", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02805-icon-service-VM-App-Definitions.png" + }, { + "tag" : "Microsoft Azure - Shared Image Galleries", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10039-icon-service-Shared-Image-Galleries.png" + }, { + "tag" : "Microsoft Azure - SCVMM Management Servers", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02503-icon-service-SCVMM-Management-Servers.png" + }, { + "tag" : "Microsoft Azure - Network Watcher", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10066-icon-service-Network-Watcher.png" + }, { + "tag" : "Microsoft Azure - Personalizers", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00796-icon-service-Personalizers.png" + }, { + "tag" : "Microsoft Azure - Process Explorer", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10828-icon-service-Process-Explorer.png" + }, { + "tag" : "Microsoft Azure - Cognitive Search", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10044-icon-service-Cognitive-Search.png" + }, { + "tag" : "Microsoft Azure - Tenant Properties", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02679-icon-service-Tenant-Properties.png" + }, { + "tag" : "Microsoft Azure - Data Shares", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10098-icon-service-Data-Shares.png" + }, { + "tag" : "Microsoft Azure - App Service Certificates", + "stroke" : "#ffb34d", + "color" : "#ffb34d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00049-icon-service-App-Service-Certificates.png" + }, { + "tag" : "Microsoft Azure - Operation Log (Classic)", + "stroke" : "#54aef0", + "color" : "#54aef0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00024-icon-service-Operation-Log-(Classic).png" + }, { + "tag" : "Microsoft Azure - Mesh Applications", + "stroke" : "#f78d1e", + "color" : "#f78d1e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10024-icon-service-Mesh-Applications.png" + }, { + "tag" : "Microsoft Azure - Route Tables", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10082-icon-service-Route-Tables.png" + }, { + "tag" : "Microsoft Azure - SQL Data Warehouses", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00036-icon-service-SQL-Data-Warehouses.png" + }, { + "tag" : "Microsoft Azure - Log Analytics Query Pack", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01085-icon-service-Log-Analytics-Query-Pack.png" + }, { + "tag" : "Microsoft Azure - CDN Profiles", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00056-icon-service-CDN-Profiles.png" + }, { + "tag" : "Microsoft Azure - Blob Block", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10780-icon-service-Blob-Block.png" + }, { + "tag" : "Microsoft Azure - Policy", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10316-icon-service-Policy.png" + }, { + "tag" : "Microsoft Azure - Cache Redis", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10137-icon-service-Cache-Redis.png" + }, { + "tag" : "Microsoft Azure - Virtual Machine", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10021-icon-service-Virtual-Machine.png" + }, { + "tag" : "Microsoft Azure - Internet Analyzer Profiles", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00469-icon-service-Internet-Analyzer-Profiles.png" + }, { + "tag" : "Microsoft Azure - App Service Environments", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10047-icon-service-App-Service-Environments.png" + }, { + "tag" : "Microsoft Azure - Virtual Network Gateways", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10063-icon-service-Virtual-Network-Gateways.png" + }, { + "tag" : "Microsoft Azure - Partner Topic", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02072-icon-service-Partner-Topic.png" + }, { + "tag" : "Microsoft Azure - Compliance Center", + "stroke" : "#57a300", + "color" : "#57a300", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02931-icon-service-Compliance-Center.png" + }, { + "tag" : "Microsoft Azure - Cost Alerts", + "stroke" : "#629c25", + "color" : "#629c25", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10791-icon-service-Cost-Alerts.png" + }, { + "tag" : "Microsoft Azure - Guide", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10810-icon-service-Guide.png" + }, { + "tag" : "Microsoft Azure - Information", + "stroke" : "#54aef0", + "color" : "#54aef0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10005-icon-service-Information.png" + }, { + "tag" : "Microsoft Azure - Device Security Windows", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00399-icon-service-Device-Security-Windows.png" + }, { + "tag" : "Microsoft Azure - Azure Red Hat OpenShift", + "stroke" : "#db212f", + "color" : "#db212f", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03331-icon-service-Azure-Red-Hat-OpenShift.png" + }, { + "tag" : "Microsoft Azure - Immersive Readers", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00812-icon-service-Immersive-Readers.png" + }, { + "tag" : "Microsoft Azure - Kubernetes Fleet Manager", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03134-icon-service-Kubernetes-Fleet-Manager.png" + }, { + "tag" : "Microsoft Azure - Azure AD Risky Signins", + "stroke" : "#0072c6", + "color" : "#0072c6", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03341-icon-service-Azure-AD-Risky-Signins.png" + }, { + "tag" : "Microsoft Azure - Device Security Google", + "stroke" : "#b4ec36", + "color" : "#b4ec36", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00399-icon-service-Device-Security-Google.png" + }, { + "tag" : "Microsoft Azure - Web Slots", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10849-icon-service-Web-Slots.png" + }, { + "tag" : "Microsoft Azure - Dashboard Hub", + "stroke" : "#37c3b2", + "color" : "#37c3b2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01757-icon-service-Dashboard-Hub.png" + }, { + "tag" : "Microsoft Azure - RTOS", + "stroke" : "#b3b4b4", + "color" : "#b3b4b4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10778-icon-service-RTOS.png" + }, { + "tag" : "Microsoft Azure - API Management Services", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10042-icon-service-API-Management-Services.png" + }, { + "tag" : "Microsoft Azure - Subscriptions", + "stroke" : "#ffd70f", + "color" : "#ffd70f", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10002-icon-service-Subscriptions.png" + }, { + "tag" : "Microsoft Azure - Web Jobs", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10846-icon-service-Web-Jobs.png" + }, { + "tag" : "Microsoft Azure - Translator Text", + "stroke" : "#0379d5", + "color" : "#0379d5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00800-icon-service-Translator-Text.png" + }, { + "tag" : "Microsoft Azure - Azure AD Privleged Identity Management", + "stroke" : "#ffd70f", + "color" : "#ffd70f", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02251-icon-service-Azure-AD-Privleged-Identity-Management.png" + }, { + "tag" : "Microsoft Azure - Azure Compute Galleries", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02864-icon-service-Azure-Compute-Galleries.png" + }, { + "tag" : "Microsoft Azure - Globe Warning", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10809-icon-service-Globe-Warning.png" + }, { + "tag" : "Microsoft Azure - Aquila", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02625-icon-service-Aquila.png" + }, { + "tag" : "Microsoft Azure - Service Providers", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00025-icon-service-Service-Providers.png" + }, { + "tag" : "Microsoft Azure - MachinesAzureArc", + "stroke" : "#552f99", + "color" : "#552f99", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10450-icon-service-MachinesAzureArc.png" + }, { + "tag" : "Microsoft Azure - Identity Secure Score", + "stroke" : "#fcd116", + "color" : "#fcd116", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03340-icon-service-Identity-Secure-Score.png" + }, { + "tag" : "Microsoft Azure - Azure Network Function Manager", + "stroke" : "#37c2b1", + "color" : "#37c2b1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02740-icon-service-Azure-Network-Function-Manager.png" + }, { + "tag" : "Microsoft Azure - Azure Sphere", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10190-icon-service-Azure-Sphere.png" + }, { + "tag" : "Microsoft Azure - User Privacy", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10303-icon-service-User-Privacy.png" + }, { + "tag" : "Microsoft Azure - Software Updates", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10335-icon-service-Software-Updates.png" + }, { + "tag" : "Microsoft Azure - Plans", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10113-icon-service-Plans.png" + }, { + "tag" : "Microsoft Azure - Management Groups", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10011-icon-service-Management-Groups.png" + }, { + "tag" : "Microsoft Azure - Images", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10033-icon-service-Images.png" + }, { + "tag" : "Microsoft Azure - Storage Container", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10839-icon-service-Storage-Container.png" + }, { + "tag" : "Microsoft Azure - Groups", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10223-icon-service-Groups.png" + }, { + "tag" : "Microsoft Azure - Browser", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10783-icon-service-Browser.png" + }, { + "tag" : "Microsoft Azure - Power Platform", + "stroke" : "#007a84", + "color" : "#007a84", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03335-icon-service-Power-Platform.png" + }, { + "tag" : "Microsoft Azure - Container Registries", + "stroke" : "#767676", + "color" : "#767676", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10105-icon-service-Container-Registries.png" + }, { + "tag" : "Microsoft Azure - Launch Portal", + "stroke" : "#45a7ef", + "color" : "#45a7ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10815-icon-service-Launch-Portal.png" + }, { + "tag" : "Microsoft Azure - FTP", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10804-icon-service-FTP.png" + }, { + "tag" : "Microsoft Azure - WAC", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10355-icon-service-WAC.png" + }, { + "tag" : "Microsoft Azure - Data Factories", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10126-icon-service-Data-Factories.png" + }, { + "tag" : "Microsoft Azure - Capacity", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10109-icon-service-Capacity.png" + }, { + "tag" : "Microsoft Azure - Fiji", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02486-icon-service-Fiji.png" + }, { + "tag" : "Microsoft Azure - Globe Error", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10807-icon-service-Globe-Error.png" + }, { + "tag" : "Microsoft Azure - All Resources", + "stroke" : "#75bb2d", + "color" : "#75bb2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10001-icon-service-All-Resources.png" + }, { + "tag" : "Microsoft Azure - Virtual Networks (Classic)", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10075-icon-service-Virtual-Networks-(Classic).png" + }, { + "tag" : "Microsoft Azure - Bare Metal Infrastructure", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02561-icon-service-Bare-Metal-Infrastructure.png" + }, { + "tag" : "Microsoft Azure - Azure AD Privilege Identity Management", + "stroke" : "#a67af4", + "color" : "#a67af4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10234-icon-service-Azure-AD-Privilege-Identity-Management.png" + }, { + "tag" : "Microsoft Azure - Cache", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10786-icon-service-Cache.png" + }, { + "tag" : "Microsoft Azure - Cognitive Services", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10162-icon-service-Cognitive-Services.png" + }, { + "tag" : "Microsoft Azure - Genomics", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00031-icon-service-Genomics.png" + }, { + "tag" : "Microsoft Azure - Azure Token Service", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10367-icon-service-Azure-Token-Service.png" + }, { + "tag" : "Microsoft Azure - Virtual Instance for SAP", + "stroke" : "#005aa0", + "color" : "#005aa0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03089-icon-service-Virtual-Instance-for-SAP.png" + }, { + "tag" : "Microsoft Azure - Disk Pool", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02560-icon-service-Disk-Pool.png" + }, { + "tag" : "Microsoft Azure - System Topic", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02073-icon-service-System-Topic.png" + }, { + "tag" : "Microsoft Azure - My Customers", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00014-icon-service-My-Customers.png" + }, { + "tag" : "Microsoft Azure - AVS VM", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01846-icon-service-AVS-VM.png" + }, { + "tag" : "Microsoft Azure - Compliance", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00011-icon-service-Compliance.png" + }, { + "tag" : "Microsoft Azure - Power", + "stroke" : "#fea11b", + "color" : "#fea11b", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10824-icon-service-Power.png" + }, { + "tag" : "Microsoft Azure - AzureAttestation", + "stroke" : "#72b52c", + "color" : "#72b52c", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10422-icon-service-AzureAttestation.png" + }, { + "tag" : "Microsoft Azure - Builds", + "stroke" : "#a67af4", + "color" : "#a67af4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10785-icon-service-Builds.png" + }, { + "tag" : "Microsoft Azure - Managed Database", + "stroke" : "#eaeaea", + "color" : "#eaeaea", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10135-icon-service-Managed-Database.png" + }, { + "tag" : "Microsoft Azure - Collaborative Service", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01038-icon-service-Collaborative-Service.png" + }, { + "tag" : "Microsoft Azure - Lab Accounts", + "stroke" : "#faa21d", + "color" : "#faa21d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02761-icon-service-Lab-Accounts.png" + }, { + "tag" : "Microsoft Azure - Public IP Prefixes", + "stroke" : "#767676", + "color" : "#767676", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10372-icon-service-Public-IP-Prefixes.png" + }, { + "tag" : "Microsoft Azure - Test Base", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02691-icon-service-Test-Base.png" + }, { + "tag" : "Microsoft Azure - Active Directory Connect Health", + "stroke" : "#f04049", + "color" : "#f04049", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10224-icon-service-Active-Directory-Connect-Health.png" + }, { + "tag" : "Microsoft Azure - Scheduler", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10833-icon-service-Scheduler.png" + }, { + "tag" : "Microsoft Azure - Workflow", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10852-icon-service-Workflow.png" + }, { + "tag" : "Microsoft Azure - Reservations", + "stroke" : "#6f4bb2", + "color" : "#6f4bb2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10003-icon-service-Reservations.png" + }, { + "tag" : "Microsoft Azure - SQL Server", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10132-icon-service-SQL-Server.png" + }, { + "tag" : "Microsoft Azure - Virtual Clusters", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10127-icon-service-Virtual-Clusters.png" + }, { + "tag" : "Microsoft Azure - Spatial Anchor Accounts", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10352-icon-service-Spatial-Anchor-Accounts.png" + }, { + "tag" : "Microsoft Azure - Azure Information Protection", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10229-icon-service-Azure-Information-Protection.png" + }, { + "tag" : "Microsoft Azure - Intune", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10329-icon-service-Intune.png" + }, { + "tag" : "Microsoft Azure - Azure Firewall Manager", + "stroke" : "#821010", + "color" : "#821010", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00271-icon-service-Azure-Firewall-Manager.png" + }, { + "tag" : "Microsoft Azure - Azure Arc", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00756-icon-service-Azure-Arc.png" + }, { + "tag" : "Microsoft Azure - Service Health", + "stroke" : "#54aef0", + "color" : "#54aef0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10004-icon-service-Service-Health.png" + }, { + "tag" : "Microsoft Azure - Azure HCP Cache", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00776-icon-service-Azure-HCP-Cache.png" + }, { + "tag" : "Microsoft Azure - Azure SQL VM", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10124-icon-service-Azure-SQL-VM.png" + }, { + "tag" : "Microsoft Azure - Route Filters", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10071-icon-service-Route-Filters.png" + }, { + "tag" : "Microsoft Azure - Bot Services", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10165-icon-service-Bot-Services.png" + }, { + "tag" : "Microsoft Azure - Bonsai", + "stroke" : "#52a646", + "color" : "#52a646", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03337-icon-service-Bonsai.png" + }, { + "tag" : "Microsoft Azure - Blueprints", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00006-icon-service-Blueprints.png" + }, { + "tag" : "Microsoft Azure - Hosts", + "stroke" : "#b4ec36", + "color" : "#b4ec36", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10347-icon-service-Hosts.png" + }, { + "tag" : "Microsoft Azure - Multi Tenancy", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00965-icon-service-Multi-Tenancy.png" + }, { + "tag" : "Microsoft Azure - Load Test", + "stroke" : "#32d3f4", + "color" : "#32d3f4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10817-icon-service-Load-Test.png" + }, { + "tag" : "Microsoft Azure - Workspaces", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00330-icon-service-Workspaces.png" + }, { + "tag" : "Microsoft Azure - Data Lake Analytics", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10143-icon-service-Data-Lake-Analytics.png" + }, { + "tag" : "Microsoft Azure - External Identities", + "stroke" : "#59b4d9", + "color" : "#59b4d9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03338-icon-service-External-Identities.png" + }, { + "tag" : "Microsoft Azure - Resource Groups", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10007-icon-service-Resource-Groups.png" + }, { + "tag" : "Microsoft Azure - Disk Encryption Sets", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00398-icon-service-Disk-Encryption-Sets.png" + }, { + "tag" : "Microsoft Azure - Resource Management Private Link", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02145-icon-service-Resource-Management-Private-Link.png" + }, { + "tag" : "Microsoft Azure - Integration Accounts", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10218-icon-service-Integration-Accounts.png" + }, { + "tag" : "Microsoft Azure - Updates", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10115-icon-service-Updates.png" + }, { + "tag" : "Microsoft Azure - Disks Snapshots", + "stroke" : "#76bc2d", + "color" : "#76bc2d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10026-icon-service-Disks-Snapshots.png" + }, { + "tag" : "Microsoft Azure - Backlog", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10853-icon-service-Backlog.png" + }, { + "tag" : "Microsoft Azure - App Registrations", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10232-icon-service-App-Registrations.png" + }, { + "tag" : "Microsoft Azure - SQL Server Registries", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10351-icon-service-SQL-Server-Registries.png" + }, { + "tag" : "Microsoft Azure - Azure SQL", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02390-icon-service-Azure-SQL.png" + }, { + "tag" : "Microsoft Azure - Function Apps", + "stroke" : "#1490df", + "color" : "#1490df", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10029-icon-service-Function-Apps.png" + }, { + "tag" : "Microsoft Azure - Multifactor Authentication", + "stroke" : "#215694", + "color" : "#215694", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03344-icon-service-Multifactor-Authentication.png" + }, { + "tag" : "Microsoft Azure - Table", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10841-icon-service-Table.png" + }, { + "tag" : "Microsoft Azure - Managed Instance Apache Cassandra", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02663-icon-service-Managed-Instance-Apache-Cassandra.png" + }, { + "tag" : "Microsoft Azure - Microsoft Defender EASM", + "stroke" : "#5191fb", + "color" : "#5191fb", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03336-icon-service-Microsoft-Defender-EASM.png" + }, { + "tag" : "Microsoft Azure - Cloud Services (extended support)", + "stroke" : "#e3e3e3", + "color" : "#e3e3e3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02505-icon-service-Cloud-Services-(extended-support).png" + }, { + "tag" : "Microsoft Azure - Proximity Placement Groups", + "stroke" : "#999999", + "color" : "#999999", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10365-icon-service-Proximity-Placement-Groups.png" + }, { + "tag" : "Microsoft Azure - Free Services", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10016-icon-service-Free-Services.png" + }, { + "tag" : "Microsoft Azure - Azure Cloud Shell", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00559-icon-service-Azure-Cloud-Shell.png" + }, { + "tag" : "Microsoft Azure - Recovery Services Vaults", + "stroke" : "#31d2f3", + "color" : "#31d2f3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00017-icon-service-Recovery-Services-Vaults.png" + }, { + "tag" : "Microsoft Azure - Modular Data Center", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02323-icon-service-Modular-Data-Center.png" + }, { + "tag" : "Microsoft Azure - Enterprise Applications", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10225-icon-service-Enterprise-Applications.png" + }, { + "tag" : "Microsoft Azure - Power BI Embedded", + "stroke" : "#dfa210", + "color" : "#dfa210", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03332-icon-service-Power-BI-Embedded.png" + }, { + "tag" : "Microsoft Azure - Advisor", + "stroke" : "#ffca00", + "color" : "#ffca00", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00003-icon-service-Advisor.png" + }, { + "tag" : "Microsoft Azure - Time Series Insights Event Sources", + "stroke" : "#c3f1ff", + "color" : "#c3f1ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10188-icon-service-Time-Series-Insights-Event-Sources.png" + }, { + "tag" : "Microsoft Azure - Spot VM", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02695-icon-service-Spot-VM.png" + }, { + "tag" : "Microsoft Azure - MedTech Service", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02660-icon-service-MedTech-Service.png" + }, { + "tag" : "Microsoft Azure - Storage Accounts (Classic)", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10087-icon-service-Storage-Accounts-(Classic).png" + }, { + "tag" : "Microsoft Azure - Network Security Groups", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10067-icon-service-Network-Security-Groups.png" + }, { + "tag" : "Microsoft Azure - Resource Linked", + "stroke" : "#6dad2a", + "color" : "#6dad2a", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10831-icon-service-Resource-Linked.png" + }, { + "tag" : "Microsoft Azure - Bug", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10784-icon-service-Bug.png" + }, { + "tag" : "Microsoft Azure - Logic Apps", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02631-icon-service-Logic-Apps.png" + }, { + "tag" : "Microsoft Azure - Azure Data Explorer Clusters", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10145-icon-service-Azure-Data-Explorer-Clusters.png" + }, { + "tag" : "Microsoft Azure - Azure Database MariaDB Server", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10123-icon-service-Azure-Database-MariaDB-Server.png" + }, { + "tag" : "Microsoft Azure - Universal Print", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00571-icon-service-Universal-Print.png" + }, { + "tag" : "Microsoft Azure - AAD Licenses", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02681-icon-service-AAD-Licenses.png" + }, { + "tag" : "Microsoft Azure - Microsoft Defender for IoT", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02247-icon-service-Microsoft-Defender-for-IoT.png" + }, { + "tag" : "Microsoft Azure - Face APIs", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00794-icon-service-Face-APIs.png" + }, { + "tag" : "Microsoft Azure - Stream Analytics Jobs", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00042-icon-service-Stream-Analytics-Jobs.png" + }, { + "tag" : "Microsoft Azure - Community Images", + "stroke" : "#c3f1ff", + "color" : "#c3f1ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02865-icon-service-Community-Images.png" + }, { + "tag" : "Microsoft Azure - Microsoft Dev Box", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03250-icon-service-Microsoft-Dev-Box.png" + }, { + "tag" : "Microsoft Azure - Data Box", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10094-icon-service-Data-Box.png" + }, { + "tag" : "Microsoft Azure - Tag", + "stroke" : "#552f99", + "color" : "#552f99", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10014-icon-service-Tag.png" + }, { + "tag" : "Microsoft Azure - NAT", + "stroke" : "#3ed3f2", + "color" : "#3ed3f2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10310-icon-service-NAT.png" + }, { + "tag" : "Microsoft Azure - Dashboard", + "stroke" : "#6bc5b8", + "color" : "#6bc5b8", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10015-icon-service-Dashboard.png" + }, { + "tag" : "Microsoft Azure - Azure AD B2C", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10228-icon-service-Azure-AD-B2C.png" + }, { + "tag" : "Microsoft Azure - IP Groups", + "stroke" : "#83b9f9", + "color" : "#83b9f9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00701-icon-service-IP-Groups.png" + }, { + "tag" : "Microsoft Azure - Partner Namespace", + "stroke" : "#a3a3a3", + "color" : "#a3a3a3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02266-icon-service-Partner-Namespace.png" + }, { + "tag" : "Microsoft Azure - Azure Maps Accounts", + "stroke" : "#32d4f5", + "color" : "#32d4f5", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10185-icon-service-Azure-Maps-Accounts.png" + }, { + "tag" : "Microsoft Azure - Custom Vision", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00793-icon-service-Custom-Vision.png" + }, { + "tag" : "Microsoft Azure - Dev Console", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10796-icon-service-Dev-Console.png" + }, { + "tag" : "Microsoft Azure - Branch", + "stroke" : "#c3f1ff", + "color" : "#c3f1ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10782-icon-service-Branch.png" + }, { + "tag" : "Microsoft Azure - Database Instance For SAP", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03175-icon-service-Database-Instance-For-SAP.png" + }, { + "tag" : "Microsoft Azure - Monitor", + "stroke" : "#32bedd", + "color" : "#32bedd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00001-icon-service-Monitor.png" + }, { + "tag" : "Microsoft Azure - SQL Managed Instance", + "stroke" : "#003067", + "color" : "#003067", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10136-icon-service-SQL-Managed-Instance.png" + }, { + "tag" : "Microsoft Azure - Remote Rendering", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00698-icon-service-Remote-Rendering.png" + }, { + "tag" : "Microsoft Azure - Anomaly Detector", + "stroke" : "#faa21d", + "color" : "#faa21d", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00814-icon-service-Anomaly-Detector.png" + }, { + "tag" : "Microsoft Azure - Language Understanding", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00801-icon-service-Language-Understanding.png" + }, { + "tag" : "Microsoft Azure - SQL Elastic Pools", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10134-icon-service-SQL-Elastic-Pools.png" + }, { + "tag" : "Microsoft Azure - Storage Azure Files", + "stroke" : "#eff6fd", + "color" : "#eff6fd", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10838-icon-service-Storage-Azure-Files.png" + }, { + "tag" : "Microsoft Azure - Azure Communication Services", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00968-icon-service-Azure-Communication-Services.png" + }, { + "tag" : "Microsoft Azure - Azure Monitors for SAP Solutions", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00438-icon-service-Azure-Monitors-for-SAP-Solutions.png" + }, { + "tag" : "Microsoft Azure - Application Security Groups", + "stroke" : "#1b93eb", + "color" : "#1b93eb", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10244-icon-service-Application-Security-Groups.png" + }, { + "tag" : "Microsoft Azure - Azure Load Testing", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02944-icon-service-Azure-Load-Testing.png" + }, { + "tag" : "Microsoft Azure - Metrics", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00020-icon-service-Metrics.png" + }, { + "tag" : "Microsoft Azure - Azure Orbital", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02697-icon-service-Azure-Orbital.png" + }, { + "tag" : "Microsoft Azure - Storage Queue", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10840-icon-service-Storage-Queue.png" + }, { + "tag" : "Microsoft Azure - Analysis Services", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10148-icon-service-Analysis-Services.png" + }, { + "tag" : "Microsoft Azure - Mindaro", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10350-icon-service-Mindaro.png" + }, { + "tag" : "Microsoft Azure - Gear", + "stroke" : "#32c8e8", + "color" : "#32c8e8", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10805-icon-service-Gear.png" + }, { + "tag" : "Microsoft Azure - Error", + "stroke" : "#32d2f2", + "color" : "#32d2f2", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10798-icon-service-Error.png" + }, { + "tag" : "Microsoft Azure - Mobile Networks", + "stroke" : "#86d633", + "color" : "#86d633", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02794-icon-service-Mobile-Networks.png" + }, { + "tag" : "Microsoft Azure - Azure Video Indexer", + "stroke" : "#9cebff", + "color" : "#9cebff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01800-icon-service-Azure-Video-Indexer.png" + }, { + "tag" : "Microsoft Azure - Azure Data Catalog", + "stroke" : "#b1b0b1", + "color" : "#b1b0b1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10216-icon-service-Azure-Data-Catalog.png" + }, { + "tag" : "Microsoft Azure - Backup Vault", + "stroke" : "#33bfde", + "color" : "#33bfde", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02361-icon-service-Backup-Vault.png" + }, { + "tag" : "Microsoft Azure - Offers", + "stroke" : "#005ba1", + "color" : "#005ba1", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10110-icon-service-Offers.png" + }, { + "tag" : "Microsoft Azure - Website Staging", + "stroke" : "#198ab3", + "color" : "#198ab3", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10848-icon-service-Website-Staging.png" + }, { + "tag" : "Microsoft Azure - Module", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10855-icon-service-Module.png" + }, { + "tag" : "Microsoft Azure - Log Analytics Workspaces", + "stroke" : "#54aef0", + "color" : "#54aef0", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00009-icon-service-Log-Analytics-Workspaces.png" + }, { + "tag" : "Microsoft Azure - Metrics Advisor", + "stroke" : "#ffd400", + "color" : "#ffd400", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02409-icon-service-Metrics-Advisor.png" + }, { + "tag" : "Microsoft Azure - Power Up", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10826-icon-service-Power-Up.png" + }, { + "tag" : "Microsoft Azure - Digital Twins", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/01030-icon-service-Digital-Twins.png" + }, { + "tag" : "Microsoft Azure - Content Moderators", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00795-icon-service-Content-Moderators.png" + }, { + "tag" : "Microsoft Azure - DDoS Protection Plans", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10072-icon-service-DDoS-Protection-Plans.png" + }, { + "tag" : "Microsoft Azure - Confidential Ledgers", + "stroke" : "#773adc", + "color" : "#773adc", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02668-icon-service-Confidential-Ledgers.png" + }, { + "tag" : "Microsoft Azure - Azure Cosmos DB", + "stroke" : "#50e6ff", + "color" : "#50e6ff", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10121-icon-service-Azure-Cosmos-DB.png" + }, { + "tag" : "Microsoft Azure - DevOps Starter", + "stroke" : "#417be9", + "color" : "#417be9", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03339-icon-service-DevOps-Starter.png" + }, { + "tag" : "Microsoft Azure - Applens", + "stroke" : "#f78d1e", + "color" : "#f78d1e", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/02354-icon-service-Applens.png" + }, { + "tag" : "Microsoft Azure - Machine Learning Studio (Classic) Web Services", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/00030-icon-service-Machine-Learning-Studio-(Classic)-Web-Services.png" + }, { + "tag" : "Microsoft Azure - App Compliance Automation", + "stroke" : "#5ea0ef", + "color" : "#5ea0ef", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/03071-icon-service-App-Compliance-Automation.png" + }, { + "tag" : "Microsoft Azure - Conditional Access", + "stroke" : "#0078d4", + "color" : "#0078d4", + "icon" : "https://static.structurizr.com/themes/microsoft-azure-2023.01.24/10233-icon-service-Conditional-Access.png" + } ] +} diff --git a/server/src/main/resources/structurizr/oracle-cloud-infrastructure.json b/server/src/main/resources/structurizr/oracle-cloud-infrastructure-2021.04.30.json similarity index 100% rename from server/src/main/resources/structurizr/oracle-cloud-infrastructure.json rename to server/src/main/resources/structurizr/oracle-cloud-infrastructure-2021.04.30.json diff --git a/server/src/main/resources/structurizr/oracle-cloud-infrastructure-2023.04.01.json b/server/src/main/resources/structurizr/oracle-cloud-infrastructure-2023.04.01.json new file mode 100644 index 000000000..920488271 --- /dev/null +++ b/server/src/main/resources/structurizr/oracle-cloud-infrastructure-2023.04.01.json @@ -0,0 +1,1080 @@ +{ + "name" : "Oracle Cloud Infrastructure", + "description" : "This theme includes element styles with icons for each of the OCI services, based upon the Graphics for Topologies and Diagrams (https://docs.cloud.oracle.com/en-us/iaas/Content/General/Reference/graphicsfordiagrams.htm).", + "elements" : [ { + "tag" : "Oracle Cloud Infrastructure - Order Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Order Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Service Gateway", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Service Gateway.png" + }, { + "tag" : "Oracle Cloud Infrastructure - ATPD", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/ATP-D.png" + }, { + "tag" : "Oracle Cloud Infrastructure - OpenSearch", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/OpenSearch.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Functions", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Functions.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Full Stack Disaster Recovery", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Full Stack Disaster Recovery.png" + }, { + "tag" : "Oracle Cloud Infrastructure - IP Pools", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/IP Pools.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Alarms", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Alarms.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Application Dependency Management ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Application Dependency Management (ADM).png" + }, { + "tag" : "Oracle Cloud Infrastructure - WellnessHealthcare", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Wellness-Healthcare.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Service Mesh", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Service Mesh.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Private Cloud", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Private Cloud.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Domain Name System ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Domain Name System DNS.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - ADWD", + "stroke" : "#2c5a67", + "color" : "#2c5a67", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/ADW-D.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Buckets", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Buckets.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate OnPremises", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate On-Premises.png" + }, { + "tag" : "Oracle Cloud Infrastructure - User Group unisex", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/User Group unisex.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Safe", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Safe.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Migrate Autonomous Database", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Migrate Autonomous Database.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Key Management", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Key Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Encryption", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Encryption.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Service Oriented Architecture ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Service Oriented Architecture SOA.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Backup Restore", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Backup Restore.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Internet Cloud", + "stroke" : "#2d5967", + "color" : "#2d5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Internet Cloud.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Process Automation", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Process Automation.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Exadata Cloud at Customer", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Exadata Cloud at Customer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - No SQL Database", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/No SQL Database.png" + }, { + "tag" : "Oracle Cloud Infrastructure - ADBD Dedicated", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/ADB-D Dedicated.png" + }, { + "tag" : "Oracle Cloud Infrastructure - NAT Gateway", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/NAT Gateway.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Lakehouse", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Lakehouse.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Plugin", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Plug-in.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Operations Insights", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Operations Insights.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Policies", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Policies.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Cloud Identifier ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Cloud Identifier OCID.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Virtual Machine GPU", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Virtual Machine GPU.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Backbone", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Backbone.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage Cloning Process", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage Cloning Process.png" + }, { + "tag" : "Oracle Cloud Infrastructure - User Group Male", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/User Group Male.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Virtual Machine ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Virtual Machine VM.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Tagging", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Tagging.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Virtual Machine Clear", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Virtual Machine Clear.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Active Directory", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Active Directory.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Network Performance Inspector", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Network Performance Inspector.png" + }, { + "tag" : "Oracle Cloud Infrastructure - CPQ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/CPQ.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage Replica", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage Replica.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Logging Analytics", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Logging Analytics.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Instance Pools", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Instance Pools.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Financials", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Financials.png" + }, { + "tag" : "Oracle Cloud Infrastructure - BareMetal Compute", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/BareMetal Compute.png" + }, { + "tag" : "Oracle Cloud Infrastructure - VTAP", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/VTAP.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Block Storage Multiple", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Block Storage Multiple.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Engagement", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Engagement.png" + }, { + "tag" : "Oracle Cloud Infrastructure - User Female", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/User Female.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Dynamic Routing Gateway ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Dynamic Routing Gateway DRG.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Streaming", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Streaming.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Artificial Intelligence", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Artificial Intelligence.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Firewall", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Firewall.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Enterprise Performance Management ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Enterprise Performance Management EPM.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Supply Chain Planning", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Supply Chain Planning.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Email Delivery", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Email Delivery.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Service Connector Hub", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Service Connector Hub.png" + }, { + "tag" : "Oracle Cloud Infrastructure - RAC", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/RAC.png" + }, { + "tag" : "Oracle Cloud Infrastructure - OnPremises Data Center", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/On-Premises Data Center.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Autonomous Database", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Autonomous Database.png" + }, { + "tag" : "Oracle Cloud Infrastructure - EBusiness Suite", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/E-Business Suite.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Essbase", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Essbase.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Project Financial Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Project Financial Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Other Cloud Services", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Other Cloud Services.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Transaction Manager", + "stroke" : "#2d5967", + "color" : "#2d5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Transaction Manager.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Web Application Firewall ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Web Application Firewall WAF.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Product Master Data Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Product Master Data Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Veridata", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Veridata.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Cloud Guard", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Cloud Guard.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Services Network", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Services Network.png" + }, { + "tag" : "Oracle Cloud Infrastructure - API Service", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/API Service.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Health Check", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Health Check.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Block Storage Cloning", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Block Storage Cloning.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Network Path Analyzer", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Network Path Analyzer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Cloud Operations", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Cloud Operations.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Persistent Volume", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Persistent Volume.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Vault", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Vault.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Internet Gateway", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Internet Gateway.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Local Storage", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Local Storage.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Transfer", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Transfer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Science", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Science.png" + }, { + "tag" : "Oracle Cloud Infrastructure - User", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/User.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Events", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Events.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Logic Flow", + "stroke" : "#61838d", + "color" : "#61838d", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Logic Flow.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Private Endpoint IP", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Private Endpoint IP.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Dedicated Region", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Dedicated Region.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Autonomous Database Warehouse", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Autonomous Database Warehouse.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Monitoring", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Monitoring.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database for Amazon Web Service ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database for Amazon Web Service AWS.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Roving Edge Service", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Roving Edge Service.png" + }, { + "tag" : "Oracle Cloud Infrastructure - MySQL HeatWave", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/MySQL HeatWave.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Studio", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Studio.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Storage Gateway", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Storage Gateway.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Object Storage", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Object Storage.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Threat Intelligence", + "stroke" : "#2b5a67", + "color" : "#2b5a67", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Threat Intelligence.png" + }, { + "tag" : "Oracle Cloud Infrastructure - SecurityLists", + "stroke" : "#2d5967", + "color" : "#2d5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Security-Lists.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Container Engine For Kubernetes", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Container Engine For Kubernetes.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Content Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Content Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate HP Nonstop Guardian", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate HP Nonstop Guardian.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Container Service", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Container Service.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Monitor", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Monitor.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Media Flow", + "stroke" : "#fbf9f8", + "color" : "#fbf9f8", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Media Flow.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Network Switch", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Network Switch.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Search", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Search.png" + }, { + "tag" : "Oracle Cloud Infrastructure - License Manager", + "stroke" : "#2c5a67", + "color" : "#2c5a67", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/License Manager.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Customer Premises Equipment ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Customer Premises Equipment CPE.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Catalog ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Catalog DCAT.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Document Understanding", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Document Understanding.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Guard Recovery", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Guard Recovery.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Certificates", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Certificates.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Vulnerability Scanning", + "stroke" : "#2c5a67", + "color" : "#2c5a67", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Vulnerability Scanning.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Auditing", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Auditing.png" + }, { + "tag" : "Oracle Cloud Infrastructure - ADB Exadata Cloud at Customer", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/ADB Exadata Cloud at Customer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Procurement", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Procurement.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Integrator", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Integrator.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Load Balancer ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Load Balancer LB.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Container Registry", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Container Registry.png" + }, { + "tag" : "Oracle Cloud Infrastructure - VCN Flow Logs", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/VCN Flow Logs.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Containers", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Containers.png" + }, { + "tag" : "Oracle Cloud Infrastructure - BI Business intelligence Cloud Connector", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/BI Business intelligence Cloud Connector.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Analytics Cloud", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Analytics Cloud.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage Snapshot", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage Snapshot.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Director", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Director.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Inter Region Latency", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Inter Region Latency.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Digital Media", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Digital Media.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Remote Agent", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Remote Agent.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Jet", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Jet.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Notifications", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Notifications.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database for Azure Portal", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database for Azure Portal.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Flow", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Flow.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Compartments", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Compartments.png" + }, { + "tag" : "Oracle Cloud Infrastructure - IAM", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/IAM.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Inventory Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Inventory Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Distributed Denial of Service Protection ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Distributed Denial of Service Protection DDoS.png" + }, { + "tag" : "Oracle Cloud Infrastructure - BYOIP", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/BYOIP.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Elastic Performance", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Elastic Performance.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Machine Learning", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Machine Learning.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Identity", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Identity.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Media Stream", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Media Stream.png" + }, { + "tag" : "Oracle Cloud Infrastructure - User Group Female", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/User Group Female.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage Clone", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage Clone.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Cloud Migrations", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Cloud Migrations.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Cloud Advisor", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Cloud Advisor.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Marketplace", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Marketplace.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Application Performance Monitoring", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Application Performance Monitoring.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Project Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Project Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Threat Defense", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Threat Defense.png" + }, { + "tag" : "Oracle Cloud Infrastructure - User Male", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/User Male.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database for Google Cloud Platform ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database for Google Cloud Platform GCP.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Visual Builder", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Visual Builder.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database System", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database System.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage Mount Target", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage Mount Target.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Key Vault", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Key Vault.png" + }, { + "tag" : "Oracle Cloud Infrastructure - OKE Virtual Node", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/OKE Virtual Node.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Route Table", + "stroke" : "#bb5127", + "color" : "#bb5127", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Route Table.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Integrations", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Integrations.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Network Security Group ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Network Security Group NSG.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Integration", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Integration.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Exadata", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Exadata.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Forecasting", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Forecasting.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Roving Edge Device", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Roving Edge Device.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Roving Edge Infrastructure", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Roving Edge Infrastructure.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Queuing", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Queuing.png" + }, { + "tag" : "Oracle Cloud Infrastructure - DevOps", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/DevOps.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Fusion", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Fusion.png" + }, { + "tag" : "Oracle Cloud Infrastructure - API Gateway", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/API Gateway.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Enterprise resource Planning Cloud Service ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Enterprise resource Planning Cloud Service ERP.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Burstable Virtual Machine ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Burstable Virtual Machine VM.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Virtual Machine Application", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Virtual Machine Application.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Guard", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Guard.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Remote peering", + "stroke" : "#161513", + "color" : "#161513", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Remote peering.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Blockchain", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Blockchain.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Human Capital Management ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Human Capital Management HCM.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Content Delivery Network ", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Content Delivery Network CDN.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Virtual Cloud Network ", + "stroke" : "#bb5127", + "color" : "#bb5127", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Virtual Cloud Network VCN_red.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Autonomous Transaction Processing ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Autonomous Transaction Processing ATP.png" + }, { + "tag" : "Oracle Cloud Infrastructure - File Storage Replication Process", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/File Storage Replication Process.png" + }, { + "tag" : "Oracle Cloud Infrastructure - VNIC", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/VNIC.png" + }, { + "tag" : "Oracle Cloud Infrastructure - MySQL Database System", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/MySQL Database System.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Manufacturing", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Manufacturing.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Message Producer", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Message Producer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Stream Analytics", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Stream Analytics.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Resource Manager", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Resource Manager.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Innovation Management", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Innovation Management.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Network Visualizer", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Network Visualizer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Workflow", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Workflow.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Big Data", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Big Data.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Block Storage", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Block Storage.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Autoscaling", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Autoscaling.png" + }, { + "tag" : "Oracle Cloud Infrastructure - GoldenGate Application Adapter", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/GoldenGate Application Adapter.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Flex Virtual Machine ", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Flex Virtual Machine VM.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Virtual Machine", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Virtual Machine.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Security Lists", + "stroke" : "#bb5127", + "color" : "#bb5127", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Security Lists_red.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Maximum Security Zone", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Maximum Security Zone.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Logging", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Logging.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Digital Assistant ODA", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Digital Assistant ODA.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Bastion", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Bastion.png" + }, { + "tag" : "Oracle Cloud Infrastructure - APEX", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/APEX.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Organization", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Organization.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Message Listener", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Message Listener.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Database Migration", + "stroke" : "#005968", + "color" : "#005968", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Database Migration.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Data Lake", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Data Lake.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Multiple Containers", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Multiple Containers.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Roving Edge Ultra", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Roving Edge Ultra.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Flexible Load Balancer", + "stroke" : "#2c5967", + "color" : "#2c5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Flexible Load Balancer.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Route Table and Security List", + "stroke" : "#ae562c", + "color" : "#ae562c", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Route Table and Security List.png" + }, { + "tag" : "Oracle Cloud Infrastructure - Local Peering Gateway", + "stroke" : "#2d5967", + "color" : "#2d5967", + "icon" : "https://static.structurizr.com/themes/oracle-cloud-infrastructure-2023.04.01/Local Peering Gateway.png" + } ] +} diff --git a/server/src/test/resources/gettingstarted.expected.svg b/server/src/test/resources/gettingstarted.expected.svg index d31565630..76149ef56 100644 --- a/server/src/test/resources/gettingstarted.expected.svg +++ b/server/src/test/resources/gettingstarted.expected.svg @@ -1 +1 @@ -Software System - System ContextUser[Person]Software System[Software System]Uses +Software System - System ContextUser[Person]Software System[Software System]Uses