Class: Aws::CodePipeline::Types::S3ArtifactLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::S3ArtifactLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The location of the S3 bucket that contains a revision.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of the S3 bucket.
-
#object_key ⇒ String
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
Instance Attribute Details
#bucket_name ⇒ String
The name of the S3 bucket.
4833 4834 4835 4836 4837 4838 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 4833 class S3ArtifactLocation < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end |
#object_key ⇒ String
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
4833 4834 4835 4836 4837 4838 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 4833 class S3ArtifactLocation < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end |