/** * 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 Kinesis Connection. * */ export interface AmazonKinesisConnectionSummary extends model.ConnectionSummary { /** * The Amazon Kinesis technology type. */ "technologyType": string; /** * Access key ID to access the Amazon Kinesis. * */ "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 endpoint URL of the Amazon Kinesis service. * e.g.: 'https://kinesis.us-east-1.amazonaws.com' * If not provided, GoldenGate will default to 'https://kinesis..amazonaws.com'. * */ "endpoint"?: string; /** * The name of the AWS region. * If not provided, GoldenGate will default to 'us-west-1'. * Note: this property will become mandatory after July 30, 2026. * */ "region"?: string; "connectionType": string; } export declare namespace AmazonKinesisConnectionSummary { function getJsonObj(obj: AmazonKinesisConnectionSummary, isParentJsonObj?: boolean): object; const connectionType = "AMAZON_KINESIS"; function getDeserializedJsonObj(obj: AmazonKinesisConnectionSummary, isParentJsonObj?: boolean): object; }