All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.cdklabs.generative_ai_cdk_constructs.WebCrawler Maven / Gradle / Ivy

Go to download

AWS Generative AI CDK Constructs is a library for well-architected generative AI patterns.

There is a newer version: 0.1.271
Show newest version
package io.github.cdklabs.generative_ai_cdk_constructs;

/**
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T18:35:37.362Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = io.github.cdklabs.generative_ai_cdk_constructs.$Module.class, fqn = "@cdklabs/generative-ai-cdk-constructs.WebCrawler")
public class WebCrawler extends io.github.cdklabs.generative_ai_cdk_constructs.BaseClass {

    protected WebCrawler(final software.amazon.jsii.JsiiObjectRef objRef) {
        super(objRef);
    }

    protected WebCrawler(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
        super(initializationMode);
    }

    /**
     * (experimental) Constructs a new instance of the WebCrawler class.
     * 

* @param scope

  • represents the scope for all the resources.
This parameter is required. * @param id
  • this is a a scope-unique id.
This parameter is required. * @param props
  • user provided props for the construct.
This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public WebCrawler(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String id, final @org.jetbrains.annotations.NotNull io.github.cdklabs.generative_ai_cdk_constructs.WebCrawlerProps props) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(id, "id is required"), java.util.Objects.requireNonNull(props, "props is required") }); } /** * (experimental) Returns the instance of S3 bucket used by the construct. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.s3.IBucket getDataBucket() { return software.amazon.jsii.Kernel.get(this, "dataBucket", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.s3.IBucket.class)); } /** * (experimental) Returns the instance of JobQueue used by the construct. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.batch.IJobQueue getJobQueue() { return software.amazon.jsii.Kernel.get(this, "jobQueue", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.batch.IJobQueue.class)); } /** * (experimental) Returns the instance of Jobs DynamoDB table. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.dynamodb.ITable getJobsTable() { return software.amazon.jsii.Kernel.get(this, "jobsTable", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.dynamodb.ITable.class)); } /** * (experimental) Lambda crawler API schema path. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull java.lang.String getLambdaCrawlerApiSchemaPath() { return software.amazon.jsii.Kernel.get(this, "lambdaCrawlerApiSchemaPath", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); } /** * (experimental) Returns the instance of SNS Topic used by the construct. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.sns.ITopic getSnsTopic() { return software.amazon.jsii.Kernel.get(this, "snsTopic", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.sns.ITopic.class)); } /** * (experimental) Returns the instance of Targets DynamoDB table. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.dynamodb.ITable getTargetsTable() { return software.amazon.jsii.Kernel.get(this, "targetsTable", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.dynamodb.ITable.class)); } /** * (experimental) Returns the instance of ec2.IVpc used by the construct. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ec2.IVpc getVpc() { return software.amazon.jsii.Kernel.get(this, "vpc", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ec2.IVpc.class)); } /** * (experimental) Returns the instance of JobDefinition used by the construct. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.batch.IJobDefinition getWebCrawlerJobDefinition() { return software.amazon.jsii.Kernel.get(this, "webCrawlerJobDefinition", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.batch.IJobDefinition.class)); } /** * (experimental) Lambda crawler. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.lambda.IFunction getLambdaCrawler() { return software.amazon.jsii.Kernel.get(this, "lambdaCrawler", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.lambda.IFunction.class)); } /** * (experimental) A fluent builder for {@link io.github.cdklabs.generative_ai_cdk_constructs.WebCrawler}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { /** * @return a new instance of {@link Builder}. * @param scope
  • represents the scope for all the resources.
This parameter is required. * @param id
  • this is a a scope-unique id.
This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static Builder create(final software.constructs.Construct scope, final java.lang.String id) { return new Builder(scope, id); } private final software.constructs.Construct scope; private final java.lang.String id; private final io.github.cdklabs.generative_ai_cdk_constructs.WebCrawlerProps.Builder props; private Builder(final software.constructs.Construct scope, final java.lang.String id) { this.scope = scope; this.id = id; this.props = new io.github.cdklabs.generative_ai_cdk_constructs.WebCrawlerProps.Builder(); } /** * (experimental) Optional user provided props to override the default props for the S3 Bucket. *

* Providing both this and existingOutputBucketObj will cause an error. *

* Default: - Default props are used *

* @return {@code this} * @param bucketOutputProps Optional user provided props to override the default props for the S3 Bucket. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder bucketOutputProps(final software.amazon.awscdk.services.s3.BucketProps bucketOutputProps) { this.props.bucketOutputProps(bucketOutputProps); return this; } /** * (experimental) Deploy Lambda crawler. *

* Default: - false *

* @return {@code this} * @param enableLambdaCrawler Deploy Lambda crawler. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder enableLambdaCrawler(final java.lang.Boolean enableLambdaCrawler) { this.props.enableLambdaCrawler(enableLambdaCrawler); return this; } /** * (experimental) Existing instance of S3 Bucket object, providing both this and bucketOutputProps will cause an error. *

* Default: - None *

* @return {@code this} * @param existingOutputBucketObj Existing instance of S3 Bucket object, providing both this and bucketOutputProps will cause an error. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder existingOutputBucketObj(final software.amazon.awscdk.services.s3.IBucket existingOutputBucketObj) { this.props.existingOutputBucketObj(existingOutputBucketObj); return this; } /** * (experimental) Optional An existing VPC in which to deploy the construct. *

* Providing both this and * vpcProps is an error. *

* Default: - none *

* @return {@code this} * @param existingVpc Optional An existing VPC in which to deploy the construct. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder existingVpc(final software.amazon.awscdk.services.ec2.IVpc existingVpc) { this.props.existingVpc(existingVpc); return this; } /** * (experimental) Enable observability. *

* Warning: associated cost with the services * used. Best practice to enable by default. *

* Default: - true *

* @return {@code this} * @param observability Enable observability. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder observability(final java.lang.Boolean observability) { this.props.observability(observability); return this; } /** * (experimental) Value will be appended to resources name. *

* Default: - _dev *

* @return {@code this} * @param stage Value will be appended to resources name. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder stage(final java.lang.String stage) { this.props.stage(stage); return this; } /** * (experimental) Targets to be crawled. *

* Default: - none *

* @return {@code this} * @param targets Targets to be crawled. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder targets(final java.util.List targets) { this.props.targets(targets); return this; } /** * (experimental) Optional custom properties for a VPC the construct will create. *

* This VPC will * be used by the compute resources the construct creates. Providing * both this and existingVpc is an error. *

* Default: - none *

* @return {@code this} * @param vpcProps Optional custom properties for a VPC the construct will create. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder vpcProps(final software.amazon.awscdk.services.ec2.VpcProps vpcProps) { this.props.vpcProps(vpcProps); return this; } /** * @return a newly built instance of {@link io.github.cdklabs.generative_ai_cdk_constructs.WebCrawler}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public io.github.cdklabs.generative_ai_cdk_constructs.WebCrawler build() { return new io.github.cdklabs.generative_ai_cdk_constructs.WebCrawler( this.scope, this.id, this.props.build() ); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy