Class: Aws::ApplicationCostProfiler::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationCostProfiler::Types::S3Location
- Defined in:
- gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb
Overview
Note:
When making an API call, you may pass S3Location data as a hash:
{
bucket: "S3Bucket", # required
prefix: "S3Prefix", # required
}
Represents the Amazon Simple Storage Service (Amazon S3) location where AWS Application Cost Profiler reports are generated and then written to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
Name of the S3 bucket.
-
#prefix ⇒ String
Prefix for the location to write to.
Instance Attribute Details
#bucket ⇒ String
Name of the S3 bucket.
340 341 342 343 344 345 |
# File 'gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb', line 340 class S3Location < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
Prefix for the location to write to.
340 341 342 343 344 345 |
# File 'gems/aws-sdk-applicationcostprofiler/lib/aws-sdk-applicationcostprofiler/types.rb', line 340 class S3Location < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |