Class: Google::Apis::OracledatabaseV1::GoldengateAmazonKinesisConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateAmazonKinesisConnectionProperties
- 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 GoldengateAmazonKinesisConnection.
Instance Attribute Summary collapse
-
#access_key_id ⇒ String
Optional.
-
#aws_region ⇒ String
Optional.
-
#endpoint ⇒ String
Optional.
-
#secret_access_key_secret ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateAmazonKinesisConnectionProperties
constructor
A new instance of GoldengateAmazonKinesisConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateAmazonKinesisConnectionProperties
Returns a new instance of GoldengateAmazonKinesisConnectionProperties.
3815 3816 3817 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3815 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access_key_id ⇒ String
Optional. Access key ID to access the Amazon Kinesis.
Corresponds to the JSON property accessKeyId
3790 3791 3792 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3790 def access_key_id @access_key_id end |
#aws_region ⇒ String
Optional. The name of the AWS region. If not provided, Goldengate will default
to 'us-west-1'.
Corresponds to the JSON property awsRegion
3796 3797 3798 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3796 def aws_region @aws_region end |
#endpoint ⇒ String
Optional. The endpoint URL of the Amazon Kinesis service. e.g.: 'https://
kinesis.us-east-1.amazonaws.com' If not provided, Goldengate will default to '
https://kinesis..amazonaws.com'.
Corresponds to the JSON property endpoint
3803 3804 3805 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3803 def endpoint @endpoint end |
#secret_access_key_secret ⇒ String
Optional. Secret access key to access the Amazon Kinesis.
Corresponds to the JSON property secretAccessKeySecret
3808 3809 3810 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3808 def secret_access_key_secret @secret_access_key_secret end |
#technology_type ⇒ String
Optional. The technology type of AmazonKinesisConnection.
Corresponds to the JSON property technologyType
3813 3814 3815 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3813 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3820 3821 3822 3823 3824 3825 3826 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 3820 def update!(**args) @access_key_id = args[:access_key_id] if args.key?(:access_key_id) @aws_region = args[:aws_region] if args.key?(:aws_region) @endpoint = args[:endpoint] if args.key?(:endpoint) @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 |