Record Class PipelineCrawlerResource.PipelineCrawlPayload.S3Payload
java.lang.Object
java.lang.Record
ai.pipestream.module.pipelineprobe.pipelinecrawl.PipelineCrawlerResource.PipelineCrawlPayload.S3Payload
- Record Components:
endpointOverride- the S3 endpoint URL overrideregion- the S3 regioncredentialsType- "static" or "anonymous"accessKeyId- the static access key idsecretAccessKey- the static secret access keypathStyleAccess- whether to use path-style bucket addressingbucket- the bucket to crawlprefix- the key prefix to crawl within the buckethydrateSampleData- when true, seed the sample corpus before crawling
- Enclosing class:
PipelineCrawlerResource.PipelineCrawlPayload
public static record PipelineCrawlerResource.PipelineCrawlPayload.S3Payload(String endpointOverride, String region, String credentialsType, String accessKeyId, String secretAccessKey, Boolean pathStyleAccess, String bucket, String prefix, Boolean hydrateSampleData)
extends Record
S3 source payload. All fields optional — an empty payload yields the
dev SeaweedFS S3 defaults (endpoint
http://localhost:8333,
region us-east-1, static creds any/any,
path-style true, bucket pipestream, prefix sample-docs/,
hydrate true). credentialsType is "static" or "anonymous".-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theaccessKeyIdrecord component.bucket()Returns the value of thebucketrecord component.Returns the value of thecredentialsTyperecord component.Returns the value of theendpointOverriderecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thehydrateSampleDatarecord component.Returns the value of thepathStyleAccessrecord component.prefix()Returns the value of theprefixrecord component.region()Returns the value of theregionrecord component.Returns the value of thesecretAccessKeyrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
S3Payload
public S3Payload(String endpointOverride, String region, String credentialsType, String accessKeyId, String secretAccessKey, Boolean pathStyleAccess, String bucket, String prefix, Boolean hydrateSampleData) Creates an instance of aS3Payloadrecord class.- Parameters:
endpointOverride- the value for theendpointOverriderecord componentregion- the value for theregionrecord componentcredentialsType- the value for thecredentialsTyperecord componentaccessKeyId- the value for theaccessKeyIdrecord componentsecretAccessKey- the value for thesecretAccessKeyrecord componentpathStyleAccess- the value for thepathStyleAccessrecord componentbucket- the value for thebucketrecord componentprefix- the value for theprefixrecord componenthydrateSampleData- the value for thehydrateSampleDatarecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
endpointOverride
Returns the value of theendpointOverriderecord component.- Returns:
- the value of the
endpointOverriderecord component
-
region
-
credentialsType
Returns the value of thecredentialsTyperecord component.- Returns:
- the value of the
credentialsTyperecord component
-
accessKeyId
Returns the value of theaccessKeyIdrecord component.- Returns:
- the value of the
accessKeyIdrecord component
-
secretAccessKey
Returns the value of thesecretAccessKeyrecord component.- Returns:
- the value of the
secretAccessKeyrecord component
-
pathStyleAccess
Returns the value of thepathStyleAccessrecord component.- Returns:
- the value of the
pathStyleAccessrecord component
-
bucket
-
prefix
-
hydrateSampleData
Returns the value of thehydrateSampleDatarecord component.- Returns:
- the value of the
hydrateSampleDatarecord component
-