agent-claw: automated task changes
This commit is contained in:
29
cdk/node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/s3-origin.d.ts
generated
vendored
Normal file
29
cdk/node_modules/aws-cdk-lib/aws-cloudfront-origins/lib/s3-origin.d.ts
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import * as cloudfront from '../../aws-cloudfront';
|
||||
import * as iam from '../../aws-iam';
|
||||
import type * as s3 from '../../aws-s3';
|
||||
/**
|
||||
* Properties to use to customize an S3 Origin.
|
||||
*/
|
||||
export interface S3OriginProps extends cloudfront.OriginProps {
|
||||
/**
|
||||
* An optional Origin Access Identity of the origin identity cloudfront will use when calling your s3 bucket.
|
||||
*
|
||||
* @default - An Origin Access Identity will be created.
|
||||
*/
|
||||
readonly originAccessIdentity?: cloudfront.ICloudFrontOriginAccessIdentityRef & iam.IGrantable;
|
||||
}
|
||||
/**
|
||||
* An Origin that is backed by an S3 bucket.
|
||||
*
|
||||
* If the bucket is configured for website hosting, this origin will be configured to use the bucket as an
|
||||
* HTTP server origin and will use the bucket's configured website redirects and error handling. Otherwise,
|
||||
* the origin is created as a bucket origin and will use CloudFront's redirect and error handling.
|
||||
*
|
||||
* @deprecated Use `S3BucketOrigin` or `S3StaticWebsiteOrigin` instead.
|
||||
*/
|
||||
export declare class S3Origin implements cloudfront.IOrigin {
|
||||
private readonly origin;
|
||||
constructor(bucket: s3.IBucket, props?: S3OriginProps);
|
||||
bind(scope: Construct, options: cloudfront.OriginBindOptions): cloudfront.OriginBindConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user