Class GetBucketObjectsArgs
Inherited Members
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 SourceGetBucketObjectsArgs()
Declaration
public GetBucketObjectsArgs()
Properties
View SourceBucket
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 |
Delimiter
A character used to group keys (Default: none)
Declaration
public string Delimiter { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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 |
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> |
MaxKeys
Maximum object keys to return (Default: 1000)
Declaration
public int? MaxKeys { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Prefix
Limits results to object keys with this prefix (Default: none)
Declaration
public string Prefix { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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 |