Show / Hide Table of Contents

Class ObjectStorageSnapshotExportDetails

Specifies where to output the export in Object Storage.

Inheritance
object
SnapshotExportDetails
ObjectStorageSnapshotExportDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingService.Models
Assembly: OCI.DotNetSDK.Datalabelingservice.dll
Syntax
public class ObjectStorageSnapshotExportDetails : SnapshotExportDetails

Properties

Bucket

Declaration
[Required(ErrorMessage = "Bucket is required.")]
[JsonProperty(PropertyName = "bucket")]
public string Bucket { get; set; }
Property Value
Type Description
string

Bucket name

Remarks

Required

Namespace

Declaration
[Required(ErrorMessage = "Namespace is required.")]
[JsonProperty(PropertyName = "namespace")]
public string Namespace { get; set; }
Property Value
Type Description
string

Bucket namespace name

Remarks

Required

Prefix

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

Object path prefix to put snapshot file(s)

In this article
Back to top