@pulumi/aws 6.73.0-alpha.1741905888 → 6.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloudwatch/metricAlarm.d.ts +0 -1
- package/cloudwatch/metricAlarm.js +0 -1
- package/cloudwatch/metricAlarm.js.map +1 -1
- package/codebuild/project.d.ts +112 -36
- package/codebuild/project.js +33 -1
- package/codebuild/project.js.map +1 -1
- package/codebuild/sourceCredential.d.ts +41 -10
- package/codebuild/sourceCredential.js +17 -1
- package/codebuild/sourceCredential.js.map +1 -1
- package/ec2/index.d.ts +3 -0
- package/ec2/index.js +7 -2
- package/ec2/index.js.map +1 -1
- package/ec2/networkInterfacePermission.d.ts +118 -0
- package/ec2/networkInterfacePermission.js +99 -0
- package/ec2/networkInterfacePermission.js.map +1 -0
- package/ec2/vpcIpv4CidrBlockAssociation.d.ts +16 -2
- package/ec2/vpcIpv4CidrBlockAssociation.js +16 -2
- package/ec2/vpcIpv4CidrBlockAssociation.js.map +1 -1
- package/ec2/vpcIpv6CidrBlockAssociation.d.ts +16 -2
- package/ec2/vpcIpv6CidrBlockAssociation.js +16 -2
- package/ec2/vpcIpv6CidrBlockAssociation.js.map +1 -1
- package/package.json +2 -2
- package/route53/index.d.ts +3 -0
- package/route53/index.js +7 -2
- package/route53/index.js.map +1 -1
- package/route53/recordsExclusive.d.ts +83 -0
- package/route53/recordsExclusive.js +65 -0
- package/route53/recordsExclusive.js.map +1 -0
- package/timestreaminfluxdb/dbInstance.d.ts +48 -20
- package/timestreaminfluxdb/dbInstance.js +10 -2
- package/timestreaminfluxdb/dbInstance.js.map +1 -1
- package/types/input.d.ts +346 -49
- package/types/input.js.map +1 -1
- package/types/output.d.ts +346 -49
- package/types/output.js.map +1 -1
- package/wafv2/ipSet.d.ts +15 -3
- package/wafv2/ipSet.js +2 -0
- package/wafv2/ipSet.js.map +1 -1
- package/wafv2/regexPatternSet.d.ts +15 -3
- package/wafv2/regexPatternSet.js +2 -0
- package/wafv2/regexPatternSet.js.map +1 -1
- package/wafv2/webAcl.d.ts +15 -3
- package/wafv2/webAcl.js +2 -0
- package/wafv2/webAcl.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -15618,19 +15618,26 @@ export declare namespace codebuild {
|
|
|
15618
15618
|
}
|
|
15619
15619
|
interface ProjectArtifacts {
|
|
15620
15620
|
/**
|
|
15621
|
-
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
15621
|
+
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
15622
|
+
* specification.
|
|
15622
15623
|
*/
|
|
15623
15624
|
artifactIdentifier?: string;
|
|
15624
15625
|
/**
|
|
15625
|
-
* Specifies the bucket owner's access for objects that another account uploads to
|
|
15626
|
+
* Specifies the bucket owner's access for objects that another account uploads to
|
|
15627
|
+
* their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these
|
|
15628
|
+
* objects. This property allows you to give the bucket owner access to these objects. Valid values are `NONE`,
|
|
15629
|
+
* `READ_ONLY`, and `FULL`. your CodeBuild service role must have the `s3:PutBucketAcl` permission. This permission
|
|
15630
|
+
* allows CodeBuild to modify the access control list for the bucket.
|
|
15626
15631
|
*/
|
|
15627
15632
|
bucketOwnerAccess?: string;
|
|
15628
15633
|
/**
|
|
15629
|
-
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
15634
|
+
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
15635
|
+
* this value is ignored. Defaults to `false`.
|
|
15630
15636
|
*/
|
|
15631
15637
|
encryptionDisabled?: boolean;
|
|
15632
15638
|
/**
|
|
15633
|
-
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
15639
|
+
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
15640
|
+
* `NO_ARTIFACTS`, this value is ignored. If `type` is set to `S3`, this is the name of the output bucket.
|
|
15634
15641
|
*/
|
|
15635
15642
|
location?: string;
|
|
15636
15643
|
/**
|
|
@@ -15638,7 +15645,8 @@ export declare namespace codebuild {
|
|
|
15638
15645
|
*/
|
|
15639
15646
|
name?: string;
|
|
15640
15647
|
/**
|
|
15641
|
-
* Namespace to use in storing build artifacts. If `type` is set to `S3`, then valid values
|
|
15648
|
+
* Namespace to use in storing build artifacts. If `type` is set to `S3`, then valid values
|
|
15649
|
+
* are `BUILD_ID`, `NONE`.
|
|
15642
15650
|
*/
|
|
15643
15651
|
namespaceType?: string;
|
|
15644
15652
|
/**
|
|
@@ -15646,7 +15654,8 @@ export declare namespace codebuild {
|
|
|
15646
15654
|
*/
|
|
15647
15655
|
overrideArtifactName?: boolean;
|
|
15648
15656
|
/**
|
|
15649
|
-
* Type of build output artifact to create. If `type` is set to `S3`, valid values are `NONE`,
|
|
15657
|
+
* Type of build output artifact to create. If `type` is set to `S3`, valid values are `NONE`,
|
|
15658
|
+
* `ZIP`
|
|
15650
15659
|
*/
|
|
15651
15660
|
packaging?: string;
|
|
15652
15661
|
/**
|
|
@@ -15660,7 +15669,8 @@ export declare namespace codebuild {
|
|
|
15660
15669
|
}
|
|
15661
15670
|
interface ProjectBuildBatchConfig {
|
|
15662
15671
|
/**
|
|
15663
|
-
* Specifies if the build artifacts for the batch build should be combined into a single
|
|
15672
|
+
* Specifies if the build artifacts for the batch build should be combined into a single
|
|
15673
|
+
* artifact location.
|
|
15664
15674
|
*/
|
|
15665
15675
|
combineArtifacts?: boolean;
|
|
15666
15676
|
/**
|
|
@@ -15672,13 +15682,17 @@ export declare namespace codebuild {
|
|
|
15672
15682
|
*/
|
|
15673
15683
|
serviceRole: string;
|
|
15674
15684
|
/**
|
|
15675
|
-
* Specifies the maximum amount of time, in minutes, that the batch build must be
|
|
15685
|
+
* Specifies the maximum amount of time, in minutes, that the batch build must be
|
|
15686
|
+
* completed in.
|
|
15676
15687
|
*/
|
|
15677
15688
|
timeoutInMins?: number;
|
|
15678
15689
|
}
|
|
15679
15690
|
interface ProjectBuildBatchConfigRestrictions {
|
|
15680
15691
|
/**
|
|
15681
|
-
* An array of strings that specify the compute types that are allowed for the batch
|
|
15692
|
+
* An array of strings that specify the compute types that are allowed for the batch
|
|
15693
|
+
* build.
|
|
15694
|
+
* See [Build environment compute types](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html)
|
|
15695
|
+
* in the AWS CodeBuild User Guide for these values.
|
|
15682
15696
|
*/
|
|
15683
15697
|
computeTypesAlloweds?: string[];
|
|
15684
15698
|
/**
|
|
@@ -15688,15 +15702,18 @@ export declare namespace codebuild {
|
|
|
15688
15702
|
}
|
|
15689
15703
|
interface ProjectCache {
|
|
15690
15704
|
/**
|
|
15691
|
-
* Location where the AWS CodeBuild project stores cached resources. For
|
|
15705
|
+
* Location where the AWS CodeBuild project stores cached resources. For
|
|
15706
|
+
* type `S3`, the value must be a valid S3 bucket name/prefix.
|
|
15692
15707
|
*/
|
|
15693
15708
|
location?: string;
|
|
15694
15709
|
/**
|
|
15695
|
-
* Specifies settings that AWS CodeBuild uses to store and reuse build
|
|
15710
|
+
* Specifies settings that AWS CodeBuild uses to store and reuse build
|
|
15711
|
+
* dependencies. Valid values: `LOCAL_SOURCE_CACHE`, `LOCAL_DOCKER_LAYER_CACHE`, `LOCAL_CUSTOM_CACHE`.
|
|
15696
15712
|
*/
|
|
15697
15713
|
modes?: string[];
|
|
15698
15714
|
/**
|
|
15699
|
-
* Type of storage that will be used for the AWS CodeBuild project cache. Valid values: `NO_CACHE`,
|
|
15715
|
+
* Type of storage that will be used for the AWS CodeBuild project cache. Valid values: `NO_CACHE`,
|
|
15716
|
+
* `LOCAL`, `S3`. Defaults to `NO_CACHE`.
|
|
15700
15717
|
*/
|
|
15701
15718
|
type?: string;
|
|
15702
15719
|
}
|
|
@@ -15706,7 +15723,12 @@ export declare namespace codebuild {
|
|
|
15706
15723
|
*/
|
|
15707
15724
|
certificate?: string;
|
|
15708
15725
|
/**
|
|
15709
|
-
* Information about the compute resources the build project will use. Valid values:
|
|
15726
|
+
* Information about the compute resources the build project will use. Valid values:
|
|
15727
|
+
* `BUILD_GENERAL1_SMALL`, `BUILD_GENERAL1_MEDIUM`, `BUILD_GENERAL1_LARGE`, `BUILD_GENERAL1_2XLARGE`, `BUILD_LAMBDA_1GB`,
|
|
15728
|
+
* `BUILD_LAMBDA_2GB`, `BUILD_LAMBDA_4GB`, `BUILD_LAMBDA_8GB`, `BUILD_LAMBDA_10GB`. `BUILD_GENERAL1_SMALL` is only valid
|
|
15729
|
+
* if `type` is set to `LINUX_CONTAINER`. When `type` is set to `LINUX_GPU_CONTAINER`, `computeType` must be
|
|
15730
|
+
* `BUILD_GENERAL1_LARGE`. When `type` is set to `LINUX_LAMBDA_CONTAINER` or `ARM_LAMBDA_CONTAINER`, `computeType` must
|
|
15731
|
+
* be `BUILD_LAMBDA_XGB`.`
|
|
15710
15732
|
*/
|
|
15711
15733
|
computeType: string;
|
|
15712
15734
|
/**
|
|
@@ -15718,15 +15740,22 @@ export declare namespace codebuild {
|
|
|
15718
15740
|
*/
|
|
15719
15741
|
fleet?: outputs.codebuild.ProjectEnvironmentFleet;
|
|
15720
15742
|
/**
|
|
15721
|
-
* Docker image to use for this build project. Valid values
|
|
15743
|
+
* Docker image to use for this build project. Valid values
|
|
15744
|
+
* include [Docker images provided by CodeBuild](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html) (
|
|
15745
|
+
* e.g `aws/codebuild/amazonlinux2-x86_64-standard:4.0`), [Docker Hub images](https://hub.docker.com/) (e.g.,
|
|
15746
|
+
* `pulumi/pulumi:latest`), and full Docker repository URIs such as those for ECR (e.g.,
|
|
15747
|
+
* `137112412989.dkr.ecr.us-west-2.amazonaws.com/amazonlinux:latest`).
|
|
15722
15748
|
*/
|
|
15723
15749
|
image: string;
|
|
15724
15750
|
/**
|
|
15725
|
-
* Type of credentials AWS CodeBuild uses to pull images in your build. Valid
|
|
15751
|
+
* Type of credentials AWS CodeBuild uses to pull images in your build. Valid
|
|
15752
|
+
* values: `CODEBUILD`, `SERVICE_ROLE`. When you use a cross-account or private registry image, you must use SERVICE_ROLE
|
|
15753
|
+
* credentials. When you use an AWS CodeBuild curated image, you must use CodeBuild credentials. Defaults to `CODEBUILD`.
|
|
15726
15754
|
*/
|
|
15727
15755
|
imagePullCredentialsType?: string;
|
|
15728
15756
|
/**
|
|
15729
|
-
* Whether to enable running the Docker daemon inside a Docker container. Defaults to
|
|
15757
|
+
* Whether to enable running the Docker daemon inside a Docker container. Defaults to
|
|
15758
|
+
* `false`.
|
|
15730
15759
|
*/
|
|
15731
15760
|
privilegedMode?: boolean;
|
|
15732
15761
|
/**
|
|
@@ -15734,7 +15763,10 @@ export declare namespace codebuild {
|
|
|
15734
15763
|
*/
|
|
15735
15764
|
registryCredential?: outputs.codebuild.ProjectEnvironmentRegistryCredential;
|
|
15736
15765
|
/**
|
|
15737
|
-
* Type of build environment to use for related builds. Valid values: `LINUX_CONTAINER`,
|
|
15766
|
+
* Type of build environment to use for related builds. Valid values: `LINUX_CONTAINER`,
|
|
15767
|
+
* `LINUX_GPU_CONTAINER`, `WINDOWS_CONTAINER` (deprecated), `WINDOWS_SERVER_2019_CONTAINER`, `ARM_CONTAINER`,
|
|
15768
|
+
* `LINUX_LAMBDA_CONTAINER`, `ARM_LAMBDA_CONTAINER`. For additional information, see
|
|
15769
|
+
* the [CodeBuild User Guide](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html).
|
|
15738
15770
|
*/
|
|
15739
15771
|
type: string;
|
|
15740
15772
|
}
|
|
@@ -15764,17 +15796,21 @@ export declare namespace codebuild {
|
|
|
15764
15796
|
*/
|
|
15765
15797
|
credential: string;
|
|
15766
15798
|
/**
|
|
15767
|
-
* Service that created the credentials to access a private Docker registry. Valid
|
|
15799
|
+
* Service that created the credentials to access a private Docker registry. Valid
|
|
15800
|
+
* value: `SECRETS_MANAGER` (AWS Secrets Manager).
|
|
15768
15801
|
*/
|
|
15769
15802
|
credentialProvider: string;
|
|
15770
15803
|
}
|
|
15771
15804
|
interface ProjectFileSystemLocation {
|
|
15772
15805
|
/**
|
|
15773
|
-
* The name used to access a file system created by Amazon EFS. CodeBuild creates an
|
|
15806
|
+
* The name used to access a file system created by Amazon EFS. CodeBuild creates an
|
|
15807
|
+
* environment variable by appending the identifier in all capital letters to CODEBUILD\_. For example, if you specify
|
|
15808
|
+
* my-efs for identifier, a new environment variable is create named CODEBUILD_MY-EFS.
|
|
15774
15809
|
*/
|
|
15775
15810
|
identifier?: string;
|
|
15776
15811
|
/**
|
|
15777
|
-
* A string that specifies the location of the file system created by Amazon EFS. Its format is
|
|
15812
|
+
* A string that specifies the location of the file system created by Amazon EFS. Its format is
|
|
15813
|
+
* `efs-dns-name:/directory-path`.
|
|
15778
15814
|
*/
|
|
15779
15815
|
location?: string;
|
|
15780
15816
|
/**
|
|
@@ -15806,7 +15842,8 @@ export declare namespace codebuild {
|
|
|
15806
15842
|
*/
|
|
15807
15843
|
groupName?: string;
|
|
15808
15844
|
/**
|
|
15809
|
-
* Current status of logs in CloudWatch Logs for a build project. Valid values: `ENABLED`,
|
|
15845
|
+
* Current status of logs in CloudWatch Logs for a build project. Valid values: `ENABLED`,
|
|
15846
|
+
* `DISABLED`. Defaults to `ENABLED`.
|
|
15810
15847
|
*/
|
|
15811
15848
|
status?: string;
|
|
15812
15849
|
/**
|
|
@@ -15816,7 +15853,11 @@ export declare namespace codebuild {
|
|
|
15816
15853
|
}
|
|
15817
15854
|
interface ProjectLogsConfigS3Logs {
|
|
15818
15855
|
/**
|
|
15819
|
-
* Specifies the bucket owner's access for objects that another account uploads to
|
|
15856
|
+
* Specifies the bucket owner's access for objects that another account uploads to
|
|
15857
|
+
* their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these
|
|
15858
|
+
* objects. This property allows you to give the bucket owner access to these objects. Valid values are `NONE`,
|
|
15859
|
+
* `READ_ONLY`, and `FULL`. your CodeBuild service role must have the `s3:PutBucketAcl` permission. This permission
|
|
15860
|
+
* allows CodeBuild to modify the access control list for the bucket.
|
|
15820
15861
|
*/
|
|
15821
15862
|
bucketOwnerAccess?: string;
|
|
15822
15863
|
/**
|
|
@@ -15824,37 +15865,49 @@ export declare namespace codebuild {
|
|
|
15824
15865
|
*/
|
|
15825
15866
|
encryptionDisabled?: boolean;
|
|
15826
15867
|
/**
|
|
15827
|
-
* Name of the S3 bucket and the path prefix for S3 logs. Must be set if status is `ENABLED`,
|
|
15868
|
+
* Name of the S3 bucket and the path prefix for S3 logs. Must be set if status is `ENABLED`,
|
|
15869
|
+
* otherwise it must be empty.
|
|
15828
15870
|
*/
|
|
15829
15871
|
location?: string;
|
|
15830
15872
|
/**
|
|
15831
|
-
* Current status of logs in S3 for a build project. Valid values: `ENABLED`, `DISABLED`. Defaults
|
|
15873
|
+
* Current status of logs in S3 for a build project. Valid values: `ENABLED`, `DISABLED`. Defaults
|
|
15874
|
+
* to `DISABLED`.
|
|
15832
15875
|
*/
|
|
15833
15876
|
status?: string;
|
|
15834
15877
|
}
|
|
15835
15878
|
interface ProjectSecondaryArtifact {
|
|
15836
15879
|
/**
|
|
15837
|
-
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
15880
|
+
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
15881
|
+
* specification.
|
|
15838
15882
|
*/
|
|
15839
15883
|
artifactIdentifier: string;
|
|
15840
15884
|
/**
|
|
15841
|
-
* Specifies the bucket owner's access for objects that another account uploads to
|
|
15885
|
+
* Specifies the bucket owner's access for objects that another account uploads to
|
|
15886
|
+
* their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these
|
|
15887
|
+
* objects. This property allows you to give the bucket owner access to these objects. Valid values are `NONE`,
|
|
15888
|
+
* `READ_ONLY`, and `FULL`. The CodeBuild service role must have the `s3:PutBucketAcl` permission. This permission allows
|
|
15889
|
+
* CodeBuild to modify the access control list for the bucket.
|
|
15842
15890
|
*/
|
|
15843
15891
|
bucketOwnerAccess?: string;
|
|
15844
15892
|
/**
|
|
15845
|
-
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
15893
|
+
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
15894
|
+
* this value is ignored. Defaults to `false`.
|
|
15846
15895
|
*/
|
|
15847
15896
|
encryptionDisabled?: boolean;
|
|
15848
15897
|
/**
|
|
15849
|
-
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
15898
|
+
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
15899
|
+
* `NO_ARTIFACTS`, this value is ignored if specified. If `type` is set to `S3`, this is the name of the output bucket.
|
|
15900
|
+
* If `path` is not specified, `location` can specify the path of the output artifact in the output bucket.
|
|
15850
15901
|
*/
|
|
15851
15902
|
location?: string;
|
|
15852
15903
|
/**
|
|
15853
|
-
* Name of the project. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS`, this value is ignored
|
|
15904
|
+
* Name of the project. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS`, this value is ignored
|
|
15905
|
+
* if specified. If `type` is set to `S3`, this is the name of the output artifact object.
|
|
15854
15906
|
*/
|
|
15855
15907
|
name?: string;
|
|
15856
15908
|
/**
|
|
15857
|
-
* Namespace to use in storing build artifacts. If `type` is set to `CODEPIPELINE` or
|
|
15909
|
+
* Namespace to use in storing build artifacts. If `type` is set to `CODEPIPELINE` or
|
|
15910
|
+
* `NO_ARTIFACTS`, this value is ignored if specified. If `type` is set to `S3`, valid values are `BUILD_ID` or `NONE`.
|
|
15858
15911
|
*/
|
|
15859
15912
|
namespaceType?: string;
|
|
15860
15913
|
/**
|
|
@@ -15862,11 +15915,14 @@ export declare namespace codebuild {
|
|
|
15862
15915
|
*/
|
|
15863
15916
|
overrideArtifactName?: boolean;
|
|
15864
15917
|
/**
|
|
15865
|
-
* Type of build output artifact to create. If `type` is set to `CODEPIPELINE` or
|
|
15918
|
+
* Type of build output artifact to create. If `type` is set to `CODEPIPELINE` or
|
|
15919
|
+
* `NO_ARTIFACTS`, this value is ignored if specified. If `type` is set to `S3`, valid values are `NONE` or `ZIP`.
|
|
15866
15920
|
*/
|
|
15867
15921
|
packaging?: string;
|
|
15868
15922
|
/**
|
|
15869
|
-
* Along with `namespaceType` and `name`, the pattern that AWS CodeBuild uses to name and store the
|
|
15923
|
+
* Along with `namespaceType` and `name`, the pattern that AWS CodeBuild uses to name and store the
|
|
15924
|
+
* output artifact. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS`, this value is ignored if specified. If `type`
|
|
15925
|
+
* is set to `S3`, this is the path to the output artifact.
|
|
15870
15926
|
*/
|
|
15871
15927
|
path?: string;
|
|
15872
15928
|
/**
|
|
@@ -15876,15 +15932,27 @@ export declare namespace codebuild {
|
|
|
15876
15932
|
}
|
|
15877
15933
|
interface ProjectSecondarySource {
|
|
15878
15934
|
/**
|
|
15879
|
-
*
|
|
15935
|
+
* Information about the strategy CodeBuild should use when authenticating with the source code host.
|
|
15936
|
+
* Detailed below.
|
|
15937
|
+
*/
|
|
15938
|
+
auth?: outputs.codebuild.ProjectSecondarySourceAuth;
|
|
15939
|
+
/**
|
|
15940
|
+
* Configuration block that contains information that defines how the build project
|
|
15941
|
+
* reports the build status to the source provider. This option is only used when the source provider is GitHub, GitHub
|
|
15942
|
+
* Enterprise, GitLab, GitLab Self Managed, or Bitbucket. `buildStatusConfig` blocks are documented below.
|
|
15880
15943
|
*/
|
|
15881
15944
|
buildStatusConfig?: outputs.codebuild.ProjectSecondarySourceBuildStatusConfig;
|
|
15882
15945
|
/**
|
|
15883
|
-
* The build spec declaration to use for this build project's related builds. This must be set
|
|
15946
|
+
* The build spec declaration to use for this build project's related builds. This must be set
|
|
15947
|
+
* when `type` is `NO_SOURCE`. It can either be a path to a file residing in the repository to be built or a local file
|
|
15948
|
+
* path leveraging the `file()` built-in.
|
|
15884
15949
|
*/
|
|
15885
15950
|
buildspec?: string;
|
|
15886
15951
|
/**
|
|
15887
|
-
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
15952
|
+
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
15953
|
+
* to run commands like `git branch --show-current`.
|
|
15954
|
+
* See [AWS CodePipeline User Guide: Tutorial: Use full clone with a GitHub pipeline source](https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials-github-gitclone.html)
|
|
15955
|
+
* for details.
|
|
15888
15956
|
*/
|
|
15889
15957
|
gitCloneDepth?: number;
|
|
15890
15958
|
/**
|
|
@@ -15900,25 +15968,43 @@ export declare namespace codebuild {
|
|
|
15900
15968
|
*/
|
|
15901
15969
|
location?: string;
|
|
15902
15970
|
/**
|
|
15903
|
-
* Whether to report the status of a build's start and finish to your source provider.
|
|
15971
|
+
* Whether to report the status of a build's start and finish to your source provider.
|
|
15972
|
+
* This option is valid only when your source provider is GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or
|
|
15973
|
+
* Bitbucket.
|
|
15904
15974
|
*/
|
|
15905
15975
|
reportBuildStatus?: boolean;
|
|
15906
15976
|
/**
|
|
15907
|
-
* An identifier for this project source. The identifier can only contain alphanumeric
|
|
15977
|
+
* An identifier for this project source. The identifier can only contain alphanumeric
|
|
15978
|
+
* characters and underscores, and must be less than 128 characters in length.
|
|
15908
15979
|
*/
|
|
15909
15980
|
sourceIdentifier: string;
|
|
15910
15981
|
/**
|
|
15911
|
-
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
15982
|
+
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
15983
|
+
* `CODECOMMIT`, `CODEPIPELINE`, `GITHUB`, `GITHUB_ENTERPRISE`, `GITLAB`, `GITLAB_SELF_MANAGED`, `NO_SOURCE`, `S3`.
|
|
15984
|
+
*/
|
|
15985
|
+
type: string;
|
|
15986
|
+
}
|
|
15987
|
+
interface ProjectSecondarySourceAuth {
|
|
15988
|
+
/**
|
|
15989
|
+
* The ARN of the resource to use for authentication. For type `CODECONNECTIONS` this should be
|
|
15990
|
+
* an AWS CodeStar Connection. For type `SECRETS_MANAGER` this should be an AWS Secrets Manager secret.
|
|
15991
|
+
*/
|
|
15992
|
+
resource: string;
|
|
15993
|
+
/**
|
|
15994
|
+
* The type of authentication AWS CodeBuild should perform. Valid values are `CODECONNECTIONS` and
|
|
15995
|
+
* `SECRETS_MANAGER`.
|
|
15912
15996
|
*/
|
|
15913
15997
|
type: string;
|
|
15914
15998
|
}
|
|
15915
15999
|
interface ProjectSecondarySourceBuildStatusConfig {
|
|
15916
16000
|
/**
|
|
15917
|
-
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
16001
|
+
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
16002
|
+
* this parameter depends on the source provider.
|
|
15918
16003
|
*/
|
|
15919
16004
|
context?: string;
|
|
15920
16005
|
/**
|
|
15921
|
-
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
16006
|
+
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
16007
|
+
* usage of this parameter depends on the source provider.
|
|
15922
16008
|
*/
|
|
15923
16009
|
targetUrl?: string;
|
|
15924
16010
|
}
|
|
@@ -15934,21 +16020,35 @@ export declare namespace codebuild {
|
|
|
15934
16020
|
*/
|
|
15935
16021
|
sourceIdentifier: string;
|
|
15936
16022
|
/**
|
|
15937
|
-
* The source version for the corresponding source identifier.
|
|
16023
|
+
* The source version for the corresponding source identifier.
|
|
16024
|
+
* See [AWS docs](https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ProjectSourceVersion.html#CodeBuild-Type-ProjectSourceVersion-sourceVersion)
|
|
16025
|
+
* for more details.
|
|
15938
16026
|
*/
|
|
15939
16027
|
sourceVersion: string;
|
|
15940
16028
|
}
|
|
15941
16029
|
interface ProjectSource {
|
|
15942
16030
|
/**
|
|
15943
|
-
*
|
|
16031
|
+
* Information about the strategy CodeBuild should use when authenticating with the source code host.
|
|
16032
|
+
* Detailed below.
|
|
16033
|
+
*/
|
|
16034
|
+
auth?: outputs.codebuild.ProjectSourceAuth;
|
|
16035
|
+
/**
|
|
16036
|
+
* Configuration block that contains information that defines how the build project
|
|
16037
|
+
* reports the build status to the source provider. This option is only used when the source provider is GitHub, GitHub
|
|
16038
|
+
* Enterprise, GitLab, GitLab Self Managed, or Bitbucket. `buildStatusConfig` blocks are documented below.
|
|
15944
16039
|
*/
|
|
15945
16040
|
buildStatusConfig?: outputs.codebuild.ProjectSourceBuildStatusConfig;
|
|
15946
16041
|
/**
|
|
15947
|
-
* Build specification to use for this build project's related builds. This must be set when
|
|
16042
|
+
* Build specification to use for this build project's related builds. This must be set when
|
|
16043
|
+
* `type` is `NO_SOURCE`. Also, if a non-default buildspec file name or file path aside from the root is used, it must be
|
|
16044
|
+
* specified.
|
|
15948
16045
|
*/
|
|
15949
16046
|
buildspec?: string;
|
|
15950
16047
|
/**
|
|
15951
|
-
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
16048
|
+
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
16049
|
+
* to run commands like `git branch --show-current`.
|
|
16050
|
+
* See [AWS CodePipeline User Guide: Tutorial: Use full clone with a GitHub pipeline source](https://docs.aws.amazon.com/codepipeline/latest/userguide/tutorials-github-gitclone.html)
|
|
16051
|
+
* for details.
|
|
15952
16052
|
*/
|
|
15953
16053
|
gitCloneDepth?: number;
|
|
15954
16054
|
/**
|
|
@@ -15964,21 +16064,38 @@ export declare namespace codebuild {
|
|
|
15964
16064
|
*/
|
|
15965
16065
|
location?: string;
|
|
15966
16066
|
/**
|
|
15967
|
-
* Whether to report the status of a build's start and finish to your source provider.
|
|
16067
|
+
* Whether to report the status of a build's start and finish to your source provider.
|
|
16068
|
+
* This option is valid only when your source provider is GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or
|
|
16069
|
+
* Bitbucket.
|
|
15968
16070
|
*/
|
|
15969
16071
|
reportBuildStatus?: boolean;
|
|
15970
16072
|
/**
|
|
15971
|
-
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
16073
|
+
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
16074
|
+
* `CODECOMMIT`, `CODEPIPELINE`, `GITHUB`, `GITHUB_ENTERPRISE`, `GITLAB`, `GITLAB_SELF_MANAGED`, `NO_SOURCE`, `S3`.
|
|
16075
|
+
*/
|
|
16076
|
+
type: string;
|
|
16077
|
+
}
|
|
16078
|
+
interface ProjectSourceAuth {
|
|
16079
|
+
/**
|
|
16080
|
+
* The ARN of the resource to use for authentication. For type `CODECONNECTIONS` this should be
|
|
16081
|
+
* an AWS CodeStar Connection. For type `SECRETS_MANAGER` this should be an AWS Secrets Manager secret.
|
|
16082
|
+
*/
|
|
16083
|
+
resource: string;
|
|
16084
|
+
/**
|
|
16085
|
+
* The type of authentication AWS CodeBuild should perform. Valid values are `CODECONNECTIONS` and
|
|
16086
|
+
* `SECRETS_MANAGER`.
|
|
15972
16087
|
*/
|
|
15973
16088
|
type: string;
|
|
15974
16089
|
}
|
|
15975
16090
|
interface ProjectSourceBuildStatusConfig {
|
|
15976
16091
|
/**
|
|
15977
|
-
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
16092
|
+
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
16093
|
+
* this parameter depends on the source provider.
|
|
15978
16094
|
*/
|
|
15979
16095
|
context?: string;
|
|
15980
16096
|
/**
|
|
15981
|
-
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
16097
|
+
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
16098
|
+
* usage of this parameter depends on the source provider.
|
|
15982
16099
|
*/
|
|
15983
16100
|
targetUrl?: string;
|
|
15984
16101
|
}
|
|
@@ -18705,6 +18822,10 @@ export declare namespace config {
|
|
|
18705
18822
|
* Use this to override the default service endpoint URL
|
|
18706
18823
|
*/
|
|
18707
18824
|
ds?: string;
|
|
18825
|
+
/**
|
|
18826
|
+
* Use this to override the default service endpoint URL
|
|
18827
|
+
*/
|
|
18828
|
+
dsql?: string;
|
|
18708
18829
|
/**
|
|
18709
18830
|
* Use this to override the default service endpoint URL
|
|
18710
18831
|
*/
|
|
@@ -29919,6 +30040,16 @@ export declare namespace ec2 {
|
|
|
29919
30040
|
*/
|
|
29920
30041
|
instance: string;
|
|
29921
30042
|
}
|
|
30043
|
+
interface NetworkInterfacePermissionTimeouts {
|
|
30044
|
+
/**
|
|
30045
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
30046
|
+
*/
|
|
30047
|
+
create?: string;
|
|
30048
|
+
/**
|
|
30049
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
30050
|
+
*/
|
|
30051
|
+
delete?: string;
|
|
30052
|
+
}
|
|
29922
30053
|
interface PeeringConnectionOptionsAccepter {
|
|
29923
30054
|
/**
|
|
29924
30055
|
* Allow a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.
|
|
@@ -43491,6 +43622,10 @@ export declare namespace kinesis {
|
|
|
43491
43622
|
* The ARN of the Amazon MSK cluster.
|
|
43492
43623
|
*/
|
|
43493
43624
|
mskClusterArn: string;
|
|
43625
|
+
/**
|
|
43626
|
+
* The start date and time in UTC for the offset position within your MSK topic from where Firehose begins to read. By default, this is set to timestamp when Firehose becomes Active. If you want to create a Firehose stream with Earliest start position set the `readFromTimestamp` parameter to Epoch (1970-01-01T00:00:00Z).
|
|
43627
|
+
*/
|
|
43628
|
+
readFromTimestamp?: string;
|
|
43494
43629
|
/**
|
|
43495
43630
|
* The topic name within the Amazon MSK cluster.
|
|
43496
43631
|
*/
|
|
@@ -71148,6 +71283,152 @@ export declare namespace route53 {
|
|
|
71148
71283
|
*/
|
|
71149
71284
|
weight: number;
|
|
71150
71285
|
}
|
|
71286
|
+
interface RecordsExclusiveResourceRecordSet {
|
|
71287
|
+
/**
|
|
71288
|
+
* Alias target block.
|
|
71289
|
+
* See `aliasTarget` below.
|
|
71290
|
+
*/
|
|
71291
|
+
aliasTarget?: outputs.route53.RecordsExclusiveResourceRecordSetAliasTarget;
|
|
71292
|
+
cidrRoutingConfig?: outputs.route53.RecordsExclusiveResourceRecordSetCidrRoutingConfig;
|
|
71293
|
+
/**
|
|
71294
|
+
* Type of failover resource record.
|
|
71295
|
+
* Valid values are `PRIMARY` and `SECONDARY`.
|
|
71296
|
+
* See the [AWS documentation on DNS failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) for additional details.
|
|
71297
|
+
*/
|
|
71298
|
+
failover?: string;
|
|
71299
|
+
/**
|
|
71300
|
+
* Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
|
|
71301
|
+
* See `geolocation` below.
|
|
71302
|
+
*/
|
|
71303
|
+
geolocation?: outputs.route53.RecordsExclusiveResourceRecordSetGeolocation;
|
|
71304
|
+
/**
|
|
71305
|
+
* Geoproximity location block.
|
|
71306
|
+
* See `geoproximityLocation` below.
|
|
71307
|
+
*/
|
|
71308
|
+
geoproximityLocation?: outputs.route53.RecordsExclusiveResourceRecordSetGeoproximityLocation;
|
|
71309
|
+
/**
|
|
71310
|
+
* Health check the record should be associated with.
|
|
71311
|
+
*/
|
|
71312
|
+
healthCheckId?: string;
|
|
71313
|
+
multiValueAnswer?: boolean;
|
|
71314
|
+
/**
|
|
71315
|
+
* Name of the record.
|
|
71316
|
+
*/
|
|
71317
|
+
name: string;
|
|
71318
|
+
/**
|
|
71319
|
+
* AWS region of the resource this record set refers to.
|
|
71320
|
+
* Must be a valid AWS region name.
|
|
71321
|
+
* See the [AWS documentation](http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy.html#routing-policy-latency) on latency based routing for additional details.
|
|
71322
|
+
*/
|
|
71323
|
+
region?: string;
|
|
71324
|
+
/**
|
|
71325
|
+
* Information about the resource records to act upon.
|
|
71326
|
+
* See `resourceRecords` below.
|
|
71327
|
+
*/
|
|
71328
|
+
resourceRecords?: outputs.route53.RecordsExclusiveResourceRecordSetResourceRecord[];
|
|
71329
|
+
/**
|
|
71330
|
+
* An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
|
|
71331
|
+
* Required if using `cidrRoutingConfig`, `failover`, `geolocation`,`geoproximityLocation`, `multivalueAnswer`, `region`, or `weight`.
|
|
71332
|
+
*/
|
|
71333
|
+
setIdentifier?: string;
|
|
71334
|
+
trafficPolicyInstanceId?: string;
|
|
71335
|
+
/**
|
|
71336
|
+
* Resource record cache time to live (TTL), in seconds.
|
|
71337
|
+
*/
|
|
71338
|
+
ttl?: number;
|
|
71339
|
+
/**
|
|
71340
|
+
* Record type.
|
|
71341
|
+
* Valid values are `A`, `AAAA`, `CAA`, `CNAME`, `DS`, `MX`, `NAPTR`, `NS`, `PTR`, `SOA`, `SPF`, `SRV`, `TXT`, `TLSA`, `SSHFP`, `SVCB`, and `HTTPS`.
|
|
71342
|
+
*
|
|
71343
|
+
* The following arguments are optional:
|
|
71344
|
+
*
|
|
71345
|
+
* > Exactly one of `resourceRecords` or `aliasTarget` must be specified.
|
|
71346
|
+
*/
|
|
71347
|
+
type?: string;
|
|
71348
|
+
/**
|
|
71349
|
+
* Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
|
|
71350
|
+
*/
|
|
71351
|
+
weight?: number;
|
|
71352
|
+
}
|
|
71353
|
+
interface RecordsExclusiveResourceRecordSetAliasTarget {
|
|
71354
|
+
/**
|
|
71355
|
+
* DNS domain name for another resource record set in this hosted zone.
|
|
71356
|
+
*/
|
|
71357
|
+
dnsName: string;
|
|
71358
|
+
/**
|
|
71359
|
+
* Set to `true` if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see [the AWS documentation](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/resource-record-sets-values.html#rrsets-values-alias-evaluate-target-health) for additional details.
|
|
71360
|
+
*/
|
|
71361
|
+
evaluateTargetHealth: boolean;
|
|
71362
|
+
/**
|
|
71363
|
+
* Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See `resource_elb.zone_id` for an example.
|
|
71364
|
+
*/
|
|
71365
|
+
hostedZoneId: string;
|
|
71366
|
+
}
|
|
71367
|
+
interface RecordsExclusiveResourceRecordSetCidrRoutingConfig {
|
|
71368
|
+
/**
|
|
71369
|
+
* CIDR collection ID.
|
|
71370
|
+
* See the `aws.route53.CidrCollection` resource for more details.
|
|
71371
|
+
*/
|
|
71372
|
+
collectionId: string;
|
|
71373
|
+
/**
|
|
71374
|
+
* CIDR collection location name.
|
|
71375
|
+
* See the `aws.route53.CidrLocation` resource for more details.
|
|
71376
|
+
* A `locationName` with an asterisk `"*"` can be used to create a default CIDR record.
|
|
71377
|
+
* `collectionId` is still required for a default record.
|
|
71378
|
+
*/
|
|
71379
|
+
locationName: string;
|
|
71380
|
+
}
|
|
71381
|
+
interface RecordsExclusiveResourceRecordSetGeolocation {
|
|
71382
|
+
continentCode?: string;
|
|
71383
|
+
countryCode?: string;
|
|
71384
|
+
subdivisionCode?: string;
|
|
71385
|
+
}
|
|
71386
|
+
interface RecordsExclusiveResourceRecordSetGeoproximityLocation {
|
|
71387
|
+
/**
|
|
71388
|
+
* AWS region of the resource where DNS traffic is directed to.
|
|
71389
|
+
*/
|
|
71390
|
+
awsRegion?: string;
|
|
71391
|
+
/**
|
|
71392
|
+
* Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
|
|
71393
|
+
* To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from `1` to `99`.
|
|
71394
|
+
* To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of `-1` to `-99`.
|
|
71395
|
+
* See the [AWS documentation](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy-geoproximity.html) for additional details.
|
|
71396
|
+
*/
|
|
71397
|
+
bias?: number;
|
|
71398
|
+
/**
|
|
71399
|
+
* Coordinates for a geoproximity resource record.
|
|
71400
|
+
* See `coordinates` below.
|
|
71401
|
+
*/
|
|
71402
|
+
coordinates?: outputs.route53.RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinates;
|
|
71403
|
+
/**
|
|
71404
|
+
* AWS local zone group.
|
|
71405
|
+
* Identify the Local Zones Group for a specific Local Zone by using the [`describe-availability-zones` CLI command](https://docs.aws.amazon.com/cli/latest/reference/ec2/describe-availability-zones.html).
|
|
71406
|
+
*/
|
|
71407
|
+
localZoneGroup?: string;
|
|
71408
|
+
}
|
|
71409
|
+
interface RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinates {
|
|
71410
|
+
/**
|
|
71411
|
+
* A coordinate of the east–west position of a geographic point on the surface of the Earth (`-180` - `180`).
|
|
71412
|
+
*/
|
|
71413
|
+
latitude: string;
|
|
71414
|
+
longitude: string;
|
|
71415
|
+
}
|
|
71416
|
+
interface RecordsExclusiveResourceRecordSetResourceRecord {
|
|
71417
|
+
/**
|
|
71418
|
+
* DNS record value.
|
|
71419
|
+
*/
|
|
71420
|
+
value: string;
|
|
71421
|
+
}
|
|
71422
|
+
interface RecordsExclusiveTimeouts {
|
|
71423
|
+
/**
|
|
71424
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
71425
|
+
*/
|
|
71426
|
+
create?: string;
|
|
71427
|
+
/**
|
|
71428
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
71429
|
+
*/
|
|
71430
|
+
update?: string;
|
|
71431
|
+
}
|
|
71151
71432
|
interface ResolverEndpointIpAddress {
|
|
71152
71433
|
/**
|
|
71153
71434
|
* IPv4 address in the subnet that you want to use for DNS queries.
|
|
@@ -81887,7 +82168,7 @@ export declare namespace timestreaminfluxdb {
|
|
|
81887
82168
|
/**
|
|
81888
82169
|
* Indicates whether log delivery to the S3 bucket is enabled.
|
|
81889
82170
|
*
|
|
81890
|
-
* **Note**:
|
|
82171
|
+
* **Note**: The following arguments do updates in-place: `dbParameterGroupIdentifier`, `logDeliveryConfiguration`, `port`, `deploymentType`, `dbInstanceType`, and `tags`. Changes to any other argument after a DB instance has been deployed will cause destruction and re-creation of the DB instance. Additionally, when `dbParameterGroupIdentifier` is added to a DB instance or modified, the DB instance will be updated in-place but if `dbParameterGroupIdentifier` is removed from a DB instance, the DB instance will be destroyed and re-created.
|
|
81891
82172
|
*/
|
|
81892
82173
|
enabled: boolean;
|
|
81893
82174
|
}
|
|
@@ -87640,6 +87921,10 @@ export declare namespace wafv2 {
|
|
|
87640
87921
|
* Specifies how AWS WAF should handle CAPTCHA evaluations. See `captchaConfig` below for details.
|
|
87641
87922
|
*/
|
|
87642
87923
|
captchaConfig?: outputs.wafv2.WebAclRuleCaptchaConfig;
|
|
87924
|
+
/**
|
|
87925
|
+
* Specifies how AWS WAF should handle Challenge evaluations on the rule level. See `challengeConfig` below for details.
|
|
87926
|
+
*/
|
|
87927
|
+
challengeConfig?: outputs.wafv2.WebAclRuleChallengeConfig;
|
|
87643
87928
|
/**
|
|
87644
87929
|
* Friendly name of the rule. Note that the provider assumes that rules with names matching this pattern, `^ShieldMitigationRuleGroup_<account-id>_<web-acl-guid>_.*`, are AWS-added for [automatic application layer DDoS mitigation activities](https://docs.aws.amazon.com/waf/latest/developerguide/ddos-automatic-app-layer-response-rg.html). Such rules will be ignored by the provider unless you explicitly include them in your configuration (for example, by using the AWS CLI to discover their properties and creating matching configuration). However, since these rules are owned and managed by AWS, you may get permission errors.
|
|
87645
87930
|
*/
|
|
@@ -87817,6 +88102,18 @@ export declare namespace wafv2 {
|
|
|
87817
88102
|
*/
|
|
87818
88103
|
immunityTime?: number;
|
|
87819
88104
|
}
|
|
88105
|
+
interface WebAclRuleChallengeConfig {
|
|
88106
|
+
/**
|
|
88107
|
+
* Defines custom immunity time. See `immunityTimeProperty` below for details.
|
|
88108
|
+
*/
|
|
88109
|
+
immunityTimeProperty?: outputs.wafv2.WebAclRuleChallengeConfigImmunityTimeProperty;
|
|
88110
|
+
}
|
|
88111
|
+
interface WebAclRuleChallengeConfigImmunityTimeProperty {
|
|
88112
|
+
/**
|
|
88113
|
+
* The amount of time, in seconds, that a CAPTCHA or challenge timestamp is considered valid by AWS WAF. The default setting is 300.
|
|
88114
|
+
*/
|
|
88115
|
+
immunityTime?: number;
|
|
88116
|
+
}
|
|
87820
88117
|
interface WebAclRuleOverrideAction {
|
|
87821
88118
|
/**
|
|
87822
88119
|
* Override the rule action setting to count (i.e., only count matches). Configured as an empty block `{}`.
|