Class: Google::Apis::OracledatabaseV1::GoldengateAmazonKinesisConnectionProperties

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb

Overview

The properties of GoldengateAmazonKinesisConnection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateAmazonKinesisConnectionProperties

Returns a new instance of GoldengateAmazonKinesisConnectionProperties.



4009
4010
4011
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4009

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#access_key_idString

Optional. Access key ID to access the Amazon Kinesis. Corresponds to the JSON property accessKeyId

Returns:

  • (String)


3984
3985
3986
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3984

def access_key_id
  @access_key_id
end

#aws_regionString

Optional. The name of the AWS region. If not provided, Goldengate will default to 'us-west-1'. Corresponds to the JSON property awsRegion

Returns:

  • (String)


3990
3991
3992
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3990

def aws_region
  @aws_region
end

#endpointString

Optional. 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'. Corresponds to the JSON property endpoint

Returns:

  • (String)


3997
3998
3999
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3997

def endpoint
  @endpoint
end

#secret_access_key_secretString

Optional. Secret access key to access the Amazon Kinesis. Corresponds to the JSON property secretAccessKeySecret

Returns:

  • (String)


4002
4003
4004
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4002

def secret_access_key_secret
  @secret_access_key_secret
end

#technology_typeString

Optional. The technology type of AmazonKinesisConnection. Corresponds to the JSON property technologyType

Returns:

  • (String)


4007
4008
4009
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4007

def technology_type
  @technology_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4014
4015
4016
4017
4018
4019
4020
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4014

def update!(**args)
  @access_key_id = args[:access_key_id] if args.key?(:access_key_id)
  @aws_region = args[:aws_region] if args.key?(:aws_region)
  @endpoint = args[:endpoint] if args.key?(:endpoint)
  @secret_access_key_secret = args[:secret_access_key_secret] if args.key?(:secret_access_key_secret)
  @technology_type = args[:technology_type] if args.key?(:technology_type)
end