Skip to content

AliyunRosStackProperties

Artifact properties for ROS stacks.

Initializer

import { AliyunRosStackProperties } from '@alicloud/ros-cdk-cxapi'
const aliyunRosStackProperties: AliyunRosStackProperties = { ... }

Properties

Name Type Description
templateFile string A file relative to the assembly root which contains the ROS template for this stack.
parameters {[ key: string ]: string} Values for ROS stack parameters that should be passed when the stack is deployed.
stackName string The name to use for the ROS stack.

templateFileRequired

public readonly templateFile: string;
  • Type: string

A file relative to the assembly root which contains the ROS template for this stack.


parametersOptional

public readonly parameters: {[ key: string ]: string};
  • Type: {[ key: string ]: string}

Values for ROS stack parameters that should be passed when the stack is deployed.


stackNameOptional

public readonly stackName: string;
  • Type: string
  • Default: name derived from artifact ID

The name to use for the ROS stack.