Show / Hide Table of Contents

Class OracleAwsS3DataTransferMediumDetails

AWS S3 bucket details used for source Connection resources with RDS_ORACLE type. Only supported for source Connection resources with RDS_ORACLE type.

Inheritance
object
OracleDataTransferMediumDetails
OracleAwsS3DataTransferMediumDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class OracleAwsS3DataTransferMediumDetails : OracleDataTransferMediumDetails

Properties

AccessKeyId

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

AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

Name

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

S3 bucket name.

ObjectStorageBucket

Declaration
[JsonProperty(PropertyName = "objectStorageBucket")]
public ObjectStoreBucket ObjectStorageBucket { get; set; }
Property Value
Type Description
ObjectStoreBucket

Region

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

AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions

SecretAccessKey

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

AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

In this article
Back to top