Class: Aws::ApplicationCostProfiler::Types::SourceS3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationCostProfiler::Types::SourceS3Location
- Defined in:
- gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb
Overview
Note:
When making an API call, you may pass SourceS3Location data as a hash:
{
bucket: "S3Bucket", # required
key: "S3Key", # required
region: "ap-east-1", # accepts ap-east-1, me-south-1, eu-south-1, af-south-1
}
Represents the Amazon Simple Storage Service (Amazon S3) location where usage data is read from.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
Name of the bucket.
-
#key ⇒ String
Key of the object.
-
#region ⇒ String
Region of the bucket.
Instance Attribute Details
#bucket ⇒ String
Name of the bucket.
393 394 395 396 397 398 399 |
# File 'gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb', line 393 class SourceS3Location < Struct.new( :bucket, :key, :region) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
Key of the object.
393 394 395 396 397 398 399 |
# File 'gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb', line 393 class SourceS3Location < Struct.new( :bucket, :key, :region) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
Region of the bucket. Only required for Regions that are disabled by default. For more infomration about Regions that are disabled by default, see Enabling a Region in the AWS General Reference guide.
393 394 395 396 397 398 399 |
# File 'gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb', line 393 class SourceS3Location < Struct.new( :bucket, :key, :region) SENSITIVE = [] include Aws::Structure end |