Class: Aws::CodePipeline::Types::S3ArtifactLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::S3ArtifactLocation
- Defined in:
- gems/aws-sdk-codepipeline/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.
4850 4851 4852 4853 4854 4855 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4850 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.
4850 4851 4852 4853 4854 4855 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4850 class S3ArtifactLocation < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end |