Show / Hide Table of Contents

Class UpdateAmazonKinesisConnectionDetails

The information to update a the Amazon Kinesis Connection.

Inheritance
object
UpdateConnectionDetails
UpdateAmazonKinesisConnectionDetails
Inherited Members
UpdateConnectionDetails.DisplayName
UpdateConnectionDetails.Description
UpdateConnectionDetails.FreeformTags
UpdateConnectionDetails.DefinedTags
UpdateConnectionDetails.VaultId
UpdateConnectionDetails.KeyId
UpdateConnectionDetails.NsgIds
UpdateConnectionDetails.SubnetId
UpdateConnectionDetails.RoutingMethod
UpdateConnectionDetails.DoesUseSecretIds
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class UpdateAmazonKinesisConnectionDetails : UpdateConnectionDetails

Properties

AccessKeyId

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

Access key ID to access the Amazon Kinesis.

SecretAccessKey

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

Secret access key to access the Amazon Kinesis. Deprecated: This field is deprecated and replaced by "secretAccessKeySecretId". This field will be removed after February 15 2026.

SecretAccessKeySecretId

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

The OCID of the Secret where the secret access key is stored. Note: When provided, 'secretAccessKey' field must not be provided.

In this article
Back to top