Show / Hide Table of Contents

Class ActionDetails

Object used to create an action.

Inheritance
object
ActionDetails
CreateFaaSActionDetails
CreateNotificationServiceActionDetails
CreateStreamingServiceActionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.EventsService.Models
Assembly: OCI.DotNetSDK.Events.dll
Syntax
[JsonConverter(typeof(ActionDetailsModelConverter))]
public class ActionDetails

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.

IsEnabled

Declaration
[Required(ErrorMessage = "IsEnabled is required.")]
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not this action is currently enabled.
Example: true

Remarks

Required

In this article
Back to top