/** * 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"; /** * Summary of the Amazon S3 Connection. * */ export interface AmazonS3ConnectionSummary extends model.ConnectionSummary { /** * The Amazon S3 technology type. */ "technologyType": string; /** * Access key ID to access the Amazon S3 bucket. * e.g.: \"this-is-not-the-secret\" * */ "accessKeyId": string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the Secret Access Key is stored. * Note: When provided, 'secretAccessKey' field must not be provided. * */ "secretAccessKeySecretId"?: string; /** * The Amazon Endpoint for S3. * e.g.: 'https://my-bucket.s3.us-east-1.amazonaws.com' * If not provided, GoldenGate will default to 'https://s3..amazonaws.com'. * */ "endpoint"?: string; /** * The name of the AWS region where the bucket is created. * If not provided, GoldenGate will default to 'us-west-2'. * Note: this property will become mandatory after May 20, 2026. * */ "region"?: string; "connectionType": string; } export declare namespace AmazonS3ConnectionSummary { function getJsonObj(obj: AmazonS3ConnectionSummary, isParentJsonObj?: boolean): object; const connectionType = "AMAZON_S3"; function getDeserializedJsonObj(obj: AmazonS3ConnectionSummary, isParentJsonObj?: boolean): object; }