Class: Google::Apis::OracledatabaseV1::GoldengateAmazonS3ConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateAmazonS3ConnectionProperties
- 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
-
#access_key_id ⇒ String
Optional.
-
#endpoint ⇒ String
Optional.
-
#region ⇒ String
Optional.
-
#secret_access_key_secret ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateAmazonS3ConnectionProperties
constructor
A new instance of GoldengateAmazonS3ConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_id ⇒ String
Optional. Access key ID to access the Amazon S3 bucket.
Corresponds to the JSON property accessKeyId
3884 3885 3886 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3884 def access_key_id @access_key_id end |
#endpoint ⇒ String
Optional. The Amazon Endpoint for S3.
Corresponds to the JSON property endpoint
3889 3890 3891 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3889 def endpoint @endpoint end |
#region ⇒ String
Optional. The name of the AWS region where the bucket is created.
Corresponds to the JSON property region
3894 3895 3896 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3894 def region @region end |
#secret_access_key_secret ⇒ String
Optional. Secret access key to access the Amazon S3 bucket.
Corresponds to the JSON property secretAccessKeySecret
3899 3900 3901 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3899 def secret_access_key_secret @secret_access_key_secret end |
#technology_type ⇒ String
Optional. The technology type of AmazonS3Connection.
Corresponds to the JSON property technologyType
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 |