RosInfo
Initializers
import { RosInfo } from '@alicloud/ros-cdk-core'
new RosInfo(scope: Construct, id: string, info: string | {[ key: string ]: any})
| Name | Type | Description |
|---|---|---|
scope |
Construct |
The parent construct. |
id |
string |
No description. |
info |
string | {[ key: string ]: any} |
No description. |
scopeRequired
- Type: Construct
The parent construct.
idRequired
- Type: string
infoRequired
- Type: string | {[ key: string ]: any}
Methods
| Name | Description |
|---|---|
toString |
Returns a string representation of this construct. |
synthesize |
Allows this construct to emit artifacts into the cloud assembly during synthesis. |
overrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
toString
public toString(): string
Returns a string representation of this construct.
synthesize
public synthesize(session: ISynthesisSession): void
Allows this construct to emit artifacts into the cloud assembly during synthesis.
This method is usually implemented by framework-level constructs such as Stack and Asset
as they participate in synthesizing the cloud assembly.
- Type: ISynthesisSession
The synthesis session.
overrideLogicalId
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
Static Functions
| Name | Description |
|---|---|
isConstruct |
Return whether the given object is a Construct. |
isRosElement |
Returns true if a construct is a stack element (i.e. part of the synthesized template). |
isConstruct
import { RosInfo } from '@alicloud/ros-cdk-core'
RosInfo.isConstruct(x: any)
Return whether the given object is a Construct.
- Type: any
isRosElement
import { RosInfo } from '@alicloud/ros-cdk-core'
RosInfo.isRosElement(x: any)
Returns true if a construct is a stack element (i.e. part of the synthesized template).
Uses duck-typing instead of instanceof to allow stack elements from different
versions of this library to be included in the same stack.
- Type: any
Properties
| Name | Type | Description |
|---|---|---|
node |
ConstructNode |
The construct tree node associated with this construct. |
creationStack |
string[] |
No description. |
logicalId |
string |
The logical ID for this stack element. |
stack |
Stack |
The stack in which this element is defined. |
description |
string |
No description. |
formatVersion |
string |
No description. |
metadata |
string |
No description. |
v20150901 |
string |
No description. |
nodeRequired
public readonly node: ConstructNode;
- Type: ConstructNode
The construct tree node associated with this construct.
creationStackRequired
public readonly creationStack: string[];
- Type: string[]
logicalIdRequired
public readonly logicalId: string;
- Type: string
The logical ID for this stack element.
The logical ID of the element is calculated from the path of the resource node in the construct tree.
To override this value, use overrideLogicalId(newLogicalId).
stackRequired
public readonly stack: Stack;
- Type: Stack
The stack in which this element is defined.
RosElements must be defined within a stack scope (directly or indirectly).
descriptionRequired
public readonly description: string;
- Type: string
formatVersionRequired
public readonly formatVersion: string;
- Type: string
metadataRequired
public readonly metadata: string;
- Type: string
v20150901Required
public readonly v20150901: string;
- Type: string