Show / Hide Table of Contents

Class GetBucketObjectArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetBucketObjectArgs
Inherited Members
InvokeArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.S3
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetBucketObjectArgs : InvokeArgs

Constructors

View Source

GetBucketObjectArgs()

Declaration
public GetBucketObjectArgs()

Properties

View Source

Bucket

The name of the bucket to read the object from. Alternatively, an S3 access point ARN can be specified

Declaration
public string Bucket { get; set; }
Property Value
Type Description
System.String
View Source

Key

The full path to the object inside the bucket

Declaration
public string Key { get; set; }
Property Value
Type Description
System.String
View Source

Range

Declaration
public string Range { get; set; }
Property Value
Type Description
System.String
View Source

Tags

A map of tags assigned to the object.

Declaration
public Dictionary<string, object> Tags { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.Object>
View Source

VersionId

Specific version ID of the object returned (defaults to latest version)

Declaration
public string VersionId { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.