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.



4100
4101
4102
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4100

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)


4078
4079
4080
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4078

def access_key_id
  @access_key_id
end

#endpointString

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

Returns:

  • (String)


4083
4084
4085
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4083

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)


4088
4089
4090
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4088

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)


4093
4094
4095
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4093

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)


4098
4099
4100
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4098

def technology_type
  @technology_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4105
4106
4107
4108
4109
4110
4111
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4105

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