Skip to content

FnJoin

The intrinsic function Fn::Join appends a set of values into a single value, separated by the specified delimiter.

If a delimiter is the empty string, the set of values are concatenated with no delimiter.

Initializers

using AlibabaCloud.SDK.ROS.CDK.Core;
new FnJoin(string Delimiter, object[] ListOfValues);
Name Type Description
Delimiter string The value you want to occur between fragments.
ListOfValues object[] The list of values you want combined.

DelimiterRequired

  • Type: string

The value you want to occur between fragments.

The delimiter will occur between fragments only. It will not terminate the final value.


ListOfValuesRequired

  • Type: object[]

The list of values you want combined.


Methods

Name Description
Resolve Produce the Token's value at resolution time.
ToJSON No description.
ToString Return a string representation of this resolvable object.

Resolve

private object Resolve(IResolveContext Context)

Produce the Token's value at resolution time.

ContextRequired


ToJSON

private string ToJSON()

ToString

private string ToString()

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack string[] The creation stack of this resolvable which will be appended to errors thrown during resolution.

CreationStackRequired

public string[] CreationStack { get; }
  • Type: string[]

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.