RosOssStockTask
This class is a base encapsulation around the ROS resource type ALIYUN::Aligreen::OssStockTask.
Initializers
import { RosOssStockTask } from '@alicloud/ros-cdk-aligreen'
new RosOssStockTask(scope: Construct, id: string, props: RosOssStockTaskProps, enableResourcePropertyConstraint: boolean)
| Name | Type | Description |
|---|---|---|
scope |
@alicloud/ros-cdk-core.Construct |
- scope in which this resource is defined. |
id |
string |
- scoped id of the resource. |
props |
RosOssStockTaskProps |
- resource properties. |
enableResourcePropertyConstraint |
boolean |
No description. |
scopeRequired
- Type: @alicloud/ros-cdk-core.Construct
scope in which this resource is defined.
idRequired
- Type: string
scoped id of the resource.
propsRequired
- Type: RosOssStockTaskProps
resource properties.
enableResourcePropertyConstraintRequired
- Type: boolean
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. |
addCondition |
No description. |
addCount |
No description. |
addDeletionOverride |
Syntactic sugar for addOverride(path, undefined). |
addDependsOn |
Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. |
addDesc |
No description. |
addMetaData |
No description. |
addOverride |
Adds an override to the synthesized ROS resource. |
addPropertyDeletionOverride |
Adds an override that deletes the value of a property from the resource definition. |
addPropertyOverride |
Adds an override to a resource property. |
addRosDependency |
No description. |
applyRemovalPolicy |
Sets the deletion policy of the resource based on the removal policy specified. |
getAtt |
Returns a token for an runtime attribute of this resource. |
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: @alicloud/ros-cdk-core.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.
addCondition
public addCondition(con: RosCondition): void
- Type: @alicloud/ros-cdk-core.RosCondition
addCount
public addCount(count: number | IResolvable): void
- Type: number | @alicloud/ros-cdk-core.IResolvable
addDeletionOverride
public addDeletionOverride(path: string): void
Syntactic sugar for addOverride(path, undefined).
- Type: string
The path of the value to delete.
addDependsOn
public addDependsOn(target: RosResource): void
Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope.
- Type: @alicloud/ros-cdk-core.RosResource
addDesc
public addDesc(desc: string): void
- Type: string
addMetaData
public addMetaData(key: string, value: any): void
- Type: string
- Type: any
addOverride
public addOverride(path: string, value: any): void
Adds an override to the synthesized ROS resource.
To add a
property override, either use addPropertyOverride or prefix path with
"Properties." (i.e. Properties.TopicName).
If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path.
For example,
addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute'])
addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE')
would add the overrides
"Properties": {
"GlobalSecondaryIndexes": [
{
"Projection": {
"NonKeyAttributes": [ "myattribute" ]
...
}
...
},
{
"ProjectionType": "INCLUDE"
...
},
]
...
}
- Type: string
The path of the property, you can use dot notation to override values in complex types.
Any intermdediate keys will be created as needed.
- Type: any
The value.
Could be primitive or complex.
addPropertyDeletionOverride
public addPropertyDeletionOverride(propertyPath: string): void
Adds an override that deletes the value of a property from the resource definition.
- Type: string
The path to the property.
addPropertyOverride
public addPropertyOverride(propertyPath: string, value: any): void
Adds an override to a resource property.
Syntactic sugar for addOverride("Properties.<...>", value).
- Type: string
The path of the property.
- Type: any
The value.
addRosDependency
public addRosDependency(target: string): void
- Type: string
applyRemovalPolicy
public applyRemovalPolicy(policy?: RemovalPolicy, options?: RemovalPolicyOptions): void
Sets the deletion policy of the resource based on the removal policy specified.
- Type: @alicloud/ros-cdk-core.RemovalPolicy
- Type: @alicloud/ros-cdk-core.RemovalPolicyOptions
getAtt
public getAtt(attributeName: string): Reference
Returns a token for an runtime attribute of this resource.
Ideally, use generated attribute accessors (e.g. resource.arn), but this can be used for future compatibility
in case there is no generated attribute.
- Type: string
The name of the attribute.
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). |
isRosResource |
Check whether the given construct is a RosResource. |
isConstruct
import { RosOssStockTask } from '@alicloud/ros-cdk-aligreen'
RosOssStockTask.isConstruct(x: any)
Return whether the given object is a Construct.
- Type: any
isRosElement
import { RosOssStockTask } from '@alicloud/ros-cdk-aligreen'
RosOssStockTask.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
isRosResource
import { RosOssStockTask } from '@alicloud/ros-cdk-aligreen'
RosOssStockTask.isRosResource(construct: IConstruct)
Check whether the given construct is a RosResource.
- Type: @alicloud/ros-cdk-core.IConstruct
Properties
| Name | Type | Description |
|---|---|---|
node |
@alicloud/ros-cdk-core.ConstructNode |
The construct tree node associated with this construct. |
creationStack |
string[] |
No description. |
logicalId |
string |
The logical ID for this stack element. |
stack |
@alicloud/ros-cdk-core.Stack |
The stack in which this element is defined. |
ref |
string |
Return a string that will be resolved to a RosTemplate { Ref } for this element. |
rosOptions |
@alicloud/ros-cdk-core.IRosResourceOptions |
Options for this resource, such as condition, update policy etc. |
rosResourceType |
string |
ROS resource type. |
attrAudioAntispamFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrAudioAutoFreezeOpened |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrAudioMaxSize |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrAudioOpened |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrAudioScanLimit |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrAudioScenes |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrAutoFreezeType |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrBizType |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrBuckets |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrCallbackId |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrEndDate |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageAdFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageAutoFreezeOpened |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageLiveFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageOpened |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImagePornFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageScanLimit |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageScenes |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrImageTerrorismFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrScanImageNoFileType |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrStartDate |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoAdFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoAutoFreezeOpened |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoFrameInterval |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoLiveFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoMaxFrames |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoMaxSize |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoOpened |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoPornFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoScanLimit |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoScenes |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoTerrorismFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
attrVideoVoiceAntispamFreezeConfig |
@alicloud/ros-cdk-core.IResolvable |
No description. |
buckets |
any[] | @alicloud/ros-cdk-core.IResolvable |
No description. |
enableResourcePropertyConstraint |
boolean |
No description. |
startDate |
string | @alicloud/ros-cdk-core.IResolvable |
No description. |
audioAntispamFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
audioAutoFreezeOpened |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
audioMaxSize |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
audioOpened |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
audioScanLimit |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
audioScenes |
@alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[] |
No description. |
autoFreezeType |
string | @alicloud/ros-cdk-core.IResolvable |
No description. |
bizType |
string | @alicloud/ros-cdk-core.IResolvable |
No description. |
callbackId |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
endDate |
string | @alicloud/ros-cdk-core.IResolvable |
No description. |
imageAdFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
imageAutoFreezeOpened |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
imageLiveFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
imageOpened |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
imagePornFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
imageScanLimit |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
imageScenes |
@alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[] |
No description. |
imageTerrorismFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
ossStockTaskName |
string | @alicloud/ros-cdk-core.IResolvable |
No description. |
scanImageNoFileType |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoAdFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
videoAutoFreezeOpened |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoFrameInterval |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoLiveFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
videoMaxFrames |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoMaxSize |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoOpened |
boolean | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoPornFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
videoScanLimit |
number | @alicloud/ros-cdk-core.IResolvable |
No description. |
videoScenes |
@alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[] |
No description. |
videoTerrorismFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
videoVoiceAntispamFreezeConfig |
@alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any} |
No description. |
nodeRequired
public readonly node: ConstructNode;
- Type: @alicloud/ros-cdk-core.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: @alicloud/ros-cdk-core.Stack
The stack in which this element is defined.
RosElements must be defined within a stack scope (directly or indirectly).
refRequired
public readonly ref: string;
- Type: string
Return a string that will be resolved to a RosTemplate { Ref } for this element.
If, by any chance, the intrinsic reference of a resource is not a string, you could
coerce it to an IResolvable through Lazy.any({ produce: resource.ref }).
rosOptionsRequired
public readonly rosOptions: IRosResourceOptions;
- Type: @alicloud/ros-cdk-core.IRosResourceOptions
Options for this resource, such as condition, update policy etc.
rosResourceTypeRequired
public readonly rosResourceType: string;
- Type: string
ROS resource type.
attrAudioAntispamFreezeConfigRequired
public readonly attrAudioAntispamFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrAudioAutoFreezeOpenedRequired
public readonly attrAudioAutoFreezeOpened: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrAudioMaxSizeRequired
public readonly attrAudioMaxSize: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrAudioOpenedRequired
public readonly attrAudioOpened: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrAudioScanLimitRequired
public readonly attrAudioScanLimit: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrAudioScenesRequired
public readonly attrAudioScenes: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrAutoFreezeTypeRequired
public readonly attrAutoFreezeType: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrBizTypeRequired
public readonly attrBizType: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrBucketsRequired
public readonly attrBuckets: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrCallbackIdRequired
public readonly attrCallbackId: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrEndDateRequired
public readonly attrEndDate: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageAdFreezeConfigRequired
public readonly attrImageAdFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageAutoFreezeOpenedRequired
public readonly attrImageAutoFreezeOpened: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageLiveFreezeConfigRequired
public readonly attrImageLiveFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageOpenedRequired
public readonly attrImageOpened: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImagePornFreezeConfigRequired
public readonly attrImagePornFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageScanLimitRequired
public readonly attrImageScanLimit: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageScenesRequired
public readonly attrImageScenes: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrImageTerrorismFreezeConfigRequired
public readonly attrImageTerrorismFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrScanImageNoFileTypeRequired
public readonly attrScanImageNoFileType: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrStartDateRequired
public readonly attrStartDate: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoAdFreezeConfigRequired
public readonly attrVideoAdFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoAutoFreezeOpenedRequired
public readonly attrVideoAutoFreezeOpened: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoFrameIntervalRequired
public readonly attrVideoFrameInterval: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoLiveFreezeConfigRequired
public readonly attrVideoLiveFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoMaxFramesRequired
public readonly attrVideoMaxFrames: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoMaxSizeRequired
public readonly attrVideoMaxSize: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoOpenedRequired
public readonly attrVideoOpened: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoPornFreezeConfigRequired
public readonly attrVideoPornFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoScanLimitRequired
public readonly attrVideoScanLimit: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoScenesRequired
public readonly attrVideoScenes: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoTerrorismFreezeConfigRequired
public readonly attrVideoTerrorismFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
attrVideoVoiceAntispamFreezeConfigRequired
public readonly attrVideoVoiceAntispamFreezeConfig: IResolvable;
- Type: @alicloud/ros-cdk-core.IResolvable
bucketsRequired
public readonly buckets: any[] | IResolvable;
- Type: any[] | @alicloud/ros-cdk-core.IResolvable
enableResourcePropertyConstraintRequired
public readonly enableResourcePropertyConstraint: boolean;
- Type: boolean
startDateRequired
public readonly startDate: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
audioAntispamFreezeConfigOptional
public readonly audioAntispamFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
audioAutoFreezeOpenedOptional
public readonly audioAutoFreezeOpened: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
audioMaxSizeOptional
public readonly audioMaxSize: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
audioOpenedOptional
public readonly audioOpened: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
audioScanLimitOptional
public readonly audioScanLimit: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
audioScenesOptional
public readonly audioScenes: IResolvable | string | IResolvable[];
- Type: @alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[]
autoFreezeTypeOptional
public readonly autoFreezeType: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
bizTypeOptional
public readonly bizType: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
callbackIdOptional
public readonly callbackId: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
endDateOptional
public readonly endDate: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
imageAdFreezeConfigOptional
public readonly imageAdFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
imageAutoFreezeOpenedOptional
public readonly imageAutoFreezeOpened: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
imageLiveFreezeConfigOptional
public readonly imageLiveFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
imageOpenedOptional
public readonly imageOpened: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
imagePornFreezeConfigOptional
public readonly imagePornFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
imageScanLimitOptional
public readonly imageScanLimit: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
imageScenesOptional
public readonly imageScenes: IResolvable | string | IResolvable[];
- Type: @alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[]
imageTerrorismFreezeConfigOptional
public readonly imageTerrorismFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
ossStockTaskNameOptional
public readonly ossStockTaskName: string | IResolvable;
- Type: string | @alicloud/ros-cdk-core.IResolvable
scanImageNoFileTypeOptional
public readonly scanImageNoFileType: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
videoAdFreezeConfigOptional
public readonly videoAdFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
videoAutoFreezeOpenedOptional
public readonly videoAutoFreezeOpened: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
videoFrameIntervalOptional
public readonly videoFrameInterval: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
videoLiveFreezeConfigOptional
public readonly videoLiveFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
videoMaxFramesOptional
public readonly videoMaxFrames: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
videoMaxSizeOptional
public readonly videoMaxSize: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
videoOpenedOptional
public readonly videoOpened: boolean | IResolvable;
- Type: boolean | @alicloud/ros-cdk-core.IResolvable
videoPornFreezeConfigOptional
public readonly videoPornFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
videoScanLimitOptional
public readonly videoScanLimit: number | IResolvable;
- Type: number | @alicloud/ros-cdk-core.IResolvable
videoScenesOptional
public readonly videoScenes: IResolvable | string | IResolvable[];
- Type: @alicloud/ros-cdk-core.IResolvable | string | @alicloud/ros-cdk-core.IResolvable[]
videoTerrorismFreezeConfigOptional
public readonly videoTerrorismFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
videoVoiceAntispamFreezeConfigOptional
public readonly videoVoiceAntispamFreezeConfig: IResolvable | {[ key: string ]: any};
- Type: @alicloud/ros-cdk-core.IResolvable | {[ key: string ]: any}
Constants
| Name | Type | Description |
|---|---|---|
ROS_RESOURCE_TYPE_NAME |
string |
The resource type name for this resource class. |
ROS_RESOURCE_TYPE_NAMERequired
public readonly ROS_RESOURCE_TYPE_NAME: string;
- Type: string
The resource type name for this resource class.