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.
4037 4038 4039 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4037 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
4015 4016 4017 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4015 def access_key_id @access_key_id end |
#endpoint ⇒ String
Optional. The Amazon Endpoint for S3.
Corresponds to the JSON property endpoint
4020 4021 4022 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4020 def endpoint @endpoint end |
#region ⇒ String
Optional. The name of the AWS region where the bucket is created.
Corresponds to the JSON property region
4025 4026 4027 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4025 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
4030 4031 4032 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4030 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
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 |