Skip to main content

Initializers

import { VariableType } from 'cdktn'

new VariableType()
NameTypeDescription

Static Functions

NameDescription
listNo description.
mapNo description.
objectNo description.
setNo description.
tupleNo description.

list

import { VariableType } from 'cdktn'

VariableType.list(type: string)

typeRequired

  • Type: string

map

import { VariableType } from 'cdktn'

VariableType.map(type: string)

typeRequired

  • Type: string

object

import { VariableType } from 'cdktn'

VariableType.object(attributes: {[ key: string ]: string})

attributesRequired

  • Type: {[ key: string ]: string}

set

import { VariableType } from 'cdktn'

VariableType.set(type: string)

typeRequired

  • Type: string

tuple

import { VariableType } from 'cdktn'

VariableType.tuple(elements: ...string[])

elementsRequired

  • Type: …string[]

Constants

NameTypeDescription
ANYstringNo description.
BOOLstringNo description.
LISTstringNo description.
LIST_BOOLstringNo description.
LIST_NUMBERstringNo description.
LIST_STRINGstringNo description.
MAPstringNo description.
MAP_BOOLstringNo description.
MAP_NUMBERstringNo description.
MAP_STRINGstringNo description.
NUMBERstringNo description.
SETstringNo description.
SET_BOOLstringNo description.
SET_NUMBERstringNo description.
SET_STRINGstringNo description.
STRINGstringNo description.

ANYRequired

public readonly ANY: string;
  • Type: string

BOOLRequired

public readonly BOOL: string;
  • Type: string

LISTRequired

public readonly LIST: string;
  • Type: string

LIST_BOOLRequired

public readonly LIST_BOOL: string;
  • Type: string

LIST_NUMBERRequired

public readonly LIST_NUMBER: string;
  • Type: string

LIST_STRINGRequired

public readonly LIST_STRING: string;
  • Type: string

MAPRequired

public readonly MAP: string;
  • Type: string

MAP_BOOLRequired

public readonly MAP_BOOL: string;
  • Type: string

MAP_NUMBERRequired

public readonly MAP_NUMBER: string;
  • Type: string

MAP_STRINGRequired

public readonly MAP_STRING: string;
  • Type: string

NUMBERRequired

public readonly NUMBER: string;
  • Type: string

SETRequired

public readonly SET: string;
  • Type: string

SET_BOOLRequired

public readonly SET_BOOL: string;
  • Type: string

SET_NUMBERRequired

public readonly SET_NUMBER: string;
  • Type: string

SET_STRINGRequired

public readonly SET_STRING: string;
  • Type: string

STRINGRequired

public readonly STRING: string;
  • Type: string