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.



3906
3907
3908
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3906

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)


3884
3885
3886
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3884

def access_key_id
  @access_key_id
end

#endpointString

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

Returns:

  • (String)


3889
3890
3891
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3889

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)


3894
3895
3896
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3894

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)


3899
3900
3901
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3899

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)


3904
3905
3906
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3904

def technology_type
  @technology_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3911
3912
3913
3914
3915
3916
3917
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3911

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