/** * GoldenGate API * Use the Oracle Cloud Infrastructure GoldenGate APIs to perform data replication operations. * OpenAPI spec version: 20200407 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Represents an Amazon S3 storage used in the Iceberg connection. * */ export interface AmazonS3IcebergStorage extends model.IcebergStorage { /** * The scheme of the storage. */ "schemeType": AmazonS3IcebergStorage.SchemeType; /** * The endpoint URL of the Amazon S3 storage service. * e.g.: 'https://s3.amazonaws.com' * */ "endpoint"?: string; /** * Access key ID to access the Amazon S3 bucket. * */ "accessKeyId": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored. * */ "secretAccessKeySecretId"?: string; /** * The AMAZON region where the S3 bucket is hosted. * e.g.: 'us-east-2' * */ "region": string; /** * S3 bucket where Iceberg stores metadata and data files. */ "bucket": string; "storageType": string; } export declare namespace AmazonS3IcebergStorage { enum SchemeType { S3 = "S3", S3A = "S3A", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } function getJsonObj(obj: AmazonS3IcebergStorage, isParentJsonObj?: boolean): object; const storageType = "AMAZON_S3"; function getDeserializedJsonObj(obj: AmazonS3IcebergStorage, isParentJsonObj?: boolean): object; }