Component: SNS Topic

Component diagram

You can use the SNS Topic component to represent and visualize SNS topics from your Amazon Web Services architecture with Cloudcraft.

Toolbar

To configure or customize how your repository looks in a diagram, you can use the toolbar that appears when selecting a component inside the application.

Options

Component toolbar in the Cloudcraft UI

For the SNS Topic component, the following options are available:

  • Color. Select a fill color for the body of the component and an accent color for its symbol. You can use the same colors on 2D and 3D views or different colors for each.
  • Requests / month (K). Enter the number of requests per month in the thousands.

API

Suppose you need programmatic access and remote rendering of architecture diagrams. In that case, the Cloudcraft API provides an interface for you to interact with your AWS account within Cloudcraft by sending and receiving data as JSON objects.

Schema

{
    "type": "snstopic",
    "id": "2bb4357c-7f18-45ba-9cde-37cc8f9717aa",
    "region": "us-east-1",
    "mapPos": [6,9],
    "requests": 1,
    "color": {
        "isometric": "#ECECED",
        "2d": "#CC2264"
    },
    "accentColor": {
        "isometric": "#4286C5",
        "2d": "#FFFFFF"
    },
    "link": "https://aws.amazon.com/sns/",
    "locked": true
}

The SNS Topic component schema representation follows the format above and defines all fields within a diagram for this component.

  • type: string. The type of component. Must be a string of value snstopic for this component.
  • id: string, uuid. The unique identifier for the component. The API uses a UUID v4 internally but accepts any unique string.
  • arn: string. The globally unique identifier for the component within AWS, known as Amazon Resource Names.
  • region: string. The AWS region for the component. The API supports all global regions, except for AWS China.
  • mapPos: array. The position of the component in the blueprint. The API uses a unique X and Y coordinate pair to express positioning.
  • requests: number. The number of requests per month in the thousands. Defaults to 1.
  • color: object. The fill color for the component body.
    • isometric: string. A hexadecimal color for the component body in 3D view. Defaults to #ECECED.
    • 2d: string. A hexadecimal color for the component body in 2D view. Defaults to #CC2264.
  • accentColor: object. The accent color for the component logo.
    • isometric: string. A hexadecimal color for the component logo in 3D view. Defaults to #4286C5.
    • 2d: string. A hexadecimal color for the component logo in 2D view. Defaults to #FFFFFF.
  • link: string, uri. A URI that links the component to another diagram or an external website. Accepts one of two formats, blueprint:// or https://.
  • locked: boolean. Whether to allow changes to the position of the component through the web interface. Defaults to false.