@pulumi/aws 7.5.0-alpha.1755260371 → 7.5.0-alpha.1755693893
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/appsync/api.d.ts +258 -0
- package/appsync/api.js +167 -0
- package/appsync/api.js.map +1 -0
- package/appsync/channelNamespace.d.ts +191 -0
- package/appsync/channelNamespace.js +95 -0
- package/appsync/channelNamespace.js.map +1 -0
- package/appsync/index.d.ts +6 -0
- package/appsync/index.js +11 -1
- package/appsync/index.js.map +1 -1
- package/autoscaling/lifecycleHook.d.ts +3 -3
- package/codebuild/project.d.ts +7 -0
- package/codebuild/project.js +7 -0
- package/codebuild/project.js.map +1 -1
- package/codebuild/webhook.d.ts +21 -0
- package/codebuild/webhook.js +21 -0
- package/codebuild/webhook.js.map +1 -1
- package/ec2/flowLog.d.ts +116 -7
- package/ec2/flowLog.js +110 -1
- package/ec2/flowLog.js.map +1 -1
- package/ec2/vpcIpamPoolCidr.d.ts +1 -1
- package/eks/cluster.d.ts +12 -0
- package/eks/cluster.js +2 -0
- package/eks/cluster.js.map +1 -1
- package/eks/getCluster.d.ts +4 -0
- package/eks/getCluster.js.map +1 -1
- package/finspace/kxVolume.d.ts +1 -1
- package/finspace/kxVolume.js +1 -1
- package/msk/cluster.d.ts +18 -18
- package/package.json +2 -2
- package/ram/getResourceShare.d.ts +2 -2
- package/route53/resolverEndpoint.d.ts +3 -6
- package/route53/resolverEndpoint.js.map +1 -1
- package/types/input.d.ts +219 -18
- package/types/input.js.map +1 -1
- package/types/output.d.ts +223 -18
- package/types/output.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -7199,6 +7199,194 @@ export declare namespace appstream {
|
|
|
7199
7199
|
}
|
|
7200
7200
|
}
|
|
7201
7201
|
export declare namespace appsync {
|
|
7202
|
+
interface ApiEventConfig {
|
|
7203
|
+
/**
|
|
7204
|
+
* List of authentication providers. See Auth Providers below.
|
|
7205
|
+
*/
|
|
7206
|
+
authProviders?: pulumi.Input<pulumi.Input<inputs.appsync.ApiEventConfigAuthProvider>[]>;
|
|
7207
|
+
/**
|
|
7208
|
+
* List of authentication modes for connections. See Auth Modes below.
|
|
7209
|
+
*/
|
|
7210
|
+
connectionAuthModes?: pulumi.Input<pulumi.Input<inputs.appsync.ApiEventConfigConnectionAuthMode>[]>;
|
|
7211
|
+
/**
|
|
7212
|
+
* List of default authentication modes for publishing. See Auth Modes below.
|
|
7213
|
+
*/
|
|
7214
|
+
defaultPublishAuthModes?: pulumi.Input<pulumi.Input<inputs.appsync.ApiEventConfigDefaultPublishAuthMode>[]>;
|
|
7215
|
+
/**
|
|
7216
|
+
* List of default authentication modes for subscribing. See Auth Modes below.
|
|
7217
|
+
*/
|
|
7218
|
+
defaultSubscribeAuthModes?: pulumi.Input<pulumi.Input<inputs.appsync.ApiEventConfigDefaultSubscribeAuthMode>[]>;
|
|
7219
|
+
/**
|
|
7220
|
+
* Logging configuration. See Log Config below.
|
|
7221
|
+
*/
|
|
7222
|
+
logConfig?: pulumi.Input<inputs.appsync.ApiEventConfigLogConfig>;
|
|
7223
|
+
}
|
|
7224
|
+
interface ApiEventConfigAuthProvider {
|
|
7225
|
+
/**
|
|
7226
|
+
* Type of authentication provider. Valid values: `AMAZON_COGNITO_USER_POOLS`, `AWS_LAMBDA`, `OPENID_CONNECT`, `API_KEY`.
|
|
7227
|
+
*/
|
|
7228
|
+
authType: pulumi.Input<string>;
|
|
7229
|
+
/**
|
|
7230
|
+
* Configuration for Cognito user pool authentication. Required when `authType` is `AMAZON_COGNITO_USER_POOLS`. See Cognito Config below.
|
|
7231
|
+
*/
|
|
7232
|
+
cognitoConfig?: pulumi.Input<inputs.appsync.ApiEventConfigAuthProviderCognitoConfig>;
|
|
7233
|
+
/**
|
|
7234
|
+
* Configuration for Lambda authorization. Required when `authType` is `AWS_LAMBDA`. See Lambda Authorizer Config below.
|
|
7235
|
+
*/
|
|
7236
|
+
lambdaAuthorizerConfig?: pulumi.Input<inputs.appsync.ApiEventConfigAuthProviderLambdaAuthorizerConfig>;
|
|
7237
|
+
/**
|
|
7238
|
+
* Configuration for OpenID Connect. Required when `authType` is `OPENID_CONNECT`. See OpenID Connect Config below.
|
|
7239
|
+
*/
|
|
7240
|
+
openidConnectConfig?: pulumi.Input<inputs.appsync.ApiEventConfigAuthProviderOpenidConnectConfig>;
|
|
7241
|
+
}
|
|
7242
|
+
interface ApiEventConfigAuthProviderCognitoConfig {
|
|
7243
|
+
/**
|
|
7244
|
+
* Regular expression for matching the client ID.
|
|
7245
|
+
*/
|
|
7246
|
+
appIdClientRegex?: pulumi.Input<string>;
|
|
7247
|
+
/**
|
|
7248
|
+
* AWS region where the user pool is located.
|
|
7249
|
+
*/
|
|
7250
|
+
awsRegion: pulumi.Input<string>;
|
|
7251
|
+
/**
|
|
7252
|
+
* ID of the Cognito user pool.
|
|
7253
|
+
*/
|
|
7254
|
+
userPoolId: pulumi.Input<string>;
|
|
7255
|
+
}
|
|
7256
|
+
interface ApiEventConfigAuthProviderLambdaAuthorizerConfig {
|
|
7257
|
+
/**
|
|
7258
|
+
* TTL in seconds for the authorization result cache.
|
|
7259
|
+
*/
|
|
7260
|
+
authorizerResultTtlInSeconds?: pulumi.Input<number>;
|
|
7261
|
+
/**
|
|
7262
|
+
* URI of the Lambda function for authorization.
|
|
7263
|
+
*/
|
|
7264
|
+
authorizerUri: pulumi.Input<string>;
|
|
7265
|
+
/**
|
|
7266
|
+
* Regular expression for identity validation.
|
|
7267
|
+
*/
|
|
7268
|
+
identityValidationExpression?: pulumi.Input<string>;
|
|
7269
|
+
}
|
|
7270
|
+
interface ApiEventConfigAuthProviderOpenidConnectConfig {
|
|
7271
|
+
/**
|
|
7272
|
+
* TTL in seconds for the authentication token.
|
|
7273
|
+
*/
|
|
7274
|
+
authTtl?: pulumi.Input<number>;
|
|
7275
|
+
/**
|
|
7276
|
+
* Client ID for the OpenID Connect provider.
|
|
7277
|
+
*/
|
|
7278
|
+
clientId?: pulumi.Input<string>;
|
|
7279
|
+
/**
|
|
7280
|
+
* TTL in seconds for the issued at time.
|
|
7281
|
+
*/
|
|
7282
|
+
iatTtl?: pulumi.Input<number>;
|
|
7283
|
+
/**
|
|
7284
|
+
* Issuer URL for the OpenID Connect provider.
|
|
7285
|
+
*/
|
|
7286
|
+
issuer: pulumi.Input<string>;
|
|
7287
|
+
}
|
|
7288
|
+
interface ApiEventConfigConnectionAuthMode {
|
|
7289
|
+
/**
|
|
7290
|
+
* Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
|
|
7291
|
+
*/
|
|
7292
|
+
authType: pulumi.Input<string>;
|
|
7293
|
+
}
|
|
7294
|
+
interface ApiEventConfigDefaultPublishAuthMode {
|
|
7295
|
+
/**
|
|
7296
|
+
* Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
|
|
7297
|
+
*/
|
|
7298
|
+
authType: pulumi.Input<string>;
|
|
7299
|
+
}
|
|
7300
|
+
interface ApiEventConfigDefaultSubscribeAuthMode {
|
|
7301
|
+
/**
|
|
7302
|
+
* Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
|
|
7303
|
+
*/
|
|
7304
|
+
authType: pulumi.Input<string>;
|
|
7305
|
+
}
|
|
7306
|
+
interface ApiEventConfigLogConfig {
|
|
7307
|
+
/**
|
|
7308
|
+
* ARN of the IAM role for CloudWatch logs.
|
|
7309
|
+
*/
|
|
7310
|
+
cloudwatchLogsRoleArn: pulumi.Input<string>;
|
|
7311
|
+
/**
|
|
7312
|
+
* Log level. Valid values: `NONE`, `ERROR`, `ALL`, `INFO`, `DEBUG`.
|
|
7313
|
+
*/
|
|
7314
|
+
logLevel: pulumi.Input<string>;
|
|
7315
|
+
}
|
|
7316
|
+
interface ChannelNamespaceHandlerConfigs {
|
|
7317
|
+
/**
|
|
7318
|
+
* Handler configuration. See Handler Config below.
|
|
7319
|
+
*/
|
|
7320
|
+
onPublish?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigsOnPublish>;
|
|
7321
|
+
/**
|
|
7322
|
+
* Handler configuration. See Handler Config below.
|
|
7323
|
+
*/
|
|
7324
|
+
onSubscribe?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigsOnSubscribe>;
|
|
7325
|
+
}
|
|
7326
|
+
interface ChannelNamespaceHandlerConfigsOnPublish {
|
|
7327
|
+
/**
|
|
7328
|
+
* Behavior for the handler. Valid values: `CODE`, `DIRECT`.
|
|
7329
|
+
*/
|
|
7330
|
+
behavior: pulumi.Input<string>;
|
|
7331
|
+
/**
|
|
7332
|
+
* Integration data source configuration for the handler. See Integration below.
|
|
7333
|
+
*/
|
|
7334
|
+
integration?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigsOnPublishIntegration>;
|
|
7335
|
+
}
|
|
7336
|
+
interface ChannelNamespaceHandlerConfigsOnPublishIntegration {
|
|
7337
|
+
/**
|
|
7338
|
+
* Unique name of the data source that has been configured on the API.
|
|
7339
|
+
*/
|
|
7340
|
+
dataSourceName: pulumi.Input<string>;
|
|
7341
|
+
/**
|
|
7342
|
+
* Configuration for a Lambda data source. See Lambda Config below.
|
|
7343
|
+
*/
|
|
7344
|
+
lambdaConfig?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigsOnPublishIntegrationLambdaConfig>;
|
|
7345
|
+
}
|
|
7346
|
+
interface ChannelNamespaceHandlerConfigsOnPublishIntegrationLambdaConfig {
|
|
7347
|
+
/**
|
|
7348
|
+
* Invocation type for a Lambda data source. Valid values: `REQUEST_RESPONSE`, `EVENT`.
|
|
7349
|
+
*/
|
|
7350
|
+
invokeType?: pulumi.Input<string>;
|
|
7351
|
+
}
|
|
7352
|
+
interface ChannelNamespaceHandlerConfigsOnSubscribe {
|
|
7353
|
+
/**
|
|
7354
|
+
* Behavior for the handler. Valid values: `CODE`, `DIRECT`.
|
|
7355
|
+
*/
|
|
7356
|
+
behavior: pulumi.Input<string>;
|
|
7357
|
+
/**
|
|
7358
|
+
* Integration data source configuration for the handler. See Integration below.
|
|
7359
|
+
*/
|
|
7360
|
+
integration?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigsOnSubscribeIntegration>;
|
|
7361
|
+
}
|
|
7362
|
+
interface ChannelNamespaceHandlerConfigsOnSubscribeIntegration {
|
|
7363
|
+
/**
|
|
7364
|
+
* Unique name of the data source that has been configured on the API.
|
|
7365
|
+
*/
|
|
7366
|
+
dataSourceName: pulumi.Input<string>;
|
|
7367
|
+
/**
|
|
7368
|
+
* Configuration for a Lambda data source. See Lambda Config below.
|
|
7369
|
+
*/
|
|
7370
|
+
lambdaConfig?: pulumi.Input<inputs.appsync.ChannelNamespaceHandlerConfigsOnSubscribeIntegrationLambdaConfig>;
|
|
7371
|
+
}
|
|
7372
|
+
interface ChannelNamespaceHandlerConfigsOnSubscribeIntegrationLambdaConfig {
|
|
7373
|
+
/**
|
|
7374
|
+
* Invocation type for a Lambda data source. Valid values: `REQUEST_RESPONSE`, `EVENT`.
|
|
7375
|
+
*/
|
|
7376
|
+
invokeType?: pulumi.Input<string>;
|
|
7377
|
+
}
|
|
7378
|
+
interface ChannelNamespacePublishAuthMode {
|
|
7379
|
+
/**
|
|
7380
|
+
* Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
|
|
7381
|
+
*/
|
|
7382
|
+
authType: pulumi.Input<string>;
|
|
7383
|
+
}
|
|
7384
|
+
interface ChannelNamespaceSubscribeAuthMode {
|
|
7385
|
+
/**
|
|
7386
|
+
* Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
|
|
7387
|
+
*/
|
|
7388
|
+
authType: pulumi.Input<string>;
|
|
7389
|
+
}
|
|
7202
7390
|
interface DataSourceDynamodbConfig {
|
|
7203
7391
|
/**
|
|
7204
7392
|
* The DeltaSyncConfig for a versioned data source. See `deltaSyncConfig` Block for details.
|
|
@@ -16938,7 +17126,7 @@ export declare namespace cognito {
|
|
|
16938
17126
|
/**
|
|
16939
17127
|
* The notify configuration used to construct email notifications. See details below.
|
|
16940
17128
|
*/
|
|
16941
|
-
notifyConfiguration
|
|
17129
|
+
notifyConfiguration?: pulumi.Input<inputs.cognito.RiskConfigurationAccountTakeoverRiskConfigurationNotifyConfiguration>;
|
|
16942
17130
|
}
|
|
16943
17131
|
interface RiskConfigurationAccountTakeoverRiskConfigurationActions {
|
|
16944
17132
|
/**
|
|
@@ -21784,6 +21972,10 @@ export declare namespace dynamodb {
|
|
|
21784
21972
|
* Whether this global table will be using `STRONG` consistency mode or `EVENTUAL` consistency mode. Default value is `EVENTUAL`.
|
|
21785
21973
|
*/
|
|
21786
21974
|
consistencyMode?: pulumi.Input<string>;
|
|
21975
|
+
/**
|
|
21976
|
+
* Whether deletion protection is enabled (true) or disabled (false) on the replica. Default is `false`.
|
|
21977
|
+
*/
|
|
21978
|
+
deletionProtectionEnabled?: pulumi.Input<boolean>;
|
|
21787
21979
|
/**
|
|
21788
21980
|
* ARN of the CMK that should be used for the AWS KMS encryption.
|
|
21789
21981
|
* This argument should only be used if the key is different from the default KMS-managed DynamoDB key, `alias/aws/dynamodb`.
|
|
@@ -57875,7 +58067,7 @@ export declare namespace mq {
|
|
|
57875
58067
|
export declare namespace msk {
|
|
57876
58068
|
interface ClusterBrokerNodeGroupInfo {
|
|
57877
58069
|
/**
|
|
57878
|
-
* The distribution of broker nodes across availability zones ([documentation](https://docs.aws.amazon.com/msk/1.0/apireference/clusters.html#clusters-model-brokerazdistribution)). Currently the only valid value is `DEFAULT`.
|
|
58070
|
+
* The distribution of broker nodes across availability zones ([documentation](https://docs.aws.amazon.com/msk/1.0/apireference/clusters.html#clusters-model-brokerazdistribution)). Currently, the only valid value is `DEFAULT`.
|
|
57879
58071
|
*/
|
|
57880
58072
|
azDistribution?: pulumi.Input<string>;
|
|
57881
58073
|
/**
|
|
@@ -57883,7 +58075,7 @@ export declare namespace msk {
|
|
|
57883
58075
|
*/
|
|
57884
58076
|
clientSubnets: pulumi.Input<pulumi.Input<string>[]>;
|
|
57885
58077
|
/**
|
|
57886
|
-
* Information about the cluster access configuration. See below. For security reasons, you can't turn on public access while creating an MSK cluster. However, you can update an existing cluster to make it publicly accessible. You can also create a new cluster and then update it to make it publicly accessible ([documentation](https://docs.aws.amazon.com/msk/latest/developerguide/public-access.html)).
|
|
58078
|
+
* Information about the cluster access configuration. See brokerNodeGroupInfo connectivity_info Argument Reference below. For security reasons, you can't turn on public access while creating an MSK cluster. However, you can update an existing cluster to make it publicly accessible. You can also create a new cluster and then update it to make it publicly accessible ([documentation](https://docs.aws.amazon.com/msk/latest/developerguide/public-access.html)).
|
|
57887
58079
|
*/
|
|
57888
58080
|
connectivityInfo?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfo>;
|
|
57889
58081
|
/**
|
|
@@ -57895,17 +58087,17 @@ export declare namespace msk {
|
|
|
57895
58087
|
*/
|
|
57896
58088
|
securityGroups: pulumi.Input<pulumi.Input<string>[]>;
|
|
57897
58089
|
/**
|
|
57898
|
-
* A block that contains information about storage volumes attached to MSK broker nodes. See below.
|
|
58090
|
+
* A block that contains information about storage volumes attached to MSK broker nodes. See brokerNodeGroupInfo storage_info Argument Reference below.
|
|
57899
58091
|
*/
|
|
57900
58092
|
storageInfo?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoStorageInfo>;
|
|
57901
58093
|
}
|
|
57902
58094
|
interface ClusterBrokerNodeGroupInfoConnectivityInfo {
|
|
57903
58095
|
/**
|
|
57904
|
-
* Access control settings for brokers. See below.
|
|
58096
|
+
* Access control settings for brokers. See connectivityInfo public_access Argument Reference below.
|
|
57905
58097
|
*/
|
|
57906
58098
|
publicAccess?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoPublicAccess>;
|
|
57907
58099
|
/**
|
|
57908
|
-
* VPC connectivity access control for brokers. See below.
|
|
58100
|
+
* VPC connectivity access control for brokers. See connectivityInfo vpc_connectivity Argument Reference below.
|
|
57909
58101
|
*/
|
|
57910
58102
|
vpcConnectivity?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity>;
|
|
57911
58103
|
}
|
|
@@ -57917,17 +58109,17 @@ export declare namespace msk {
|
|
|
57917
58109
|
}
|
|
57918
58110
|
interface ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity {
|
|
57919
58111
|
/**
|
|
57920
|
-
* Configuration block for specifying a client authentication. See below.
|
|
58112
|
+
* Configuration block for specifying a client authentication. See clientAuthentication Argument Reference below.
|
|
57921
58113
|
*/
|
|
57922
58114
|
clientAuthentication?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthentication>;
|
|
57923
58115
|
}
|
|
57924
58116
|
interface ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthentication {
|
|
57925
58117
|
/**
|
|
57926
|
-
* Configuration block for specifying SASL client authentication. See below.
|
|
58118
|
+
* Configuration block for specifying SASL client authentication. See clientAuthentication sasl Argument Reference below.
|
|
57927
58119
|
*/
|
|
57928
58120
|
sasl?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthenticationSasl>;
|
|
57929
58121
|
/**
|
|
57930
|
-
* Configuration block for specifying TLS client authentication. See below.
|
|
58122
|
+
* Configuration block for specifying TLS client authentication. See clientAuthentication tls Argument Reference below.
|
|
57931
58123
|
*/
|
|
57932
58124
|
tls?: pulumi.Input<boolean>;
|
|
57933
58125
|
}
|
|
@@ -57937,13 +58129,13 @@ export declare namespace msk {
|
|
|
57937
58129
|
}
|
|
57938
58130
|
interface ClusterBrokerNodeGroupInfoStorageInfo {
|
|
57939
58131
|
/**
|
|
57940
|
-
* A block that contains EBS volume information. See below.
|
|
58132
|
+
* A block that contains EBS volume information. See storageInfo ebs_storage_info Argument Reference below.
|
|
57941
58133
|
*/
|
|
57942
58134
|
ebsStorageInfo?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo>;
|
|
57943
58135
|
}
|
|
57944
58136
|
interface ClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo {
|
|
57945
58137
|
/**
|
|
57946
|
-
* A block that contains EBS volume provisioned throughput information. To provision storage throughput, you must choose broker type kafka.m5.4xlarge or larger. See below.
|
|
58138
|
+
* A block that contains EBS volume provisioned throughput information. To provision storage throughput, you must choose broker type kafka.m5.4xlarge or larger. See ebsStorageInfo provisioned_throughput Argument Reference below.
|
|
57947
58139
|
*/
|
|
57948
58140
|
provisionedThroughput?: pulumi.Input<inputs.msk.ClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfoProvisionedThroughput>;
|
|
57949
58141
|
/**
|
|
@@ -57960,11 +58152,11 @@ export declare namespace msk {
|
|
|
57960
58152
|
}
|
|
57961
58153
|
interface ClusterClientAuthentication {
|
|
57962
58154
|
/**
|
|
57963
|
-
* Configuration block for specifying SASL client authentication. See below.
|
|
58155
|
+
* Configuration block for specifying SASL client authentication. See clientAuthentication sasl Argument Reference below.
|
|
57964
58156
|
*/
|
|
57965
58157
|
sasl?: pulumi.Input<inputs.msk.ClusterClientAuthenticationSasl>;
|
|
57966
58158
|
/**
|
|
57967
|
-
* Configuration block for specifying TLS client authentication. See below.
|
|
58159
|
+
* Configuration block for specifying TLS client authentication. See clientAuthentication tls Argument Reference below.
|
|
57968
58160
|
*/
|
|
57969
58161
|
tls?: pulumi.Input<inputs.msk.ClusterClientAuthenticationTls>;
|
|
57970
58162
|
/**
|
|
@@ -57998,7 +58190,7 @@ export declare namespace msk {
|
|
|
57998
58190
|
*/
|
|
57999
58191
|
encryptionAtRestKmsKeyArn?: pulumi.Input<string>;
|
|
58000
58192
|
/**
|
|
58001
|
-
* Configuration block to specify encryption in transit. See below.
|
|
58193
|
+
* Configuration block to specify encryption in transit. See encryptionInfo encryption_in_transit Argument Reference below.
|
|
58002
58194
|
*/
|
|
58003
58195
|
encryptionInTransit?: pulumi.Input<inputs.msk.ClusterEncryptionInfoEncryptionInTransit>;
|
|
58004
58196
|
}
|
|
@@ -58014,13 +58206,22 @@ export declare namespace msk {
|
|
|
58014
58206
|
}
|
|
58015
58207
|
interface ClusterLoggingInfo {
|
|
58016
58208
|
/**
|
|
58017
|
-
* Configuration block for Broker Logs settings for logging info. See below.
|
|
58209
|
+
* Configuration block for Broker Logs settings for logging info. See loggingInfo broker_logs Argument Reference below.
|
|
58018
58210
|
*/
|
|
58019
58211
|
brokerLogs: pulumi.Input<inputs.msk.ClusterLoggingInfoBrokerLogs>;
|
|
58020
58212
|
}
|
|
58021
58213
|
interface ClusterLoggingInfoBrokerLogs {
|
|
58214
|
+
/**
|
|
58215
|
+
* Configuration block for Cloudwatch Logs settings. See loggingInfo broker_logs cloudwatchLogs Argument Reference below.
|
|
58216
|
+
*/
|
|
58022
58217
|
cloudwatchLogs?: pulumi.Input<inputs.msk.ClusterLoggingInfoBrokerLogsCloudwatchLogs>;
|
|
58218
|
+
/**
|
|
58219
|
+
* Configuration block for Kinesis Data Firehose settings. See loggingInfo broker_logs firehose Argument Reference below.
|
|
58220
|
+
*/
|
|
58023
58221
|
firehose?: pulumi.Input<inputs.msk.ClusterLoggingInfoBrokerLogsFirehose>;
|
|
58222
|
+
/**
|
|
58223
|
+
* Configuration block for S3 settings. See loggingInfo broker_logs s3 Argument Reference below.
|
|
58224
|
+
*/
|
|
58024
58225
|
s3?: pulumi.Input<inputs.msk.ClusterLoggingInfoBrokerLogsS3>;
|
|
58025
58226
|
}
|
|
58026
58227
|
interface ClusterLoggingInfoBrokerLogsCloudwatchLogs {
|
|
@@ -58050,17 +58251,17 @@ export declare namespace msk {
|
|
|
58050
58251
|
}
|
|
58051
58252
|
interface ClusterOpenMonitoring {
|
|
58052
58253
|
/**
|
|
58053
|
-
* Configuration block for Prometheus settings for open monitoring. See below.
|
|
58254
|
+
* Configuration block for Prometheus settings for open monitoring. See openMonitoring prometheus Argument Reference below.
|
|
58054
58255
|
*/
|
|
58055
58256
|
prometheus: pulumi.Input<inputs.msk.ClusterOpenMonitoringPrometheus>;
|
|
58056
58257
|
}
|
|
58057
58258
|
interface ClusterOpenMonitoringPrometheus {
|
|
58058
58259
|
/**
|
|
58059
|
-
* Configuration block for JMX Exporter. See below.
|
|
58260
|
+
* Configuration block for JMX Exporter. See openMonitoring prometheus jmxExporter Argument Reference below.
|
|
58060
58261
|
*/
|
|
58061
58262
|
jmxExporter?: pulumi.Input<inputs.msk.ClusterOpenMonitoringPrometheusJmxExporter>;
|
|
58062
58263
|
/**
|
|
58063
|
-
* Configuration block for Node Exporter. See below.
|
|
58264
|
+
* Configuration block for Node Exporter. See openMonitoring prometheus nodeExporter Argument Reference below.
|
|
58064
58265
|
*/
|
|
58065
58266
|
nodeExporter?: pulumi.Input<inputs.msk.ClusterOpenMonitoringPrometheusNodeExporter>;
|
|
58066
58267
|
}
|
package/types/input.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA6llEjF,IAAiB,GAAG,CAwcnB;AAxcD,WAAiB,GAAG;IAyXhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAuEL,CAAC,EAxcgB,GAAG,GAAH,WAAG,KAAH,WAAG,QAwcnB"}
|