Skip to content

AliyunRosStackProperties

Artifact properties for ROS stacks.

Initializer

using AlibabaCloud.SDK.ROS.CDK.Cxapi;
new AliyunRosStackProperties {
    string TemplateFile,
    System.Collections.Generic.IDictionary<string, string> Parameters = null,
    string StackName = null
};

Properties

Name Type Description
TemplateFile string A file relative to the assembly root which contains the ROS template for this stack.
Parameters System.Collections.Generic.IDictionary 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 string TemplateFile { get; set; }
  • Type: string

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


ParametersOptional

public System.Collections.Generic.IDictionary<string, string> Parameters { get; set; }
  • Type: System.Collections.Generic.IDictionary

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


StackNameOptional

public string StackName { get; set; }
  • Type: string
  • Default: name derived from artifact ID

The name to use for the ROS stack.