Show / Hide Table of Contents

Class GetBucketObjectsArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetBucketObjectsArgs
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 GetBucketObjectsArgs : InvokeArgs

Constructors

View Source

GetBucketObjectsArgs()

Declaration
public GetBucketObjectsArgs()

Properties

View Source

Bucket

Lists object keys in this S3 bucket. Alternatively, an S3 access point ARN can be specified

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

Delimiter

A character used to group keys (Default: none)

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

EncodingType

Encodes keys using this method (Default: none; besides none, only "url" can be used)

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

FetchOwner

Boolean specifying whether to populate the owner list (Default: false)

Declaration
public bool? FetchOwner { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

MaxKeys

Maximum object keys to return (Default: 1000)

Declaration
public int? MaxKeys { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

Prefix

Limits results to object keys with this prefix (Default: none)

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

StartAfter

Returns key names lexicographically after a specific object key in your bucket (Default: none; S3 lists object keys in UTF-8 character encoding in lexicographical order)

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