Class: Google::Apis::OracledatabaseV1::GoldengateAmazonS3ConnectionProperties

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 GoldengateAmazonS3Connection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateAmazonS3ConnectionProperties

Returns a new instance of GoldengateAmazonS3ConnectionProperties.



4037
4038
4039
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4037

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

Instance Attribute Details

#access_key_idString

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

Returns:

  • (String)


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

def access_key_id
  @access_key_id
end

#endpointString

Optional. The Amazon Endpoint for S3. Corresponds to the JSON property endpoint

Returns:

  • (String)


4020
4021
4022
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4020

def endpoint
  @endpoint
end

#regionString

Optional. The name of the AWS region where the bucket is created. Corresponds to the JSON property region

Returns:

  • (String)


4025
4026
4027
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4025

def region
  @region
end

#secret_access_key_secretString

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

Returns:

  • (String)


4030
4031
4032
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4030

def secret_access_key_secret
  @secret_access_key_secret
end

#technology_typeString

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

Returns:

  • (String)


4035
4036
4037
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4035

def technology_type
  @technology_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4042
4043
4044
4045
4046
4047
4048
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4042

def update!(**args)
  @access_key_id = args[:access_key_id] if args.key?(:access_key_id)
  @endpoint = args[:endpoint] if args.key?(:endpoint)
  @region = args[:region] if args.key?(:region)
  @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