@pulumi/aws 6.73.0-alpha.1742228199 → 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/input.d.ts
CHANGED
|
@@ -550,6 +550,10 @@ export interface ProviderEndpoint {
|
|
|
550
550
|
* Use this to override the default service endpoint URL
|
|
551
551
|
*/
|
|
552
552
|
ds?: pulumi.Input<string>;
|
|
553
|
+
/**
|
|
554
|
+
* Use this to override the default service endpoint URL
|
|
555
|
+
*/
|
|
556
|
+
dsql?: pulumi.Input<string>;
|
|
553
557
|
/**
|
|
554
558
|
* Use this to override the default service endpoint URL
|
|
555
559
|
*/
|
|
@@ -14050,19 +14054,26 @@ export declare namespace codebuild {
|
|
|
14050
14054
|
}
|
|
14051
14055
|
interface ProjectArtifacts {
|
|
14052
14056
|
/**
|
|
14053
|
-
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
14057
|
+
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
14058
|
+
* specification.
|
|
14054
14059
|
*/
|
|
14055
14060
|
artifactIdentifier?: pulumi.Input<string>;
|
|
14056
14061
|
/**
|
|
14057
|
-
* Specifies the bucket owner's access for objects that another account uploads to
|
|
14062
|
+
* Specifies the bucket owner's access for objects that another account uploads to
|
|
14063
|
+
* their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these
|
|
14064
|
+
* objects. This property allows you to give the bucket owner access to these objects. Valid values are `NONE`,
|
|
14065
|
+
* `READ_ONLY`, and `FULL`. your CodeBuild service role must have the `s3:PutBucketAcl` permission. This permission
|
|
14066
|
+
* allows CodeBuild to modify the access control list for the bucket.
|
|
14058
14067
|
*/
|
|
14059
14068
|
bucketOwnerAccess?: pulumi.Input<string>;
|
|
14060
14069
|
/**
|
|
14061
|
-
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
14070
|
+
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
14071
|
+
* this value is ignored. Defaults to `false`.
|
|
14062
14072
|
*/
|
|
14063
14073
|
encryptionDisabled?: pulumi.Input<boolean>;
|
|
14064
14074
|
/**
|
|
14065
|
-
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
14075
|
+
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
14076
|
+
* `NO_ARTIFACTS`, this value is ignored. If `type` is set to `S3`, this is the name of the output bucket.
|
|
14066
14077
|
*/
|
|
14067
14078
|
location?: pulumi.Input<string>;
|
|
14068
14079
|
/**
|
|
@@ -14070,7 +14081,8 @@ export declare namespace codebuild {
|
|
|
14070
14081
|
*/
|
|
14071
14082
|
name?: pulumi.Input<string>;
|
|
14072
14083
|
/**
|
|
14073
|
-
* Namespace to use in storing build artifacts. If `type` is set to `S3`, then valid values
|
|
14084
|
+
* Namespace to use in storing build artifacts. If `type` is set to `S3`, then valid values
|
|
14085
|
+
* are `BUILD_ID`, `NONE`.
|
|
14074
14086
|
*/
|
|
14075
14087
|
namespaceType?: pulumi.Input<string>;
|
|
14076
14088
|
/**
|
|
@@ -14078,7 +14090,8 @@ export declare namespace codebuild {
|
|
|
14078
14090
|
*/
|
|
14079
14091
|
overrideArtifactName?: pulumi.Input<boolean>;
|
|
14080
14092
|
/**
|
|
14081
|
-
* Type of build output artifact to create. If `type` is set to `S3`, valid values are `NONE`,
|
|
14093
|
+
* Type of build output artifact to create. If `type` is set to `S3`, valid values are `NONE`,
|
|
14094
|
+
* `ZIP`
|
|
14082
14095
|
*/
|
|
14083
14096
|
packaging?: pulumi.Input<string>;
|
|
14084
14097
|
/**
|
|
@@ -14092,7 +14105,8 @@ export declare namespace codebuild {
|
|
|
14092
14105
|
}
|
|
14093
14106
|
interface ProjectBuildBatchConfig {
|
|
14094
14107
|
/**
|
|
14095
|
-
* Specifies if the build artifacts for the batch build should be combined into a single
|
|
14108
|
+
* Specifies if the build artifacts for the batch build should be combined into a single
|
|
14109
|
+
* artifact location.
|
|
14096
14110
|
*/
|
|
14097
14111
|
combineArtifacts?: pulumi.Input<boolean>;
|
|
14098
14112
|
/**
|
|
@@ -14104,13 +14118,17 @@ export declare namespace codebuild {
|
|
|
14104
14118
|
*/
|
|
14105
14119
|
serviceRole: pulumi.Input<string>;
|
|
14106
14120
|
/**
|
|
14107
|
-
* Specifies the maximum amount of time, in minutes, that the batch build must be
|
|
14121
|
+
* Specifies the maximum amount of time, in minutes, that the batch build must be
|
|
14122
|
+
* completed in.
|
|
14108
14123
|
*/
|
|
14109
14124
|
timeoutInMins?: pulumi.Input<number>;
|
|
14110
14125
|
}
|
|
14111
14126
|
interface ProjectBuildBatchConfigRestrictions {
|
|
14112
14127
|
/**
|
|
14113
|
-
* An array of strings that specify the compute types that are allowed for the batch
|
|
14128
|
+
* An array of strings that specify the compute types that are allowed for the batch
|
|
14129
|
+
* build.
|
|
14130
|
+
* See [Build environment compute types](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html)
|
|
14131
|
+
* in the AWS CodeBuild User Guide for these values.
|
|
14114
14132
|
*/
|
|
14115
14133
|
computeTypesAlloweds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14116
14134
|
/**
|
|
@@ -14120,15 +14138,18 @@ export declare namespace codebuild {
|
|
|
14120
14138
|
}
|
|
14121
14139
|
interface ProjectCache {
|
|
14122
14140
|
/**
|
|
14123
|
-
* Location where the AWS CodeBuild project stores cached resources. For
|
|
14141
|
+
* Location where the AWS CodeBuild project stores cached resources. For
|
|
14142
|
+
* type `S3`, the value must be a valid S3 bucket name/prefix.
|
|
14124
14143
|
*/
|
|
14125
14144
|
location?: pulumi.Input<string>;
|
|
14126
14145
|
/**
|
|
14127
|
-
* Specifies settings that AWS CodeBuild uses to store and reuse build
|
|
14146
|
+
* Specifies settings that AWS CodeBuild uses to store and reuse build
|
|
14147
|
+
* dependencies. Valid values: `LOCAL_SOURCE_CACHE`, `LOCAL_DOCKER_LAYER_CACHE`, `LOCAL_CUSTOM_CACHE`.
|
|
14128
14148
|
*/
|
|
14129
14149
|
modes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14130
14150
|
/**
|
|
14131
|
-
* Type of storage that will be used for the AWS CodeBuild project cache. Valid values: `NO_CACHE`,
|
|
14151
|
+
* Type of storage that will be used for the AWS CodeBuild project cache. Valid values: `NO_CACHE`,
|
|
14152
|
+
* `LOCAL`, `S3`. Defaults to `NO_CACHE`.
|
|
14132
14153
|
*/
|
|
14133
14154
|
type?: pulumi.Input<string>;
|
|
14134
14155
|
}
|
|
@@ -14138,7 +14159,12 @@ export declare namespace codebuild {
|
|
|
14138
14159
|
*/
|
|
14139
14160
|
certificate?: pulumi.Input<string>;
|
|
14140
14161
|
/**
|
|
14141
|
-
* Information about the compute resources the build project will use. Valid values:
|
|
14162
|
+
* Information about the compute resources the build project will use. Valid values:
|
|
14163
|
+
* `BUILD_GENERAL1_SMALL`, `BUILD_GENERAL1_MEDIUM`, `BUILD_GENERAL1_LARGE`, `BUILD_GENERAL1_2XLARGE`, `BUILD_LAMBDA_1GB`,
|
|
14164
|
+
* `BUILD_LAMBDA_2GB`, `BUILD_LAMBDA_4GB`, `BUILD_LAMBDA_8GB`, `BUILD_LAMBDA_10GB`. `BUILD_GENERAL1_SMALL` is only valid
|
|
14165
|
+
* if `type` is set to `LINUX_CONTAINER`. When `type` is set to `LINUX_GPU_CONTAINER`, `computeType` must be
|
|
14166
|
+
* `BUILD_GENERAL1_LARGE`. When `type` is set to `LINUX_LAMBDA_CONTAINER` or `ARM_LAMBDA_CONTAINER`, `computeType` must
|
|
14167
|
+
* be `BUILD_LAMBDA_XGB`.`
|
|
14142
14168
|
*/
|
|
14143
14169
|
computeType: pulumi.Input<string>;
|
|
14144
14170
|
/**
|
|
@@ -14150,15 +14176,22 @@ export declare namespace codebuild {
|
|
|
14150
14176
|
*/
|
|
14151
14177
|
fleet?: pulumi.Input<inputs.codebuild.ProjectEnvironmentFleet>;
|
|
14152
14178
|
/**
|
|
14153
|
-
* Docker image to use for this build project. Valid values
|
|
14179
|
+
* Docker image to use for this build project. Valid values
|
|
14180
|
+
* include [Docker images provided by CodeBuild](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html) (
|
|
14181
|
+
* e.g `aws/codebuild/amazonlinux2-x86_64-standard:4.0`), [Docker Hub images](https://hub.docker.com/) (e.g.,
|
|
14182
|
+
* `pulumi/pulumi:latest`), and full Docker repository URIs such as those for ECR (e.g.,
|
|
14183
|
+
* `137112412989.dkr.ecr.us-west-2.amazonaws.com/amazonlinux:latest`).
|
|
14154
14184
|
*/
|
|
14155
14185
|
image: pulumi.Input<string>;
|
|
14156
14186
|
/**
|
|
14157
|
-
* Type of credentials AWS CodeBuild uses to pull images in your build. Valid
|
|
14187
|
+
* Type of credentials AWS CodeBuild uses to pull images in your build. Valid
|
|
14188
|
+
* values: `CODEBUILD`, `SERVICE_ROLE`. When you use a cross-account or private registry image, you must use SERVICE_ROLE
|
|
14189
|
+
* credentials. When you use an AWS CodeBuild curated image, you must use CodeBuild credentials. Defaults to `CODEBUILD`.
|
|
14158
14190
|
*/
|
|
14159
14191
|
imagePullCredentialsType?: pulumi.Input<string>;
|
|
14160
14192
|
/**
|
|
14161
|
-
* Whether to enable running the Docker daemon inside a Docker container. Defaults to
|
|
14193
|
+
* Whether to enable running the Docker daemon inside a Docker container. Defaults to
|
|
14194
|
+
* `false`.
|
|
14162
14195
|
*/
|
|
14163
14196
|
privilegedMode?: pulumi.Input<boolean>;
|
|
14164
14197
|
/**
|
|
@@ -14166,7 +14199,10 @@ export declare namespace codebuild {
|
|
|
14166
14199
|
*/
|
|
14167
14200
|
registryCredential?: pulumi.Input<inputs.codebuild.ProjectEnvironmentRegistryCredential>;
|
|
14168
14201
|
/**
|
|
14169
|
-
* Type of build environment to use for related builds. Valid values: `LINUX_CONTAINER`,
|
|
14202
|
+
* Type of build environment to use for related builds. Valid values: `LINUX_CONTAINER`,
|
|
14203
|
+
* `LINUX_GPU_CONTAINER`, `WINDOWS_CONTAINER` (deprecated), `WINDOWS_SERVER_2019_CONTAINER`, `ARM_CONTAINER`,
|
|
14204
|
+
* `LINUX_LAMBDA_CONTAINER`, `ARM_LAMBDA_CONTAINER`. For additional information, see
|
|
14205
|
+
* the [CodeBuild User Guide](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html).
|
|
14170
14206
|
*/
|
|
14171
14207
|
type: pulumi.Input<string>;
|
|
14172
14208
|
}
|
|
@@ -14196,17 +14232,21 @@ export declare namespace codebuild {
|
|
|
14196
14232
|
*/
|
|
14197
14233
|
credential: pulumi.Input<string>;
|
|
14198
14234
|
/**
|
|
14199
|
-
* Service that created the credentials to access a private Docker registry. Valid
|
|
14235
|
+
* Service that created the credentials to access a private Docker registry. Valid
|
|
14236
|
+
* value: `SECRETS_MANAGER` (AWS Secrets Manager).
|
|
14200
14237
|
*/
|
|
14201
14238
|
credentialProvider: pulumi.Input<string>;
|
|
14202
14239
|
}
|
|
14203
14240
|
interface ProjectFileSystemLocation {
|
|
14204
14241
|
/**
|
|
14205
|
-
* The name used to access a file system created by Amazon EFS. CodeBuild creates an
|
|
14242
|
+
* The name used to access a file system created by Amazon EFS. CodeBuild creates an
|
|
14243
|
+
* environment variable by appending the identifier in all capital letters to CODEBUILD\_. For example, if you specify
|
|
14244
|
+
* my-efs for identifier, a new environment variable is create named CODEBUILD_MY-EFS.
|
|
14206
14245
|
*/
|
|
14207
14246
|
identifier?: pulumi.Input<string>;
|
|
14208
14247
|
/**
|
|
14209
|
-
* A string that specifies the location of the file system created by Amazon EFS. Its format is
|
|
14248
|
+
* A string that specifies the location of the file system created by Amazon EFS. Its format is
|
|
14249
|
+
* `efs-dns-name:/directory-path`.
|
|
14210
14250
|
*/
|
|
14211
14251
|
location?: pulumi.Input<string>;
|
|
14212
14252
|
/**
|
|
@@ -14238,7 +14278,8 @@ export declare namespace codebuild {
|
|
|
14238
14278
|
*/
|
|
14239
14279
|
groupName?: pulumi.Input<string>;
|
|
14240
14280
|
/**
|
|
14241
|
-
* Current status of logs in CloudWatch Logs for a build project. Valid values: `ENABLED`,
|
|
14281
|
+
* Current status of logs in CloudWatch Logs for a build project. Valid values: `ENABLED`,
|
|
14282
|
+
* `DISABLED`. Defaults to `ENABLED`.
|
|
14242
14283
|
*/
|
|
14243
14284
|
status?: pulumi.Input<string>;
|
|
14244
14285
|
/**
|
|
@@ -14248,7 +14289,11 @@ export declare namespace codebuild {
|
|
|
14248
14289
|
}
|
|
14249
14290
|
interface ProjectLogsConfigS3Logs {
|
|
14250
14291
|
/**
|
|
14251
|
-
* Specifies the bucket owner's access for objects that another account uploads to
|
|
14292
|
+
* Specifies the bucket owner's access for objects that another account uploads to
|
|
14293
|
+
* their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these
|
|
14294
|
+
* objects. This property allows you to give the bucket owner access to these objects. Valid values are `NONE`,
|
|
14295
|
+
* `READ_ONLY`, and `FULL`. your CodeBuild service role must have the `s3:PutBucketAcl` permission. This permission
|
|
14296
|
+
* allows CodeBuild to modify the access control list for the bucket.
|
|
14252
14297
|
*/
|
|
14253
14298
|
bucketOwnerAccess?: pulumi.Input<string>;
|
|
14254
14299
|
/**
|
|
@@ -14256,37 +14301,49 @@ export declare namespace codebuild {
|
|
|
14256
14301
|
*/
|
|
14257
14302
|
encryptionDisabled?: pulumi.Input<boolean>;
|
|
14258
14303
|
/**
|
|
14259
|
-
* Name of the S3 bucket and the path prefix for S3 logs. Must be set if status is `ENABLED`,
|
|
14304
|
+
* Name of the S3 bucket and the path prefix for S3 logs. Must be set if status is `ENABLED`,
|
|
14305
|
+
* otherwise it must be empty.
|
|
14260
14306
|
*/
|
|
14261
14307
|
location?: pulumi.Input<string>;
|
|
14262
14308
|
/**
|
|
14263
|
-
* Current status of logs in S3 for a build project. Valid values: `ENABLED`, `DISABLED`. Defaults
|
|
14309
|
+
* Current status of logs in S3 for a build project. Valid values: `ENABLED`, `DISABLED`. Defaults
|
|
14310
|
+
* to `DISABLED`.
|
|
14264
14311
|
*/
|
|
14265
14312
|
status?: pulumi.Input<string>;
|
|
14266
14313
|
}
|
|
14267
14314
|
interface ProjectSecondaryArtifact {
|
|
14268
14315
|
/**
|
|
14269
|
-
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
14316
|
+
* Artifact identifier. Must be the same specified inside the AWS CodeBuild build
|
|
14317
|
+
* specification.
|
|
14270
14318
|
*/
|
|
14271
14319
|
artifactIdentifier: pulumi.Input<string>;
|
|
14272
14320
|
/**
|
|
14273
|
-
* Specifies the bucket owner's access for objects that another account uploads to
|
|
14321
|
+
* Specifies the bucket owner's access for objects that another account uploads to
|
|
14322
|
+
* their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these
|
|
14323
|
+
* objects. This property allows you to give the bucket owner access to these objects. Valid values are `NONE`,
|
|
14324
|
+
* `READ_ONLY`, and `FULL`. The CodeBuild service role must have the `s3:PutBucketAcl` permission. This permission allows
|
|
14325
|
+
* CodeBuild to modify the access control list for the bucket.
|
|
14274
14326
|
*/
|
|
14275
14327
|
bucketOwnerAccess?: pulumi.Input<string>;
|
|
14276
14328
|
/**
|
|
14277
|
-
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
14329
|
+
* Whether to disable encrypting output artifacts. If `type` is set to `NO_ARTIFACTS`,
|
|
14330
|
+
* this value is ignored. Defaults to `false`.
|
|
14278
14331
|
*/
|
|
14279
14332
|
encryptionDisabled?: pulumi.Input<boolean>;
|
|
14280
14333
|
/**
|
|
14281
|
-
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
14334
|
+
* Information about the build output artifact location. If `type` is set to `CODEPIPELINE` or
|
|
14335
|
+
* `NO_ARTIFACTS`, this value is ignored if specified. If `type` is set to `S3`, this is the name of the output bucket.
|
|
14336
|
+
* If `path` is not specified, `location` can specify the path of the output artifact in the output bucket.
|
|
14282
14337
|
*/
|
|
14283
14338
|
location?: pulumi.Input<string>;
|
|
14284
14339
|
/**
|
|
14285
|
-
* Name of the project. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS`, this value is ignored
|
|
14340
|
+
* Name of the project. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS`, this value is ignored
|
|
14341
|
+
* if specified. If `type` is set to `S3`, this is the name of the output artifact object.
|
|
14286
14342
|
*/
|
|
14287
14343
|
name?: pulumi.Input<string>;
|
|
14288
14344
|
/**
|
|
14289
|
-
* Namespace to use in storing build artifacts. If `type` is set to `CODEPIPELINE` or
|
|
14345
|
+
* Namespace to use in storing build artifacts. If `type` is set to `CODEPIPELINE` or
|
|
14346
|
+
* `NO_ARTIFACTS`, this value is ignored if specified. If `type` is set to `S3`, valid values are `BUILD_ID` or `NONE`.
|
|
14290
14347
|
*/
|
|
14291
14348
|
namespaceType?: pulumi.Input<string>;
|
|
14292
14349
|
/**
|
|
@@ -14294,11 +14351,14 @@ export declare namespace codebuild {
|
|
|
14294
14351
|
*/
|
|
14295
14352
|
overrideArtifactName?: pulumi.Input<boolean>;
|
|
14296
14353
|
/**
|
|
14297
|
-
* Type of build output artifact to create. If `type` is set to `CODEPIPELINE` or
|
|
14354
|
+
* Type of build output artifact to create. If `type` is set to `CODEPIPELINE` or
|
|
14355
|
+
* `NO_ARTIFACTS`, this value is ignored if specified. If `type` is set to `S3`, valid values are `NONE` or `ZIP`.
|
|
14298
14356
|
*/
|
|
14299
14357
|
packaging?: pulumi.Input<string>;
|
|
14300
14358
|
/**
|
|
14301
|
-
* Along with `namespaceType` and `name`, the pattern that AWS CodeBuild uses to name and store the
|
|
14359
|
+
* Along with `namespaceType` and `name`, the pattern that AWS CodeBuild uses to name and store the
|
|
14360
|
+
* output artifact. If `type` is set to `CODEPIPELINE` or `NO_ARTIFACTS`, this value is ignored if specified. If `type`
|
|
14361
|
+
* is set to `S3`, this is the path to the output artifact.
|
|
14302
14362
|
*/
|
|
14303
14363
|
path?: pulumi.Input<string>;
|
|
14304
14364
|
/**
|
|
@@ -14308,15 +14368,27 @@ export declare namespace codebuild {
|
|
|
14308
14368
|
}
|
|
14309
14369
|
interface ProjectSecondarySource {
|
|
14310
14370
|
/**
|
|
14311
|
-
*
|
|
14371
|
+
* Information about the strategy CodeBuild should use when authenticating with the source code host.
|
|
14372
|
+
* Detailed below.
|
|
14373
|
+
*/
|
|
14374
|
+
auth?: pulumi.Input<inputs.codebuild.ProjectSecondarySourceAuth>;
|
|
14375
|
+
/**
|
|
14376
|
+
* Configuration block that contains information that defines how the build project
|
|
14377
|
+
* reports the build status to the source provider. This option is only used when the source provider is GitHub, GitHub
|
|
14378
|
+
* Enterprise, GitLab, GitLab Self Managed, or Bitbucket. `buildStatusConfig` blocks are documented below.
|
|
14312
14379
|
*/
|
|
14313
14380
|
buildStatusConfig?: pulumi.Input<inputs.codebuild.ProjectSecondarySourceBuildStatusConfig>;
|
|
14314
14381
|
/**
|
|
14315
|
-
* The build spec declaration to use for this build project's related builds. This must be set
|
|
14382
|
+
* The build spec declaration to use for this build project's related builds. This must be set
|
|
14383
|
+
* 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
|
|
14384
|
+
* path leveraging the `file()` built-in.
|
|
14316
14385
|
*/
|
|
14317
14386
|
buildspec?: pulumi.Input<string>;
|
|
14318
14387
|
/**
|
|
14319
|
-
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
14388
|
+
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
14389
|
+
* to run commands like `git branch --show-current`.
|
|
14390
|
+
* 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)
|
|
14391
|
+
* for details.
|
|
14320
14392
|
*/
|
|
14321
14393
|
gitCloneDepth?: pulumi.Input<number>;
|
|
14322
14394
|
/**
|
|
@@ -14332,25 +14404,43 @@ export declare namespace codebuild {
|
|
|
14332
14404
|
*/
|
|
14333
14405
|
location?: pulumi.Input<string>;
|
|
14334
14406
|
/**
|
|
14335
|
-
* Whether to report the status of a build's start and finish to your source provider.
|
|
14407
|
+
* Whether to report the status of a build's start and finish to your source provider.
|
|
14408
|
+
* This option is valid only when your source provider is GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or
|
|
14409
|
+
* Bitbucket.
|
|
14336
14410
|
*/
|
|
14337
14411
|
reportBuildStatus?: pulumi.Input<boolean>;
|
|
14338
14412
|
/**
|
|
14339
|
-
* An identifier for this project source. The identifier can only contain alphanumeric
|
|
14413
|
+
* An identifier for this project source. The identifier can only contain alphanumeric
|
|
14414
|
+
* characters and underscores, and must be less than 128 characters in length.
|
|
14340
14415
|
*/
|
|
14341
14416
|
sourceIdentifier: pulumi.Input<string>;
|
|
14342
14417
|
/**
|
|
14343
|
-
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
14418
|
+
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
14419
|
+
* `CODECOMMIT`, `CODEPIPELINE`, `GITHUB`, `GITHUB_ENTERPRISE`, `GITLAB`, `GITLAB_SELF_MANAGED`, `NO_SOURCE`, `S3`.
|
|
14420
|
+
*/
|
|
14421
|
+
type: pulumi.Input<string>;
|
|
14422
|
+
}
|
|
14423
|
+
interface ProjectSecondarySourceAuth {
|
|
14424
|
+
/**
|
|
14425
|
+
* The ARN of the resource to use for authentication. For type `CODECONNECTIONS` this should be
|
|
14426
|
+
* an AWS CodeStar Connection. For type `SECRETS_MANAGER` this should be an AWS Secrets Manager secret.
|
|
14427
|
+
*/
|
|
14428
|
+
resource: pulumi.Input<string>;
|
|
14429
|
+
/**
|
|
14430
|
+
* The type of authentication AWS CodeBuild should perform. Valid values are `CODECONNECTIONS` and
|
|
14431
|
+
* `SECRETS_MANAGER`.
|
|
14344
14432
|
*/
|
|
14345
14433
|
type: pulumi.Input<string>;
|
|
14346
14434
|
}
|
|
14347
14435
|
interface ProjectSecondarySourceBuildStatusConfig {
|
|
14348
14436
|
/**
|
|
14349
|
-
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
14437
|
+
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
14438
|
+
* this parameter depends on the source provider.
|
|
14350
14439
|
*/
|
|
14351
14440
|
context?: pulumi.Input<string>;
|
|
14352
14441
|
/**
|
|
14353
|
-
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
14442
|
+
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
14443
|
+
* usage of this parameter depends on the source provider.
|
|
14354
14444
|
*/
|
|
14355
14445
|
targetUrl?: pulumi.Input<string>;
|
|
14356
14446
|
}
|
|
@@ -14366,21 +14456,35 @@ export declare namespace codebuild {
|
|
|
14366
14456
|
*/
|
|
14367
14457
|
sourceIdentifier: pulumi.Input<string>;
|
|
14368
14458
|
/**
|
|
14369
|
-
* The source version for the corresponding source identifier.
|
|
14459
|
+
* The source version for the corresponding source identifier.
|
|
14460
|
+
* See [AWS docs](https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ProjectSourceVersion.html#CodeBuild-Type-ProjectSourceVersion-sourceVersion)
|
|
14461
|
+
* for more details.
|
|
14370
14462
|
*/
|
|
14371
14463
|
sourceVersion: pulumi.Input<string>;
|
|
14372
14464
|
}
|
|
14373
14465
|
interface ProjectSource {
|
|
14374
14466
|
/**
|
|
14375
|
-
*
|
|
14467
|
+
* Information about the strategy CodeBuild should use when authenticating with the source code host.
|
|
14468
|
+
* Detailed below.
|
|
14469
|
+
*/
|
|
14470
|
+
auth?: pulumi.Input<inputs.codebuild.ProjectSourceAuth>;
|
|
14471
|
+
/**
|
|
14472
|
+
* Configuration block that contains information that defines how the build project
|
|
14473
|
+
* reports the build status to the source provider. This option is only used when the source provider is GitHub, GitHub
|
|
14474
|
+
* Enterprise, GitLab, GitLab Self Managed, or Bitbucket. `buildStatusConfig` blocks are documented below.
|
|
14376
14475
|
*/
|
|
14377
14476
|
buildStatusConfig?: pulumi.Input<inputs.codebuild.ProjectSourceBuildStatusConfig>;
|
|
14378
14477
|
/**
|
|
14379
|
-
* Build specification to use for this build project's related builds. This must be set when
|
|
14478
|
+
* Build specification to use for this build project's related builds. This must be set when
|
|
14479
|
+
* `type` is `NO_SOURCE`. Also, if a non-default buildspec file name or file path aside from the root is used, it must be
|
|
14480
|
+
* specified.
|
|
14380
14481
|
*/
|
|
14381
14482
|
buildspec?: pulumi.Input<string>;
|
|
14382
14483
|
/**
|
|
14383
|
-
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
14484
|
+
* Truncate git history to this many commits. Use `0` for a `Full` checkout which you need
|
|
14485
|
+
* to run commands like `git branch --show-current`.
|
|
14486
|
+
* 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)
|
|
14487
|
+
* for details.
|
|
14384
14488
|
*/
|
|
14385
14489
|
gitCloneDepth?: pulumi.Input<number>;
|
|
14386
14490
|
/**
|
|
@@ -14396,21 +14500,38 @@ export declare namespace codebuild {
|
|
|
14396
14500
|
*/
|
|
14397
14501
|
location?: pulumi.Input<string>;
|
|
14398
14502
|
/**
|
|
14399
|
-
* Whether to report the status of a build's start and finish to your source provider.
|
|
14503
|
+
* Whether to report the status of a build's start and finish to your source provider.
|
|
14504
|
+
* This option is valid only when your source provider is GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or
|
|
14505
|
+
* Bitbucket.
|
|
14400
14506
|
*/
|
|
14401
14507
|
reportBuildStatus?: pulumi.Input<boolean>;
|
|
14402
14508
|
/**
|
|
14403
|
-
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
14509
|
+
* Type of repository that contains the source code to be built. Valid values: `BITBUCKET`,
|
|
14510
|
+
* `CODECOMMIT`, `CODEPIPELINE`, `GITHUB`, `GITHUB_ENTERPRISE`, `GITLAB`, `GITLAB_SELF_MANAGED`, `NO_SOURCE`, `S3`.
|
|
14511
|
+
*/
|
|
14512
|
+
type: pulumi.Input<string>;
|
|
14513
|
+
}
|
|
14514
|
+
interface ProjectSourceAuth {
|
|
14515
|
+
/**
|
|
14516
|
+
* The ARN of the resource to use for authentication. For type `CODECONNECTIONS` this should be
|
|
14517
|
+
* an AWS CodeStar Connection. For type `SECRETS_MANAGER` this should be an AWS Secrets Manager secret.
|
|
14518
|
+
*/
|
|
14519
|
+
resource: pulumi.Input<string>;
|
|
14520
|
+
/**
|
|
14521
|
+
* The type of authentication AWS CodeBuild should perform. Valid values are `CODECONNECTIONS` and
|
|
14522
|
+
* `SECRETS_MANAGER`.
|
|
14404
14523
|
*/
|
|
14405
14524
|
type: pulumi.Input<string>;
|
|
14406
14525
|
}
|
|
14407
14526
|
interface ProjectSourceBuildStatusConfig {
|
|
14408
14527
|
/**
|
|
14409
|
-
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
14528
|
+
* Specifies the context of the build status CodeBuild sends to the source provider. The usage of
|
|
14529
|
+
* this parameter depends on the source provider.
|
|
14410
14530
|
*/
|
|
14411
14531
|
context?: pulumi.Input<string>;
|
|
14412
14532
|
/**
|
|
14413
|
-
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
14533
|
+
* Specifies the target url of the build status CodeBuild sends to the source provider. The
|
|
14534
|
+
* usage of this parameter depends on the source provider.
|
|
14414
14535
|
*/
|
|
14415
14536
|
targetUrl?: pulumi.Input<string>;
|
|
14416
14537
|
}
|
|
@@ -24447,6 +24568,16 @@ export declare namespace ec2 {
|
|
|
24447
24568
|
*/
|
|
24448
24569
|
instance: pulumi.Input<string>;
|
|
24449
24570
|
}
|
|
24571
|
+
interface NetworkInterfacePermissionTimeouts {
|
|
24572
|
+
/**
|
|
24573
|
+
* 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).
|
|
24574
|
+
*/
|
|
24575
|
+
create?: pulumi.Input<string>;
|
|
24576
|
+
/**
|
|
24577
|
+
* 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.
|
|
24578
|
+
*/
|
|
24579
|
+
delete?: pulumi.Input<string>;
|
|
24580
|
+
}
|
|
24450
24581
|
interface PeeringConnectionOptionsAccepter {
|
|
24451
24582
|
/**
|
|
24452
24583
|
* Allow a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.
|
|
@@ -36546,6 +36677,10 @@ export declare namespace kinesis {
|
|
|
36546
36677
|
* The ARN of the Amazon MSK cluster.
|
|
36547
36678
|
*/
|
|
36548
36679
|
mskClusterArn: pulumi.Input<string>;
|
|
36680
|
+
/**
|
|
36681
|
+
* 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).
|
|
36682
|
+
*/
|
|
36683
|
+
readFromTimestamp?: pulumi.Input<string>;
|
|
36549
36684
|
/**
|
|
36550
36685
|
* The topic name within the Amazon MSK cluster.
|
|
36551
36686
|
*/
|
|
@@ -63274,6 +63409,152 @@ export declare namespace route53 {
|
|
|
63274
63409
|
*/
|
|
63275
63410
|
weight: pulumi.Input<number>;
|
|
63276
63411
|
}
|
|
63412
|
+
interface RecordsExclusiveResourceRecordSet {
|
|
63413
|
+
/**
|
|
63414
|
+
* Alias target block.
|
|
63415
|
+
* See `aliasTarget` below.
|
|
63416
|
+
*/
|
|
63417
|
+
aliasTarget?: pulumi.Input<inputs.route53.RecordsExclusiveResourceRecordSetAliasTarget>;
|
|
63418
|
+
cidrRoutingConfig?: pulumi.Input<inputs.route53.RecordsExclusiveResourceRecordSetCidrRoutingConfig>;
|
|
63419
|
+
/**
|
|
63420
|
+
* Type of failover resource record.
|
|
63421
|
+
* Valid values are `PRIMARY` and `SECONDARY`.
|
|
63422
|
+
* See the [AWS documentation on DNS failover](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) for additional details.
|
|
63423
|
+
*/
|
|
63424
|
+
failover?: pulumi.Input<string>;
|
|
63425
|
+
/**
|
|
63426
|
+
* Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
|
|
63427
|
+
* See `geolocation` below.
|
|
63428
|
+
*/
|
|
63429
|
+
geolocation?: pulumi.Input<inputs.route53.RecordsExclusiveResourceRecordSetGeolocation>;
|
|
63430
|
+
/**
|
|
63431
|
+
* Geoproximity location block.
|
|
63432
|
+
* See `geoproximityLocation` below.
|
|
63433
|
+
*/
|
|
63434
|
+
geoproximityLocation?: pulumi.Input<inputs.route53.RecordsExclusiveResourceRecordSetGeoproximityLocation>;
|
|
63435
|
+
/**
|
|
63436
|
+
* Health check the record should be associated with.
|
|
63437
|
+
*/
|
|
63438
|
+
healthCheckId?: pulumi.Input<string>;
|
|
63439
|
+
multiValueAnswer?: pulumi.Input<boolean>;
|
|
63440
|
+
/**
|
|
63441
|
+
* Name of the record.
|
|
63442
|
+
*/
|
|
63443
|
+
name: pulumi.Input<string>;
|
|
63444
|
+
/**
|
|
63445
|
+
* AWS region of the resource this record set refers to.
|
|
63446
|
+
* Must be a valid AWS region name.
|
|
63447
|
+
* 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.
|
|
63448
|
+
*/
|
|
63449
|
+
region?: pulumi.Input<string>;
|
|
63450
|
+
/**
|
|
63451
|
+
* Information about the resource records to act upon.
|
|
63452
|
+
* See `resourceRecords` below.
|
|
63453
|
+
*/
|
|
63454
|
+
resourceRecords?: pulumi.Input<pulumi.Input<inputs.route53.RecordsExclusiveResourceRecordSetResourceRecord>[]>;
|
|
63455
|
+
/**
|
|
63456
|
+
* An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
|
|
63457
|
+
* Required if using `cidrRoutingConfig`, `failover`, `geolocation`,`geoproximityLocation`, `multivalueAnswer`, `region`, or `weight`.
|
|
63458
|
+
*/
|
|
63459
|
+
setIdentifier?: pulumi.Input<string>;
|
|
63460
|
+
trafficPolicyInstanceId?: pulumi.Input<string>;
|
|
63461
|
+
/**
|
|
63462
|
+
* Resource record cache time to live (TTL), in seconds.
|
|
63463
|
+
*/
|
|
63464
|
+
ttl?: pulumi.Input<number>;
|
|
63465
|
+
/**
|
|
63466
|
+
* Record type.
|
|
63467
|
+
* Valid values are `A`, `AAAA`, `CAA`, `CNAME`, `DS`, `MX`, `NAPTR`, `NS`, `PTR`, `SOA`, `SPF`, `SRV`, `TXT`, `TLSA`, `SSHFP`, `SVCB`, and `HTTPS`.
|
|
63468
|
+
*
|
|
63469
|
+
* The following arguments are optional:
|
|
63470
|
+
*
|
|
63471
|
+
* > Exactly one of `resourceRecords` or `aliasTarget` must be specified.
|
|
63472
|
+
*/
|
|
63473
|
+
type?: pulumi.Input<string>;
|
|
63474
|
+
/**
|
|
63475
|
+
* 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.
|
|
63476
|
+
*/
|
|
63477
|
+
weight?: pulumi.Input<number>;
|
|
63478
|
+
}
|
|
63479
|
+
interface RecordsExclusiveResourceRecordSetAliasTarget {
|
|
63480
|
+
/**
|
|
63481
|
+
* DNS domain name for another resource record set in this hosted zone.
|
|
63482
|
+
*/
|
|
63483
|
+
dnsName: pulumi.Input<string>;
|
|
63484
|
+
/**
|
|
63485
|
+
* 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.
|
|
63486
|
+
*/
|
|
63487
|
+
evaluateTargetHealth: pulumi.Input<boolean>;
|
|
63488
|
+
/**
|
|
63489
|
+
* 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.
|
|
63490
|
+
*/
|
|
63491
|
+
hostedZoneId: pulumi.Input<string>;
|
|
63492
|
+
}
|
|
63493
|
+
interface RecordsExclusiveResourceRecordSetCidrRoutingConfig {
|
|
63494
|
+
/**
|
|
63495
|
+
* CIDR collection ID.
|
|
63496
|
+
* See the `aws.route53.CidrCollection` resource for more details.
|
|
63497
|
+
*/
|
|
63498
|
+
collectionId: pulumi.Input<string>;
|
|
63499
|
+
/**
|
|
63500
|
+
* CIDR collection location name.
|
|
63501
|
+
* See the `aws.route53.CidrLocation` resource for more details.
|
|
63502
|
+
* A `locationName` with an asterisk `"*"` can be used to create a default CIDR record.
|
|
63503
|
+
* `collectionId` is still required for a default record.
|
|
63504
|
+
*/
|
|
63505
|
+
locationName: pulumi.Input<string>;
|
|
63506
|
+
}
|
|
63507
|
+
interface RecordsExclusiveResourceRecordSetGeolocation {
|
|
63508
|
+
continentCode?: pulumi.Input<string>;
|
|
63509
|
+
countryCode?: pulumi.Input<string>;
|
|
63510
|
+
subdivisionCode?: pulumi.Input<string>;
|
|
63511
|
+
}
|
|
63512
|
+
interface RecordsExclusiveResourceRecordSetGeoproximityLocation {
|
|
63513
|
+
/**
|
|
63514
|
+
* AWS region of the resource where DNS traffic is directed to.
|
|
63515
|
+
*/
|
|
63516
|
+
awsRegion?: pulumi.Input<string>;
|
|
63517
|
+
/**
|
|
63518
|
+
* Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
|
|
63519
|
+
* 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`.
|
|
63520
|
+
* 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`.
|
|
63521
|
+
* See the [AWS documentation](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/routing-policy-geoproximity.html) for additional details.
|
|
63522
|
+
*/
|
|
63523
|
+
bias?: pulumi.Input<number>;
|
|
63524
|
+
/**
|
|
63525
|
+
* Coordinates for a geoproximity resource record.
|
|
63526
|
+
* See `coordinates` below.
|
|
63527
|
+
*/
|
|
63528
|
+
coordinates?: pulumi.Input<inputs.route53.RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinates>;
|
|
63529
|
+
/**
|
|
63530
|
+
* AWS local zone group.
|
|
63531
|
+
* 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).
|
|
63532
|
+
*/
|
|
63533
|
+
localZoneGroup?: pulumi.Input<string>;
|
|
63534
|
+
}
|
|
63535
|
+
interface RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinates {
|
|
63536
|
+
/**
|
|
63537
|
+
* A coordinate of the east–west position of a geographic point on the surface of the Earth (`-180` - `180`).
|
|
63538
|
+
*/
|
|
63539
|
+
latitude: pulumi.Input<string>;
|
|
63540
|
+
longitude: pulumi.Input<string>;
|
|
63541
|
+
}
|
|
63542
|
+
interface RecordsExclusiveResourceRecordSetResourceRecord {
|
|
63543
|
+
/**
|
|
63544
|
+
* DNS record value.
|
|
63545
|
+
*/
|
|
63546
|
+
value: pulumi.Input<string>;
|
|
63547
|
+
}
|
|
63548
|
+
interface RecordsExclusiveTimeouts {
|
|
63549
|
+
/**
|
|
63550
|
+
* 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).
|
|
63551
|
+
*/
|
|
63552
|
+
create?: pulumi.Input<string>;
|
|
63553
|
+
/**
|
|
63554
|
+
* 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).
|
|
63555
|
+
*/
|
|
63556
|
+
update?: pulumi.Input<string>;
|
|
63557
|
+
}
|
|
63277
63558
|
interface ResolverEndpointIpAddress {
|
|
63278
63559
|
/**
|
|
63279
63560
|
* IPv4 address in the subnet that you want to use for DNS queries.
|
|
@@ -73514,7 +73795,7 @@ export declare namespace timestreaminfluxdb {
|
|
|
73514
73795
|
/**
|
|
73515
73796
|
* Indicates whether log delivery to the S3 bucket is enabled.
|
|
73516
73797
|
*
|
|
73517
|
-
* **Note**:
|
|
73798
|
+
* **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.
|
|
73518
73799
|
*/
|
|
73519
73800
|
enabled: pulumi.Input<boolean>;
|
|
73520
73801
|
}
|
|
@@ -79156,6 +79437,10 @@ export declare namespace wafv2 {
|
|
|
79156
79437
|
* Specifies how AWS WAF should handle CAPTCHA evaluations. See `captchaConfig` below for details.
|
|
79157
79438
|
*/
|
|
79158
79439
|
captchaConfig?: pulumi.Input<inputs.wafv2.WebAclRuleCaptchaConfig>;
|
|
79440
|
+
/**
|
|
79441
|
+
* Specifies how AWS WAF should handle Challenge evaluations on the rule level. See `challengeConfig` below for details.
|
|
79442
|
+
*/
|
|
79443
|
+
challengeConfig?: pulumi.Input<inputs.wafv2.WebAclRuleChallengeConfig>;
|
|
79159
79444
|
/**
|
|
79160
79445
|
* 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.
|
|
79161
79446
|
*/
|
|
@@ -79333,6 +79618,18 @@ export declare namespace wafv2 {
|
|
|
79333
79618
|
*/
|
|
79334
79619
|
immunityTime?: pulumi.Input<number>;
|
|
79335
79620
|
}
|
|
79621
|
+
interface WebAclRuleChallengeConfig {
|
|
79622
|
+
/**
|
|
79623
|
+
* Defines custom immunity time. See `immunityTimeProperty` below for details.
|
|
79624
|
+
*/
|
|
79625
|
+
immunityTimeProperty?: pulumi.Input<inputs.wafv2.WebAclRuleChallengeConfigImmunityTimeProperty>;
|
|
79626
|
+
}
|
|
79627
|
+
interface WebAclRuleChallengeConfigImmunityTimeProperty {
|
|
79628
|
+
/**
|
|
79629
|
+
* The amount of time, in seconds, that a CAPTCHA or challenge timestamp is considered valid by AWS WAF. The default setting is 300.
|
|
79630
|
+
*/
|
|
79631
|
+
immunityTime?: pulumi.Input<number>;
|
|
79632
|
+
}
|
|
79336
79633
|
interface WebAclRuleOverrideAction {
|
|
79337
79634
|
/**
|
|
79338
79635
|
* Override the rule action setting to count (i.e., only count matches). Configured as an empty block `{}`.
|