RosOssStockTask
This class is a base encapsulation around the ROS resource type ALIYUN::Aligreen::OssStockTask
.
Initializers
import "github.com/alibabacloud-go/ros-cdk/alicloudroscdkaligreen"
alicloudroscdkaligreen.NewRosOssStockTask(scope Construct, id *string, props RosOssStockTaskProps, enableResourcePropertyConstraint *bool) RosOssStockTask
Name | Type | Description |
---|---|---|
scope |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.Construct |
- scope in which this resource is defined. |
id |
*string |
- scoped id of the resource. |
props |
RosOssStockTaskProps |
- resource properties. |
enableResourcePropertyConstraint |
*bool |
No description. |
scope
Required
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.Construct
scope in which this resource is defined.
id
Required
- Type: *string
scoped id of the resource.
props
Required
- Type: RosOssStockTaskProps
resource properties.
enableResourcePropertyConstraint
Required
- Type: *bool
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
func ToString() *string
Returns a string representation of this construct.
Synthesize
func Synthesize(session ISynthesisSession)
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: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.ISynthesisSession
The synthesis session.
OverrideLogicalId
func OverrideLogicalId(newLogicalId *string)
Overrides the auto-generated logical ID with a specific ID.
- Type: *string
The new logical ID to use for this stack element.
AddCondition
func AddCondition(con RosCondition)
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.RosCondition
AddCount
func AddCount(count interface{})
- Type: interface{}
AddDeletionOverride
func AddDeletionOverride(path *string)
Syntactic sugar for addOverride(path, undefined)
.
- Type: *string
The path of the value to delete.
AddDependsOn
func AddDependsOn(target RosResource)
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: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.RosResource
AddDesc
func AddDesc(desc *string)
- Type: *string
AddMetaData
func AddMetaData(key *string, value interface{})
- Type: *string
- Type: interface{}
AddOverride
func AddOverride(path *string, value interface{})
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: interface{}
The value.
Could be primitive or complex.
AddPropertyDeletionOverride
func AddPropertyDeletionOverride(propertyPath *string)
Adds an override that deletes the value of a property from the resource definition.
- Type: *string
The path to the property.
AddPropertyOverride
func AddPropertyOverride(propertyPath *string, value interface{})
Adds an override to a resource property.
Syntactic sugar for addOverride("Properties.<...>", value)
.
- Type: *string
The path of the property.
- Type: interface{}
The value.
AddRosDependency
func AddRosDependency(target *string)
- Type: *string
ApplyRemovalPolicy
func ApplyRemovalPolicy(policy RemovalPolicy, options RemovalPolicyOptions)
Sets the deletion policy of the resource based on the removal policy specified.
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.RemovalPolicy
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.RemovalPolicyOptions
GetAtt
func 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 "github.com/alibabacloud-go/ros-cdk/alicloudroscdkaligreen"
alicloudroscdkaligreen.RosOssStockTask_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct.
- Type: interface{}
IsRosElement
import "github.com/alibabacloud-go/ros-cdk/alicloudroscdkaligreen"
alicloudroscdkaligreen.RosOssStockTask_IsRosElement(x interface{}) *bool
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: interface{}
IsRosResource
import "github.com/alibabacloud-go/ros-cdk/alicloudroscdkaligreen"
alicloudroscdkaligreen.RosOssStockTask_IsRosResource(construct IConstruct) *bool
Check whether the given construct is a RosResource.
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IConstruct
Properties
Name | Type | Description |
---|---|---|
Node |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.ConstructNode |
The construct tree node associated with this construct. |
CreationStack |
[]string |
No description. |
LogicalId |
*string |
The logical ID for this stack element. |
Stack |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.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 |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IRosResourceOptions |
Options for this resource, such as condition, update policy etc. |
RosResourceType |
*string |
ROS resource type. |
AttrAudioAntispamFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrAudioAutoFreezeOpened |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrAudioMaxSize |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrAudioOpened |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrAudioScanLimit |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrAudioScenes |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrAutoFreezeType |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrBizType |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrBuckets |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrCallbackId |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrEndDate |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageAdFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageAutoFreezeOpened |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageLiveFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageOpened |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImagePornFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageScanLimit |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageScenes |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrImageTerrorismFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrScanImageNoFileType |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrStartDate |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoAdFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoAutoFreezeOpened |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoFrameInterval |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoLiveFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoMaxFrames |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoMaxSize |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoOpened |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoPornFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoScanLimit |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoScenes |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoTerrorismFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
AttrVideoVoiceAntispamFreezeConfig |
github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable |
No description. |
Buckets |
interface{} |
No description. |
EnableResourcePropertyConstraint |
*bool |
No description. |
StartDate |
interface{} |
No description. |
AudioAntispamFreezeConfig |
interface{} |
No description. |
AudioAutoFreezeOpened |
interface{} |
No description. |
AudioMaxSize |
interface{} |
No description. |
AudioOpened |
interface{} |
No description. |
AudioScanLimit |
interface{} |
No description. |
AudioScenes |
interface{} |
No description. |
AutoFreezeType |
interface{} |
No description. |
BizType |
interface{} |
No description. |
CallbackId |
interface{} |
No description. |
EndDate |
interface{} |
No description. |
ImageAdFreezeConfig |
interface{} |
No description. |
ImageAutoFreezeOpened |
interface{} |
No description. |
ImageLiveFreezeConfig |
interface{} |
No description. |
ImageOpened |
interface{} |
No description. |
ImagePornFreezeConfig |
interface{} |
No description. |
ImageScanLimit |
interface{} |
No description. |
ImageScenes |
interface{} |
No description. |
ImageTerrorismFreezeConfig |
interface{} |
No description. |
OssStockTaskName |
interface{} |
No description. |
ScanImageNoFileType |
interface{} |
No description. |
VideoAdFreezeConfig |
interface{} |
No description. |
VideoAutoFreezeOpened |
interface{} |
No description. |
VideoFrameInterval |
interface{} |
No description. |
VideoLiveFreezeConfig |
interface{} |
No description. |
VideoMaxFrames |
interface{} |
No description. |
VideoMaxSize |
interface{} |
No description. |
VideoOpened |
interface{} |
No description. |
VideoPornFreezeConfig |
interface{} |
No description. |
VideoScanLimit |
interface{} |
No description. |
VideoScenes |
interface{} |
No description. |
VideoTerrorismFreezeConfig |
interface{} |
No description. |
VideoVoiceAntispamFreezeConfig |
interface{} |
No description. |
Node
Required
func Node() ConstructNode
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.ConstructNode
The construct tree node associated with this construct.
CreationStack
Required
func CreationStack() *[]*string
- Type: []string
LogicalId
Required
func 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)
.
Stack
Required
func Stack() Stack
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.Stack
The stack in which this element is defined.
RosElements must be defined within a stack scope (directly or indirectly).
Ref
Required
func 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 })
.
RosOptions
Required
func RosOptions() IRosResourceOptions
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IRosResourceOptions
Options for this resource, such as condition, update policy etc.
RosResourceType
Required
func RosResourceType() *string
- Type: *string
ROS resource type.
AttrAudioAntispamFreezeConfig
Required
func AttrAudioAntispamFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrAudioAutoFreezeOpened
Required
func AttrAudioAutoFreezeOpened() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrAudioMaxSize
Required
func AttrAudioMaxSize() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrAudioOpened
Required
func AttrAudioOpened() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrAudioScanLimit
Required
func AttrAudioScanLimit() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrAudioScenes
Required
func AttrAudioScenes() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrAutoFreezeType
Required
func AttrAutoFreezeType() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrBizType
Required
func AttrBizType() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrBuckets
Required
func AttrBuckets() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrCallbackId
Required
func AttrCallbackId() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrEndDate
Required
func AttrEndDate() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageAdFreezeConfig
Required
func AttrImageAdFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageAutoFreezeOpened
Required
func AttrImageAutoFreezeOpened() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageLiveFreezeConfig
Required
func AttrImageLiveFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageOpened
Required
func AttrImageOpened() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImagePornFreezeConfig
Required
func AttrImagePornFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageScanLimit
Required
func AttrImageScanLimit() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageScenes
Required
func AttrImageScenes() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrImageTerrorismFreezeConfig
Required
func AttrImageTerrorismFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrScanImageNoFileType
Required
func AttrScanImageNoFileType() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrStartDate
Required
func AttrStartDate() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoAdFreezeConfig
Required
func AttrVideoAdFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoAutoFreezeOpened
Required
func AttrVideoAutoFreezeOpened() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoFrameInterval
Required
func AttrVideoFrameInterval() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoLiveFreezeConfig
Required
func AttrVideoLiveFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoMaxFrames
Required
func AttrVideoMaxFrames() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoMaxSize
Required
func AttrVideoMaxSize() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoOpened
Required
func AttrVideoOpened() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoPornFreezeConfig
Required
func AttrVideoPornFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoScanLimit
Required
func AttrVideoScanLimit() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoScenes
Required
func AttrVideoScenes() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoTerrorismFreezeConfig
Required
func AttrVideoTerrorismFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
AttrVideoVoiceAntispamFreezeConfig
Required
func AttrVideoVoiceAntispamFreezeConfig() IResolvable
- Type: github.com/alibabacloud-go/ros-cdk/alicloudroscdkcore.IResolvable
Buckets
Required
func Buckets() interface{}
- Type: interface{}
EnableResourcePropertyConstraint
Required
func EnableResourcePropertyConstraint() *bool
- Type: *bool
StartDate
Required
func StartDate() interface{}
- Type: interface{}
AudioAntispamFreezeConfig
Optional
func AudioAntispamFreezeConfig() interface{}
- Type: interface{}
AudioAutoFreezeOpened
Optional
func AudioAutoFreezeOpened() interface{}
- Type: interface{}
AudioMaxSize
Optional
func AudioMaxSize() interface{}
- Type: interface{}
AudioOpened
Optional
func AudioOpened() interface{}
- Type: interface{}
AudioScanLimit
Optional
func AudioScanLimit() interface{}
- Type: interface{}
AudioScenes
Optional
func AudioScenes() interface{}
- Type: interface{}
AutoFreezeType
Optional
func AutoFreezeType() interface{}
- Type: interface{}
BizType
Optional
func BizType() interface{}
- Type: interface{}
CallbackId
Optional
func CallbackId() interface{}
- Type: interface{}
EndDate
Optional
func EndDate() interface{}
- Type: interface{}
ImageAdFreezeConfig
Optional
func ImageAdFreezeConfig() interface{}
- Type: interface{}
ImageAutoFreezeOpened
Optional
func ImageAutoFreezeOpened() interface{}
- Type: interface{}
ImageLiveFreezeConfig
Optional
func ImageLiveFreezeConfig() interface{}
- Type: interface{}
ImageOpened
Optional
func ImageOpened() interface{}
- Type: interface{}
ImagePornFreezeConfig
Optional
func ImagePornFreezeConfig() interface{}
- Type: interface{}
ImageScanLimit
Optional
func ImageScanLimit() interface{}
- Type: interface{}
ImageScenes
Optional
func ImageScenes() interface{}
- Type: interface{}
ImageTerrorismFreezeConfig
Optional
func ImageTerrorismFreezeConfig() interface{}
- Type: interface{}
OssStockTaskName
Optional
func OssStockTaskName() interface{}
- Type: interface{}
ScanImageNoFileType
Optional
func ScanImageNoFileType() interface{}
- Type: interface{}
VideoAdFreezeConfig
Optional
func VideoAdFreezeConfig() interface{}
- Type: interface{}
VideoAutoFreezeOpened
Optional
func VideoAutoFreezeOpened() interface{}
- Type: interface{}
VideoFrameInterval
Optional
func VideoFrameInterval() interface{}
- Type: interface{}
VideoLiveFreezeConfig
Optional
func VideoLiveFreezeConfig() interface{}
- Type: interface{}
VideoMaxFrames
Optional
func VideoMaxFrames() interface{}
- Type: interface{}
VideoMaxSize
Optional
func VideoMaxSize() interface{}
- Type: interface{}
VideoOpened
Optional
func VideoOpened() interface{}
- Type: interface{}
VideoPornFreezeConfig
Optional
func VideoPornFreezeConfig() interface{}
- Type: interface{}
VideoScanLimit
Optional
func VideoScanLimit() interface{}
- Type: interface{}
VideoScenes
Optional
func VideoScenes() interface{}
- Type: interface{}
VideoTerrorismFreezeConfig
Optional
func VideoTerrorismFreezeConfig() interface{}
- Type: interface{}
VideoVoiceAntispamFreezeConfig
Optional
func VideoVoiceAntispamFreezeConfig() interface{}
- Type: interface{}
Constants
Name | Type | Description |
---|---|---|
RosResourceTypeName |
*string |
The resource type name for this resource class. |
RosResourceTypeName
Required
func RosResourceTypeName() *string
- Type: *string
The resource type name for this resource class.