Class ListBucketsRequest
Implements
Inherited Members
Namespace: Glitch9.AIDevKit.AmazonAws.S3
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public class ListBucketsRequest : IRequestParameterProvider
Properties
| Edit this page View SourceBucketRegion
Optional. Limits the response to buckets that are located in the specified AWS Region. The AWS Region must be expressed according to the AWS Region code, such as us-west-2.
Note: Requests made to a Regional endpoint that is different from the bucket-region parameter are not supported.
Declaration
public string BucketRegion { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ContinuationToken
Optional. Indicates to Amazon S3 that the list is being continued on this bucket with a token. ContinuationToken is obfuscated and is not a real key. You can use this ContinuationToken for pagination of the list results.
Declaration
public string ContinuationToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MaxBuckets
Optional. Maximum number of buckets to be returned in response. When the number is more than the count of buckets that are owned by an AWS account, return all the buckets in response.
Declaration
public int? MaxBuckets { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
Prefix
Optional. Limits the response to bucket names that begin with the specified bucket name prefix.
Declaration
public string Prefix { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
| Edit this page View SourceGetRequestParameters()
Declaration
public IEnumerable<RequestParameter> GetRequestParameters()
Returns
| Type | Description |
|---|---|
| IEnumerable<RequestParameter> |