Class: TencentCloud::Teo::V20220901::S3
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::S3
- Defined in:
- lib/v20220901/models.rb
Overview
实时日志投递到 AWS S3 兼容存储桶的配置信息。
Instance Attribute Summary collapse
- #AccessId ⇒ Object
- #AccessKey ⇒ Object
- #Bucket ⇒ Object
- #CompressType ⇒ Object
- #Endpoint ⇒ Object
- #Region ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(endpoint = nil, region = nil, bucket = nil, accessid = nil, accesskey = nil, compresstype = nil) ⇒ S3
constructor
A new instance of S3.
Constructor Details
#initialize(endpoint = nil, region = nil, bucket = nil, accessid = nil, accesskey = nil, compresstype = nil) ⇒ S3
Returns a new instance of S3.
21186 21187 21188 21189 21190 21191 21192 21193 |
# File 'lib/v20220901/models.rb', line 21186 def initialize(endpoint=nil, region=nil, bucket=nil, accessid=nil, accesskey=nil, compresstype=nil) @Endpoint = endpoint @Region = region @Bucket = bucket @AccessId = accessid @AccessKey = accesskey @CompressType = compresstype end |
Instance Attribute Details
#AccessId ⇒ Object
21184 21185 21186 |
# File 'lib/v20220901/models.rb', line 21184 def AccessId @AccessId end |
#AccessKey ⇒ Object
21184 21185 21186 |
# File 'lib/v20220901/models.rb', line 21184 def AccessKey @AccessKey end |
#Bucket ⇒ Object
21184 21185 21186 |
# File 'lib/v20220901/models.rb', line 21184 def Bucket @Bucket end |
#CompressType ⇒ Object
21184 21185 21186 |
# File 'lib/v20220901/models.rb', line 21184 def CompressType @CompressType end |
#Endpoint ⇒ Object
21184 21185 21186 |
# File 'lib/v20220901/models.rb', line 21184 def Endpoint @Endpoint end |
#Region ⇒ Object
21184 21185 21186 |
# File 'lib/v20220901/models.rb', line 21184 def Region @Region end |
Instance Method Details
#deserialize(params) ⇒ Object
21195 21196 21197 21198 21199 21200 21201 21202 |
# File 'lib/v20220901/models.rb', line 21195 def deserialize(params) @Endpoint = params['Endpoint'] @Region = params['Region'] @Bucket = params['Bucket'] @AccessId = params['AccessId'] @AccessKey = params['AccessKey'] @CompressType = params['CompressType'] end |