@pulumi/aws 7.5.0-alpha.1755544038 → 7.5.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/types/output.d.ts CHANGED
@@ -7122,6 +7122,194 @@ export declare namespace appstream {
7122
7122
  }
7123
7123
  }
7124
7124
  export declare namespace appsync {
7125
+ interface ApiEventConfig {
7126
+ /**
7127
+ * List of authentication providers. See Auth Providers below.
7128
+ */
7129
+ authProviders?: outputs.appsync.ApiEventConfigAuthProvider[];
7130
+ /**
7131
+ * List of authentication modes for connections. See Auth Modes below.
7132
+ */
7133
+ connectionAuthModes?: outputs.appsync.ApiEventConfigConnectionAuthMode[];
7134
+ /**
7135
+ * List of default authentication modes for publishing. See Auth Modes below.
7136
+ */
7137
+ defaultPublishAuthModes?: outputs.appsync.ApiEventConfigDefaultPublishAuthMode[];
7138
+ /**
7139
+ * List of default authentication modes for subscribing. See Auth Modes below.
7140
+ */
7141
+ defaultSubscribeAuthModes?: outputs.appsync.ApiEventConfigDefaultSubscribeAuthMode[];
7142
+ /**
7143
+ * Logging configuration. See Log Config below.
7144
+ */
7145
+ logConfig?: outputs.appsync.ApiEventConfigLogConfig;
7146
+ }
7147
+ interface ApiEventConfigAuthProvider {
7148
+ /**
7149
+ * Type of authentication provider. Valid values: `AMAZON_COGNITO_USER_POOLS`, `AWS_LAMBDA`, `OPENID_CONNECT`, `API_KEY`.
7150
+ */
7151
+ authType: string;
7152
+ /**
7153
+ * Configuration for Cognito user pool authentication. Required when `authType` is `AMAZON_COGNITO_USER_POOLS`. See Cognito Config below.
7154
+ */
7155
+ cognitoConfig?: outputs.appsync.ApiEventConfigAuthProviderCognitoConfig;
7156
+ /**
7157
+ * Configuration for Lambda authorization. Required when `authType` is `AWS_LAMBDA`. See Lambda Authorizer Config below.
7158
+ */
7159
+ lambdaAuthorizerConfig?: outputs.appsync.ApiEventConfigAuthProviderLambdaAuthorizerConfig;
7160
+ /**
7161
+ * Configuration for OpenID Connect. Required when `authType` is `OPENID_CONNECT`. See OpenID Connect Config below.
7162
+ */
7163
+ openidConnectConfig?: outputs.appsync.ApiEventConfigAuthProviderOpenidConnectConfig;
7164
+ }
7165
+ interface ApiEventConfigAuthProviderCognitoConfig {
7166
+ /**
7167
+ * Regular expression for matching the client ID.
7168
+ */
7169
+ appIdClientRegex?: string;
7170
+ /**
7171
+ * AWS region where the user pool is located.
7172
+ */
7173
+ awsRegion: string;
7174
+ /**
7175
+ * ID of the Cognito user pool.
7176
+ */
7177
+ userPoolId: string;
7178
+ }
7179
+ interface ApiEventConfigAuthProviderLambdaAuthorizerConfig {
7180
+ /**
7181
+ * TTL in seconds for the authorization result cache.
7182
+ */
7183
+ authorizerResultTtlInSeconds: number;
7184
+ /**
7185
+ * URI of the Lambda function for authorization.
7186
+ */
7187
+ authorizerUri: string;
7188
+ /**
7189
+ * Regular expression for identity validation.
7190
+ */
7191
+ identityValidationExpression?: string;
7192
+ }
7193
+ interface ApiEventConfigAuthProviderOpenidConnectConfig {
7194
+ /**
7195
+ * TTL in seconds for the authentication token.
7196
+ */
7197
+ authTtl: number;
7198
+ /**
7199
+ * Client ID for the OpenID Connect provider.
7200
+ */
7201
+ clientId?: string;
7202
+ /**
7203
+ * TTL in seconds for the issued at time.
7204
+ */
7205
+ iatTtl: number;
7206
+ /**
7207
+ * Issuer URL for the OpenID Connect provider.
7208
+ */
7209
+ issuer: string;
7210
+ }
7211
+ interface ApiEventConfigConnectionAuthMode {
7212
+ /**
7213
+ * Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
7214
+ */
7215
+ authType: string;
7216
+ }
7217
+ interface ApiEventConfigDefaultPublishAuthMode {
7218
+ /**
7219
+ * Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
7220
+ */
7221
+ authType: string;
7222
+ }
7223
+ interface ApiEventConfigDefaultSubscribeAuthMode {
7224
+ /**
7225
+ * Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
7226
+ */
7227
+ authType: string;
7228
+ }
7229
+ interface ApiEventConfigLogConfig {
7230
+ /**
7231
+ * ARN of the IAM role for CloudWatch logs.
7232
+ */
7233
+ cloudwatchLogsRoleArn: string;
7234
+ /**
7235
+ * Log level. Valid values: `NONE`, `ERROR`, `ALL`, `INFO`, `DEBUG`.
7236
+ */
7237
+ logLevel: string;
7238
+ }
7239
+ interface ChannelNamespaceHandlerConfigs {
7240
+ /**
7241
+ * Handler configuration. See Handler Config below.
7242
+ */
7243
+ onPublish?: outputs.appsync.ChannelNamespaceHandlerConfigsOnPublish;
7244
+ /**
7245
+ * Handler configuration. See Handler Config below.
7246
+ */
7247
+ onSubscribe?: outputs.appsync.ChannelNamespaceHandlerConfigsOnSubscribe;
7248
+ }
7249
+ interface ChannelNamespaceHandlerConfigsOnPublish {
7250
+ /**
7251
+ * Behavior for the handler. Valid values: `CODE`, `DIRECT`.
7252
+ */
7253
+ behavior: string;
7254
+ /**
7255
+ * Integration data source configuration for the handler. See Integration below.
7256
+ */
7257
+ integration?: outputs.appsync.ChannelNamespaceHandlerConfigsOnPublishIntegration;
7258
+ }
7259
+ interface ChannelNamespaceHandlerConfigsOnPublishIntegration {
7260
+ /**
7261
+ * Unique name of the data source that has been configured on the API.
7262
+ */
7263
+ dataSourceName: string;
7264
+ /**
7265
+ * Configuration for a Lambda data source. See Lambda Config below.
7266
+ */
7267
+ lambdaConfig?: outputs.appsync.ChannelNamespaceHandlerConfigsOnPublishIntegrationLambdaConfig;
7268
+ }
7269
+ interface ChannelNamespaceHandlerConfigsOnPublishIntegrationLambdaConfig {
7270
+ /**
7271
+ * Invocation type for a Lambda data source. Valid values: `REQUEST_RESPONSE`, `EVENT`.
7272
+ */
7273
+ invokeType?: string;
7274
+ }
7275
+ interface ChannelNamespaceHandlerConfigsOnSubscribe {
7276
+ /**
7277
+ * Behavior for the handler. Valid values: `CODE`, `DIRECT`.
7278
+ */
7279
+ behavior: string;
7280
+ /**
7281
+ * Integration data source configuration for the handler. See Integration below.
7282
+ */
7283
+ integration?: outputs.appsync.ChannelNamespaceHandlerConfigsOnSubscribeIntegration;
7284
+ }
7285
+ interface ChannelNamespaceHandlerConfigsOnSubscribeIntegration {
7286
+ /**
7287
+ * Unique name of the data source that has been configured on the API.
7288
+ */
7289
+ dataSourceName: string;
7290
+ /**
7291
+ * Configuration for a Lambda data source. See Lambda Config below.
7292
+ */
7293
+ lambdaConfig?: outputs.appsync.ChannelNamespaceHandlerConfigsOnSubscribeIntegrationLambdaConfig;
7294
+ }
7295
+ interface ChannelNamespaceHandlerConfigsOnSubscribeIntegrationLambdaConfig {
7296
+ /**
7297
+ * Invocation type for a Lambda data source. Valid values: `REQUEST_RESPONSE`, `EVENT`.
7298
+ */
7299
+ invokeType?: string;
7300
+ }
7301
+ interface ChannelNamespacePublishAuthMode {
7302
+ /**
7303
+ * Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
7304
+ */
7305
+ authType: string;
7306
+ }
7307
+ interface ChannelNamespaceSubscribeAuthMode {
7308
+ /**
7309
+ * Type of authentication. Valid values: `API_KEY`, `AWS_IAM`, `AMAZON_COGNITO_USER_POOLS`, `OPENID_CONNECT`, `AWS_LAMBDA`.
7310
+ */
7311
+ authType: string;
7312
+ }
7125
7313
  interface DataSourceDynamodbConfig {
7126
7314
  /**
7127
7315
  * The DeltaSyncConfig for a versioned data source. See `deltaSyncConfig` Block for details.
@@ -18881,7 +19069,7 @@ export declare namespace cognito {
18881
19069
  /**
18882
19070
  * The notify configuration used to construct email notifications. See details below.
18883
19071
  */
18884
- notifyConfiguration: outputs.cognito.RiskConfigurationAccountTakeoverRiskConfigurationNotifyConfiguration;
19072
+ notifyConfiguration?: outputs.cognito.RiskConfigurationAccountTakeoverRiskConfigurationNotifyConfiguration;
18885
19073
  }
18886
19074
  interface RiskConfigurationAccountTakeoverRiskConfigurationActions {
18887
19075
  /**
@@ -26361,6 +26549,10 @@ export declare namespace dynamodb {
26361
26549
  * Whether this global table will be using `STRONG` consistency mode or `EVENTUAL` consistency mode. Default value is `EVENTUAL`.
26362
26550
  */
26363
26551
  consistencyMode?: string;
26552
+ /**
26553
+ * Whether deletion protection is enabled (true) or disabled (false) on the replica. Default is `false`.
26554
+ */
26555
+ deletionProtectionEnabled: boolean;
26364
26556
  /**
26365
26557
  * ARN of the CMK that should be used for the AWS KMS encryption.
26366
26558
  * This argument should only be used if the key is different from the default KMS-managed DynamoDB key, `alias/aws/dynamodb`.
@@ -65496,7 +65688,7 @@ export declare namespace mq {
65496
65688
  export declare namespace msk {
65497
65689
  interface ClusterBrokerNodeGroupInfo {
65498
65690
  /**
65499
- * 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`.
65691
+ * 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`.
65500
65692
  */
65501
65693
  azDistribution?: string;
65502
65694
  /**
@@ -65504,7 +65696,7 @@ export declare namespace msk {
65504
65696
  */
65505
65697
  clientSubnets: string[];
65506
65698
  /**
65507
- * 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)).
65699
+ * 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)).
65508
65700
  */
65509
65701
  connectivityInfo: outputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfo;
65510
65702
  /**
@@ -65516,17 +65708,17 @@ export declare namespace msk {
65516
65708
  */
65517
65709
  securityGroups: string[];
65518
65710
  /**
65519
- * A block that contains information about storage volumes attached to MSK broker nodes. See below.
65711
+ * A block that contains information about storage volumes attached to MSK broker nodes. See brokerNodeGroupInfo storage_info Argument Reference below.
65520
65712
  */
65521
65713
  storageInfo: outputs.msk.ClusterBrokerNodeGroupInfoStorageInfo;
65522
65714
  }
65523
65715
  interface ClusterBrokerNodeGroupInfoConnectivityInfo {
65524
65716
  /**
65525
- * Access control settings for brokers. See below.
65717
+ * Access control settings for brokers. See connectivityInfo public_access Argument Reference below.
65526
65718
  */
65527
65719
  publicAccess: outputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoPublicAccess;
65528
65720
  /**
65529
- * VPC connectivity access control for brokers. See below.
65721
+ * VPC connectivity access control for brokers. See connectivityInfo vpc_connectivity Argument Reference below.
65530
65722
  */
65531
65723
  vpcConnectivity: outputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity;
65532
65724
  }
@@ -65538,17 +65730,17 @@ export declare namespace msk {
65538
65730
  }
65539
65731
  interface ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivity {
65540
65732
  /**
65541
- * Configuration block for specifying a client authentication. See below.
65733
+ * Configuration block for specifying a client authentication. See clientAuthentication Argument Reference below.
65542
65734
  */
65543
65735
  clientAuthentication: outputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthentication;
65544
65736
  }
65545
65737
  interface ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthentication {
65546
65738
  /**
65547
- * Configuration block for specifying SASL client authentication. See below.
65739
+ * Configuration block for specifying SASL client authentication. See clientAuthentication sasl Argument Reference below.
65548
65740
  */
65549
65741
  sasl: outputs.msk.ClusterBrokerNodeGroupInfoConnectivityInfoVpcConnectivityClientAuthenticationSasl;
65550
65742
  /**
65551
- * Configuration block for specifying TLS client authentication. See below.
65743
+ * Configuration block for specifying TLS client authentication. See clientAuthentication tls Argument Reference below.
65552
65744
  */
65553
65745
  tls: boolean;
65554
65746
  }
@@ -65558,13 +65750,13 @@ export declare namespace msk {
65558
65750
  }
65559
65751
  interface ClusterBrokerNodeGroupInfoStorageInfo {
65560
65752
  /**
65561
- * A block that contains EBS volume information. See below.
65753
+ * A block that contains EBS volume information. See storageInfo ebs_storage_info Argument Reference below.
65562
65754
  */
65563
65755
  ebsStorageInfo?: outputs.msk.ClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo;
65564
65756
  }
65565
65757
  interface ClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfo {
65566
65758
  /**
65567
- * 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.
65759
+ * 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.
65568
65760
  */
65569
65761
  provisionedThroughput?: outputs.msk.ClusterBrokerNodeGroupInfoStorageInfoEbsStorageInfoProvisionedThroughput;
65570
65762
  /**
@@ -65581,11 +65773,11 @@ export declare namespace msk {
65581
65773
  }
65582
65774
  interface ClusterClientAuthentication {
65583
65775
  /**
65584
- * Configuration block for specifying SASL client authentication. See below.
65776
+ * Configuration block for specifying SASL client authentication. See clientAuthentication sasl Argument Reference below.
65585
65777
  */
65586
65778
  sasl?: outputs.msk.ClusterClientAuthenticationSasl;
65587
65779
  /**
65588
- * Configuration block for specifying TLS client authentication. See below.
65780
+ * Configuration block for specifying TLS client authentication. See clientAuthentication tls Argument Reference below.
65589
65781
  */
65590
65782
  tls?: outputs.msk.ClusterClientAuthenticationTls;
65591
65783
  /**
@@ -65619,7 +65811,7 @@ export declare namespace msk {
65619
65811
  */
65620
65812
  encryptionAtRestKmsKeyArn: string;
65621
65813
  /**
65622
- * Configuration block to specify encryption in transit. See below.
65814
+ * Configuration block to specify encryption in transit. See encryptionInfo encryption_in_transit Argument Reference below.
65623
65815
  */
65624
65816
  encryptionInTransit?: outputs.msk.ClusterEncryptionInfoEncryptionInTransit;
65625
65817
  }
@@ -65635,13 +65827,22 @@ export declare namespace msk {
65635
65827
  }
65636
65828
  interface ClusterLoggingInfo {
65637
65829
  /**
65638
- * Configuration block for Broker Logs settings for logging info. See below.
65830
+ * Configuration block for Broker Logs settings for logging info. See loggingInfo broker_logs Argument Reference below.
65639
65831
  */
65640
65832
  brokerLogs: outputs.msk.ClusterLoggingInfoBrokerLogs;
65641
65833
  }
65642
65834
  interface ClusterLoggingInfoBrokerLogs {
65835
+ /**
65836
+ * Configuration block for Cloudwatch Logs settings. See loggingInfo broker_logs cloudwatchLogs Argument Reference below.
65837
+ */
65643
65838
  cloudwatchLogs?: outputs.msk.ClusterLoggingInfoBrokerLogsCloudwatchLogs;
65839
+ /**
65840
+ * Configuration block for Kinesis Data Firehose settings. See loggingInfo broker_logs firehose Argument Reference below.
65841
+ */
65644
65842
  firehose?: outputs.msk.ClusterLoggingInfoBrokerLogsFirehose;
65843
+ /**
65844
+ * Configuration block for S3 settings. See loggingInfo broker_logs s3 Argument Reference below.
65845
+ */
65645
65846
  s3?: outputs.msk.ClusterLoggingInfoBrokerLogsS3;
65646
65847
  }
65647
65848
  interface ClusterLoggingInfoBrokerLogsCloudwatchLogs {
@@ -65671,17 +65872,17 @@ export declare namespace msk {
65671
65872
  }
65672
65873
  interface ClusterOpenMonitoring {
65673
65874
  /**
65674
- * Configuration block for Prometheus settings for open monitoring. See below.
65875
+ * Configuration block for Prometheus settings for open monitoring. See openMonitoring prometheus Argument Reference below.
65675
65876
  */
65676
65877
  prometheus: outputs.msk.ClusterOpenMonitoringPrometheus;
65677
65878
  }
65678
65879
  interface ClusterOpenMonitoringPrometheus {
65679
65880
  /**
65680
- * Configuration block for JMX Exporter. See below.
65881
+ * Configuration block for JMX Exporter. See openMonitoring prometheus jmxExporter Argument Reference below.
65681
65882
  */
65682
65883
  jmxExporter?: outputs.msk.ClusterOpenMonitoringPrometheusJmxExporter;
65683
65884
  /**
65684
- * Configuration block for Node Exporter. See below.
65885
+ * Configuration block for Node Exporter. See openMonitoring prometheus nodeExporter Argument Reference below.
65685
65886
  */
65686
65887
  nodeExporter?: outputs.msk.ClusterOpenMonitoringPrometheusNodeExporter;
65687
65888
  }
@@ -66623,9 +66824,13 @@ export declare namespace networkfirewall {
66623
66824
  definitions: string[];
66624
66825
  }
66625
66826
  interface GetFirewallPolicyFirewallPolicyStatefulEngineOption {
66827
+ flowTimeouts: outputs.networkfirewall.GetFirewallPolicyFirewallPolicyStatefulEngineOptionFlowTimeout[];
66626
66828
  ruleOrder: string;
66627
66829
  streamExceptionPolicy: string;
66628
66830
  }
66831
+ interface GetFirewallPolicyFirewallPolicyStatefulEngineOptionFlowTimeout {
66832
+ tcpIdleTimeoutSeconds: number;
66833
+ }
66629
66834
  interface GetFirewallPolicyFirewallPolicyStatefulRuleGroupReference {
66630
66835
  deepThreatInspection: string;
66631
66836
  overrides?: outputs.networkfirewall.GetFirewallPolicyFirewallPolicyStatefulRuleGroupReferenceOverride[];
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAy82EjF,IAAiB,GAAG,CA4cnB;AA5cD,WAAiB,GAAG;IA4XhB;;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;AAwEL,CAAC,EA5cgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA4cnB"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAyq3EjF,IAAiB,GAAG,CA4cnB;AA5cD,WAAiB,GAAG;IA4XhB;;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;AAwEL,CAAC,EA5cgB,GAAG,GAAH,WAAG,KAAH,WAAG,QA4cnB"}