Show / Hide Table of Contents

Class ObjectStorageTargetDetails

The destination bucket for data transferred from the source. For configuration instructions, see Creating a Connector.

Inheritance
object
TargetDetails
ObjectStorageTargetDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class ObjectStorageTargetDetails : TargetDetails

Properties

BatchRolloverSizeInMBs

Declaration
[JsonProperty(PropertyName = "batchRolloverSizeInMBs")]
public int? BatchRolloverSizeInMBs { get; set; }
Property Value
Type Description
int?

The batch rollover size in megabytes.

BatchRolloverTimeInMs

Declaration
[JsonProperty(PropertyName = "batchRolloverTimeInMs")]
public int? BatchRolloverTimeInMs { get; set; }
Property Value
Type Description
int?

The batch rollover time in milliseconds.

BucketName

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

The name of the bucket. Valid characters are letters (upper or lower case), numbers, hyphens (-), underscores(_), and periods (.). Bucket names must be unique within an Object Storage namespace. Avoid entering confidential information. Example: my-new-bucket1

Remarks

Required

Namespace

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

The namespace.

ObjectNamePrefix

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

The prefix of the objects. Avoid entering confidential information.

In this article
Back to top