@pulumi/aws 4.20.0 → 4.21.1

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.
Files changed (70) hide show
  1. package/apprunner/service.d.ts +1 -1
  2. package/apprunner/service.js +1 -1
  3. package/autoscaling/group.d.ts +6 -6
  4. package/cfg/deliveryChannel.d.ts +12 -0
  5. package/cfg/deliveryChannel.js +2 -0
  6. package/cfg/deliveryChannel.js.map +1 -1
  7. package/chime/index.d.ts +1 -0
  8. package/chime/index.js +5 -0
  9. package/chime/index.js.map +1 -1
  10. package/chime/voiceConnectorLogging.d.ts +84 -0
  11. package/chime/voiceConnectorLogging.js +80 -0
  12. package/chime/voiceConnectorLogging.js.map +1 -0
  13. package/cloudfront/keyGroup.d.ts +8 -0
  14. package/cloudfront/keyGroup.js +8 -0
  15. package/cloudfront/keyGroup.js.map +1 -1
  16. package/cloudtrail/trail.d.ts +147 -10
  17. package/cloudtrail/trail.js +131 -4
  18. package/cloudtrail/trail.js.map +1 -1
  19. package/dms/replicationInstance.d.ts +8 -0
  20. package/dms/replicationInstance.js +8 -0
  21. package/dms/replicationInstance.js.map +1 -1
  22. package/ec2clientvpn/endpoint.d.ts +12 -0
  23. package/ec2clientvpn/endpoint.js +2 -0
  24. package/ec2clientvpn/endpoint.js.map +1 -1
  25. package/efs/fileSystemPolicy.d.ts +13 -0
  26. package/efs/fileSystemPolicy.js +3 -0
  27. package/efs/fileSystemPolicy.js.map +1 -1
  28. package/eks/getClusters.d.ts +18 -0
  29. package/eks/getClusters.js +21 -0
  30. package/eks/getClusters.js.map +1 -0
  31. package/eks/getNodeGroup.d.ts +108 -0
  32. package/eks/getNodeGroup.js +37 -0
  33. package/eks/getNodeGroup.js.map +1 -0
  34. package/eks/getNodeGroups.d.ts +43 -0
  35. package/eks/getNodeGroups.js +38 -0
  36. package/eks/getNodeGroups.js.map +1 -0
  37. package/eks/index.d.ts +3 -0
  38. package/eks/index.js +3 -0
  39. package/eks/index.js.map +1 -1
  40. package/iam/role.d.ts +1 -1
  41. package/imagebuilder/infrastructureConfiguration.d.ts +1 -1
  42. package/imagebuilder/infrastructureConfiguration.js +1 -1
  43. package/lambda/function.d.ts +4 -1
  44. package/lambda/function.js +4 -1
  45. package/lambda/function.js.map +1 -1
  46. package/lambda/permission.d.ts +2 -2
  47. package/lambda/permission.js +2 -2
  48. package/networkfirewall/ruleGroup.d.ts +50 -0
  49. package/networkfirewall/ruleGroup.js +50 -0
  50. package/networkfirewall/ruleGroup.js.map +1 -1
  51. package/package.json +2 -2
  52. package/package.json.dev +1 -1
  53. package/sagemaker/endpointConfiguration.d.ts +12 -0
  54. package/sagemaker/endpointConfiguration.js +2 -0
  55. package/sagemaker/endpointConfiguration.js.map +1 -1
  56. package/storagegateway/smbFileShare.d.ts +3 -3
  57. package/transfer/access.d.ts +167 -0
  58. package/transfer/access.js +114 -0
  59. package/transfer/access.js.map +1 -0
  60. package/transfer/index.d.ts +1 -0
  61. package/transfer/index.js +5 -0
  62. package/transfer/index.js.map +1 -1
  63. package/transfer/server.d.ts +12 -0
  64. package/transfer/server.js +2 -0
  65. package/transfer/server.js.map +1 -1
  66. package/types/input.d.ts +118 -5
  67. package/types/output.d.ts +158 -5
  68. package/waf/webAcl.d.ts +2 -0
  69. package/waf/webAcl.js +2 -0
  70. package/waf/webAcl.js.map +1 -1
package/types/output.d.ts CHANGED
@@ -3990,7 +3990,7 @@ export declare namespace apprunner {
3990
3990
  */
3991
3991
  port?: string;
3992
3992
  /**
3993
- * A runtime environment type for building and running an App Runner service. Represents a programming language runtime. Valid values: `python3`, `nodejs12`.
3993
+ * A runtime environment type for building and running an App Runner service. Represents a programming language runtime. Valid values: `PYTHON_3`, `NODEJS_12`.
3994
3994
  */
3995
3995
  runtime: string;
3996
3996
  /**
@@ -6219,6 +6219,46 @@ export declare namespace cloudhsmv2 {
6219
6219
  }
6220
6220
  }
6221
6221
  export declare namespace cloudtrail {
6222
+ interface TrailAdvancedEventSelector {
6223
+ /**
6224
+ * Specifies the selector statements in an advanced event selector. Fields documented below.
6225
+ */
6226
+ fieldSelectors: outputs.cloudtrail.TrailAdvancedEventSelectorFieldSelector[];
6227
+ /**
6228
+ * Specifies the name of the advanced event selector.
6229
+ */
6230
+ name?: string;
6231
+ }
6232
+ interface TrailAdvancedEventSelectorFieldSelector {
6233
+ /**
6234
+ * A list of values that includes events that match the last few characters of the event record field specified as the value of `field`.
6235
+ */
6236
+ endsWiths?: string[];
6237
+ /**
6238
+ * A list of values that includes events that match the exact value of the event record field specified as the value of `field`. This is the only valid operator that you can use with the `readOnly`, `eventCategory`, and `resources.type` fields.
6239
+ */
6240
+ equals?: string[];
6241
+ /**
6242
+ * Specifies a field in an event record on which to filter events to be logged. You can specify only the following values: `readOnly`, `eventSource`, `eventName`, `eventCategory`, `resources.type`, `resources.ARN`.
6243
+ */
6244
+ field: string;
6245
+ /**
6246
+ * A list of values that excludes events that match the last few characters of the event record field specified as the value of `field`.
6247
+ */
6248
+ notEndsWiths?: string[];
6249
+ /**
6250
+ * A list of values that excludes events that match the exact value of the event record field specified as the value of `field`.
6251
+ */
6252
+ notEquals?: string[];
6253
+ /**
6254
+ * A list of values that excludes events that match the first few characters of the event record field specified as the value of `field`.
6255
+ */
6256
+ notStartsWiths?: string[];
6257
+ /**
6258
+ * A list of values that includes events that match the first few characters of the event record field specified as the value of `field`.
6259
+ */
6260
+ startsWiths?: string[];
6261
+ }
6222
6262
  interface TrailEventSelector {
6223
6263
  /**
6224
6264
  * Configuration block for data events. See details below.
@@ -7851,7 +7891,7 @@ export declare namespace cognito {
7851
7891
  }
7852
7892
  interface UserPoolLambdaConfigCustomEmailSender {
7853
7893
  /**
7854
- * he Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.
7894
+ * The Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.
7855
7895
  */
7856
7896
  lambdaArn: string;
7857
7897
  /**
@@ -7861,7 +7901,7 @@ export declare namespace cognito {
7861
7901
  }
7862
7902
  interface UserPoolLambdaConfigCustomSmsSender {
7863
7903
  /**
7864
- * he Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.
7904
+ * The Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.
7865
7905
  */
7866
7906
  lambdaArn: string;
7867
7907
  /**
@@ -10615,6 +10655,7 @@ export declare namespace ec2 {
10615
10655
  * Whether the metadata service is available. Can be `"enabled"` or `"disabled"`. (Default: `"enabled"`).
10616
10656
  */
10617
10657
  httpEndpoint: string;
10658
+ httpProtocolIpv6?: string;
10618
10659
  /**
10619
10660
  * The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. Can be an integer from `1` to `64`. (Default: `1`).
10620
10661
  */
@@ -11452,6 +11493,10 @@ export declare namespace ec2clientvpn {
11452
11493
  * The ARN of the IAM SAML identity provider if type is `federated-authentication`.
11453
11494
  */
11454
11495
  samlProviderArn?: string;
11496
+ /**
11497
+ * The ARN of the IAM SAML identity provider for the self service portal if type is `federated-authentication`.
11498
+ */
11499
+ selfServiceSamlProviderArn?: string;
11455
11500
  /**
11456
11501
  * The type of client authentication to be used. Specify `certificate-authentication` to use certificate-based authentication, `directory-service-authentication` to use Active Directory authentication, or `federated-authentication` to use Federated Authentication via SAML 2.0.
11457
11502
  */
@@ -12027,7 +12072,11 @@ export declare namespace efs {
12027
12072
  /**
12028
12073
  * Indicates how long it takes to transition files to the IA storage class. Valid values: `AFTER_7_DAYS`, `AFTER_14_DAYS`, `AFTER_30_DAYS`, `AFTER_60_DAYS`, or `AFTER_90_DAYS`.
12029
12074
  */
12030
- transitionToIa: string;
12075
+ transitionToIa?: string;
12076
+ /**
12077
+ * Describes the policy used to transition a file from infequent access storage to primary storage. Valid values: `AFTER_1_ACCESS`.
12078
+ */
12079
+ transitionToPrimaryStorageClass?: string;
12031
12080
  }
12032
12081
  interface FileSystemSizeInByte {
12033
12082
  /**
@@ -12223,6 +12272,46 @@ export declare namespace eks {
12223
12272
  */
12224
12273
  vpcId: string;
12225
12274
  }
12275
+ interface GetNodeGroupRemoteAccess {
12276
+ /**
12277
+ * EC2 Key Pair name that provides access for SSH communication with the worker nodes in the EKS Node Group.
12278
+ */
12279
+ ec2SshKey: string;
12280
+ /**
12281
+ * Set of EC2 Security Group IDs to allow SSH access (port 22) from on the worker nodes.
12282
+ */
12283
+ sourceSecurityGroupIds: string[];
12284
+ }
12285
+ interface GetNodeGroupResource {
12286
+ /**
12287
+ * List of objects containing information about AutoScaling Groups.
12288
+ */
12289
+ autoscalingGroups: outputs.eks.GetNodeGroupResourceAutoscalingGroup[];
12290
+ /**
12291
+ * Identifier of the remote access EC2 Security Group.
12292
+ */
12293
+ remoteAccessSecurityGroupId: string;
12294
+ }
12295
+ interface GetNodeGroupResourceAutoscalingGroup {
12296
+ /**
12297
+ * Name of the AutoScaling Group.
12298
+ */
12299
+ name: string;
12300
+ }
12301
+ interface GetNodeGroupScalingConfig {
12302
+ /**
12303
+ * Desired number of worker nodes.
12304
+ */
12305
+ desiredSize: number;
12306
+ /**
12307
+ * Maximum number of worker nodes.
12308
+ */
12309
+ maxSize: number;
12310
+ /**
12311
+ * Minimum number of worker nodes.
12312
+ */
12313
+ minSize: number;
12314
+ }
12226
12315
  interface IdentityProviderConfigOidc {
12227
12316
  /**
12228
12317
  * Client ID for the OpenID Connect identity provider.
@@ -22739,6 +22828,46 @@ export declare namespace sagemaker {
22739
22828
  */
22740
22829
  homeEfsFileSystem?: string;
22741
22830
  }
22831
+ interface EndpointConfigurationAsyncInferenceConfig {
22832
+ /**
22833
+ * Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference.
22834
+ */
22835
+ clientConfig?: outputs.sagemaker.EndpointConfigurationAsyncInferenceConfigClientConfig;
22836
+ /**
22837
+ * Specifies the configuration for asynchronous inference invocation outputs.
22838
+ */
22839
+ outputConfig: outputs.sagemaker.EndpointConfigurationAsyncInferenceConfigOutputConfig;
22840
+ }
22841
+ interface EndpointConfigurationAsyncInferenceConfigClientConfig {
22842
+ /**
22843
+ * The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, Amazon SageMaker will choose an optimal value for you.
22844
+ */
22845
+ maxConcurrentInvocationsPerInstance?: number;
22846
+ }
22847
+ interface EndpointConfigurationAsyncInferenceConfigOutputConfig {
22848
+ /**
22849
+ * The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
22850
+ */
22851
+ kmsKeyId?: string;
22852
+ /**
22853
+ * Specifies the configuration for notifications of inference results for asynchronous inference.
22854
+ */
22855
+ notificationConfig?: outputs.sagemaker.EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig;
22856
+ /**
22857
+ * The Amazon S3 location to upload inference responses to.
22858
+ */
22859
+ s3OutputPath: string;
22860
+ }
22861
+ interface EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig {
22862
+ /**
22863
+ * Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
22864
+ */
22865
+ errorTopic?: string;
22866
+ /**
22867
+ * Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.
22868
+ */
22869
+ successTopic?: string;
22870
+ }
22742
22871
  interface EndpointConfigurationDataCaptureConfig {
22743
22872
  /**
22744
22873
  * The content type headers to capture. Fields are documented below.
@@ -22761,7 +22890,7 @@ export declare namespace sagemaker {
22761
22890
  */
22762
22891
  initialSamplingPercentage: number;
22763
22892
  /**
22764
- * Amazon Resource Name (ARN) of a AWS Key Management Service key that Amazon SageMaker uses to encrypt the captured data on Amazon S3.
22893
+ * The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
22765
22894
  */
22766
22895
  kmsKeyId?: string;
22767
22896
  }
@@ -25501,6 +25630,30 @@ export declare namespace timestreamwrite {
25501
25630
  }
25502
25631
  }
25503
25632
  export declare namespace transfer {
25633
+ interface AccessHomeDirectoryMapping {
25634
+ /**
25635
+ * Represents an entry and a target.
25636
+ */
25637
+ entry: string;
25638
+ /**
25639
+ * Represents the map target.
25640
+ */
25641
+ target: string;
25642
+ }
25643
+ interface AccessPosixProfile {
25644
+ /**
25645
+ * The POSIX group ID used for all EFS operations by this user.
25646
+ */
25647
+ gid: number;
25648
+ /**
25649
+ * The secondary POSIX group IDs used for all EFS operations by this user.
25650
+ */
25651
+ secondaryGids?: number[];
25652
+ /**
25653
+ * The POSIX user ID used for all EFS operations by this user.
25654
+ */
25655
+ uid: number;
25656
+ }
25504
25657
  interface ServerEndpointDetails {
25505
25658
  /**
25506
25659
  * A list of address allocation IDs that are required to attach an Elastic IP address to your SFTP server's endpoint. This property can only be used when `endpointType` is set to `VPC`.
package/waf/webAcl.d.ts CHANGED
@@ -5,6 +5,8 @@ import { input as inputs, output as outputs } from "../types";
5
5
  *
6
6
  * ## Example Usage
7
7
  *
8
+ * This example blocks requests coming from `192.0.7.0/24` and allows everything else.
9
+ *
8
10
  * ```typescript
9
11
  * import * as pulumi from "@pulumi/pulumi";
10
12
  * import * as aws from "@pulumi/aws";
package/waf/webAcl.js CHANGED
@@ -10,6 +10,8 @@ const utilities = require("../utilities");
10
10
  *
11
11
  * ## Example Usage
12
12
  *
13
+ * This example blocks requests coming from `192.0.7.0/24` and allows everything else.
14
+ *
13
15
  * ```typescript
14
16
  * import * as pulumi from "@pulumi/pulumi";
15
17
  * import * as aws from "@pulumi/aws";
package/waf/webAcl.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"webAcl.js","sourceRoot":"","sources":["../../waf/webAcl.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"webAcl.js","sourceRoot":"","sources":["../../waf/webAcl.ts"],"names":[],"mappings":"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"}