@pulumi/aws 7.2.0-alpha.1753904096 → 7.2.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.
Files changed (38) hide show
  1. package/appsync/apiCache.d.ts +2 -2
  2. package/athena/database.d.ts +12 -0
  3. package/athena/database.js +2 -0
  4. package/athena/database.js.map +1 -1
  5. package/bedrock/guardrail.d.ts +9 -0
  6. package/bedrock/guardrail.js +8 -0
  7. package/bedrock/guardrail.js.map +1 -1
  8. package/cloudwatch/eventBus.d.ts +233 -0
  9. package/cloudwatch/eventBus.js +223 -0
  10. package/cloudwatch/eventBus.js.map +1 -1
  11. package/cloudwatch/getEventBus.d.ts +4 -0
  12. package/cloudwatch/getEventBus.js.map +1 -1
  13. package/connect/index.d.ts +3 -0
  14. package/connect/index.js +6 -1
  15. package/connect/index.js.map +1 -1
  16. package/connect/phoneNumberContactFlowAssociation.d.ts +108 -0
  17. package/connect/phoneNumberContactFlowAssociation.js +88 -0
  18. package/connect/phoneNumberContactFlowAssociation.js.map +1 -0
  19. package/ec2/index.d.ts +3 -0
  20. package/ec2/index.js +7 -2
  21. package/ec2/index.js.map +1 -1
  22. package/ec2/natGateway.d.ts +9 -7
  23. package/ec2/natGateway.js +2 -0
  24. package/ec2/natGateway.js.map +1 -1
  25. package/ec2/natGatewayEipAssociation.d.ts +112 -0
  26. package/ec2/natGatewayEipAssociation.js +90 -0
  27. package/ec2/natGatewayEipAssociation.js.map +1 -0
  28. package/package.json +2 -2
  29. package/ssm/getPatchBaseline.d.ts +4 -0
  30. package/ssm/getPatchBaseline.js.map +1 -1
  31. package/ssm/patchBaseline.d.ts +12 -0
  32. package/ssm/patchBaseline.js +2 -0
  33. package/ssm/patchBaseline.js.map +1 -1
  34. package/ssm/serviceSetting.d.ts +3 -3
  35. package/types/input.d.ts +50 -0
  36. package/types/input.js.map +1 -1
  37. package/types/output.d.ts +60 -0
  38. package/types/output.js.map +1 -1
@@ -47,7 +47,7 @@ export declare class ServiceSetting extends pulumi.CustomResource {
47
47
  */
48
48
  readonly region: pulumi.Output<string>;
49
49
  /**
50
- * ID of the service setting.
50
+ * ID of the service setting. Valid values are shown in the [AWS documentation](https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetServiceSetting.html#API_GetServiceSetting_RequestSyntax).
51
51
  */
52
52
  readonly settingId: pulumi.Output<string>;
53
53
  /**
@@ -80,7 +80,7 @@ export interface ServiceSettingState {
80
80
  */
81
81
  region?: pulumi.Input<string>;
82
82
  /**
83
- * ID of the service setting.
83
+ * ID of the service setting. Valid values are shown in the [AWS documentation](https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetServiceSetting.html#API_GetServiceSetting_RequestSyntax).
84
84
  */
85
85
  settingId?: pulumi.Input<string>;
86
86
  /**
@@ -101,7 +101,7 @@ export interface ServiceSettingArgs {
101
101
  */
102
102
  region?: pulumi.Input<string>;
103
103
  /**
104
- * ID of the service setting.
104
+ * ID of the service setting. Valid values are shown in the [AWS documentation](https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetServiceSetting.html#API_GetServiceSetting_RequestSyntax).
105
105
  */
106
106
  settingId: pulumi.Input<string>;
107
107
  /**
package/types/input.d.ts CHANGED
@@ -9303,6 +9303,10 @@ export declare namespace batch {
9303
9303
  * The AMI ID used for instances launched in the compute environment that match the image type. This setting overrides the `imageId` argument in the `computeResources` block.
9304
9304
  */
9305
9305
  imageIdOverride?: pulumi.Input<string>;
9306
+ /**
9307
+ * The Kubernetes version for the compute environment. If you don't specify a value, the latest version that AWS Batch supports is used. See [Supported Kubernetes versions](https://docs.aws.amazon.com/batch/latest/userguide/supported_kubernetes_version.html) for the list of Kubernetes versions supported by AWS Batch on Amazon EKS.
9308
+ */
9309
+ imageKubernetesVersion?: pulumi.Input<string>;
9306
9310
  /**
9307
9311
  * The image type to match with the instance type to select an AMI. If the `imageIdOverride` parameter isn't specified, then a recent [Amazon ECS-optimized Amazon Linux 2 AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#al2ami) (`ECS_AL2`) is used.
9308
9312
  */
@@ -11523,6 +11527,10 @@ export declare namespace bedrock {
11523
11527
  * See Filters Config for more information.
11524
11528
  */
11525
11529
  filtersConfigs?: pulumi.Input<pulumi.Input<inputs.bedrock.GuardrailContentPolicyConfigFiltersConfig>[]>;
11530
+ /**
11531
+ * Configuration block for the content policy tier. See Tier Config for more information.
11532
+ */
11533
+ tierConfigs?: pulumi.Input<pulumi.Input<inputs.bedrock.GuardrailContentPolicyConfigTierConfig>[]>;
11526
11534
  }
11527
11535
  interface GuardrailContentPolicyConfigFiltersConfig {
11528
11536
  /**
@@ -11538,6 +11546,12 @@ export declare namespace bedrock {
11538
11546
  */
11539
11547
  type: pulumi.Input<string>;
11540
11548
  }
11549
+ interface GuardrailContentPolicyConfigTierConfig {
11550
+ /**
11551
+ * The name of the content policy tier. Valid values include STANDARD or CLASSIC.
11552
+ */
11553
+ tierName: pulumi.Input<string>;
11554
+ }
11541
11555
  interface GuardrailContextualGroundingPolicyConfig {
11542
11556
  /**
11543
11557
  * List of contextual grounding filter configs. See Contextual Grounding Filters Config for more information.
@@ -11554,6 +11568,12 @@ export declare namespace bedrock {
11554
11568
  */
11555
11569
  type: pulumi.Input<string>;
11556
11570
  }
11571
+ interface GuardrailCrossRegionConfig {
11572
+ /**
11573
+ * Guardrail profile ARN.
11574
+ */
11575
+ guardrailProfileIdentifier: pulumi.Input<string>;
11576
+ }
11557
11577
  interface GuardrailSensitiveInformationPolicyConfig {
11558
11578
  /**
11559
11579
  * List of entities. See PII Entities Config for more information.
@@ -11607,11 +11627,21 @@ export declare namespace bedrock {
11607
11627
  update?: pulumi.Input<string>;
11608
11628
  }
11609
11629
  interface GuardrailTopicPolicyConfig {
11630
+ /**
11631
+ * Configuration block for the topic policy tier. See Tier Config for more information.
11632
+ */
11633
+ tierConfigs?: pulumi.Input<pulumi.Input<inputs.bedrock.GuardrailTopicPolicyConfigTierConfig>[]>;
11610
11634
  /**
11611
11635
  * List of topic configs in topic policy. See Topics Config for more information.
11612
11636
  */
11613
11637
  topicsConfigs?: pulumi.Input<pulumi.Input<inputs.bedrock.GuardrailTopicPolicyConfigTopicsConfig>[]>;
11614
11638
  }
11639
+ interface GuardrailTopicPolicyConfigTierConfig {
11640
+ /**
11641
+ * The name of the content policy tier. Valid values include STANDARD or CLASSIC.
11642
+ */
11643
+ tierName: pulumi.Input<string>;
11644
+ }
11615
11645
  interface GuardrailTopicPolicyConfigTopicsConfig {
11616
11646
  /**
11617
11647
  * Definition of topic in topic policy.
@@ -14008,6 +14038,16 @@ export declare namespace cloudwatch {
14008
14038
  */
14009
14039
  arn?: pulumi.Input<string>;
14010
14040
  }
14041
+ interface EventBusLogConfig {
14042
+ /**
14043
+ * Whether EventBridge include detailed event information in the records it generates. Valid values are `NONE` and `FULL`.
14044
+ */
14045
+ includeDetail?: pulumi.Input<string>;
14046
+ /**
14047
+ * Level of logging detail to include. Valid values are `OFF`, `ERROR`, `INFO`, and `TRACE`.
14048
+ */
14049
+ level?: pulumi.Input<string>;
14050
+ }
14011
14051
  interface EventConnectionAuthParameters {
14012
14052
  /**
14013
14053
  * Parameters used for API_KEY authorization. An API key to include in the header for each authentication request. A maximum of 1 are allowed. Conflicts with `basic` and `oauth`. Documented below.
@@ -24717,6 +24757,16 @@ export declare namespace ec2 {
24717
24757
  */
24718
24758
  description?: pulumi.Input<string>;
24719
24759
  }
24760
+ interface NatGatewayEipAssociationTimeouts {
24761
+ /**
24762
+ * 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).
24763
+ */
24764
+ create?: pulumi.Input<string>;
24765
+ /**
24766
+ * 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.
24767
+ */
24768
+ delete?: pulumi.Input<string>;
24769
+ }
24720
24770
  interface NetworkAclEgress {
24721
24771
  /**
24722
24772
  * The action to take.
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAslkEjF,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"}
1
+ {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA6okEjF,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"}
package/types/output.d.ts CHANGED
@@ -9705,6 +9705,10 @@ export declare namespace batch {
9705
9705
  * The AMI ID used for instances launched in the compute environment that match the image type. This setting overrides the `imageId` argument in the `computeResources` block.
9706
9706
  */
9707
9707
  imageIdOverride: string;
9708
+ /**
9709
+ * The Kubernetes version for the compute environment. If you don't specify a value, the latest version that AWS Batch supports is used. See [Supported Kubernetes versions](https://docs.aws.amazon.com/batch/latest/userguide/supported_kubernetes_version.html) for the list of Kubernetes versions supported by AWS Batch on Amazon EKS.
9710
+ */
9711
+ imageKubernetesVersion?: string;
9708
9712
  /**
9709
9713
  * The image type to match with the instance type to select an AMI. If the `imageIdOverride` parameter isn't specified, then a recent [Amazon ECS-optimized Amazon Linux 2 AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html#al2ami) (`ECS_AL2`) is used.
9710
9714
  */
@@ -12669,6 +12673,10 @@ export declare namespace bedrock {
12669
12673
  * See Filters Config for more information.
12670
12674
  */
12671
12675
  filtersConfigs?: outputs.bedrock.GuardrailContentPolicyConfigFiltersConfig[];
12676
+ /**
12677
+ * Configuration block for the content policy tier. See Tier Config for more information.
12678
+ */
12679
+ tierConfigs: outputs.bedrock.GuardrailContentPolicyConfigTierConfig[];
12672
12680
  }
12673
12681
  interface GuardrailContentPolicyConfigFiltersConfig {
12674
12682
  /**
@@ -12684,6 +12692,12 @@ export declare namespace bedrock {
12684
12692
  */
12685
12693
  type: string;
12686
12694
  }
12695
+ interface GuardrailContentPolicyConfigTierConfig {
12696
+ /**
12697
+ * The name of the content policy tier. Valid values include STANDARD or CLASSIC.
12698
+ */
12699
+ tierName: string;
12700
+ }
12687
12701
  interface GuardrailContextualGroundingPolicyConfig {
12688
12702
  /**
12689
12703
  * List of contextual grounding filter configs. See Contextual Grounding Filters Config for more information.
@@ -12700,6 +12714,12 @@ export declare namespace bedrock {
12700
12714
  */
12701
12715
  type: string;
12702
12716
  }
12717
+ interface GuardrailCrossRegionConfig {
12718
+ /**
12719
+ * Guardrail profile ARN.
12720
+ */
12721
+ guardrailProfileIdentifier: string;
12722
+ }
12703
12723
  interface GuardrailSensitiveInformationPolicyConfig {
12704
12724
  /**
12705
12725
  * List of entities. See PII Entities Config for more information.
@@ -12753,11 +12773,21 @@ export declare namespace bedrock {
12753
12773
  update?: string;
12754
12774
  }
12755
12775
  interface GuardrailTopicPolicyConfig {
12776
+ /**
12777
+ * Configuration block for the topic policy tier. See Tier Config for more information.
12778
+ */
12779
+ tierConfigs: outputs.bedrock.GuardrailTopicPolicyConfigTierConfig[];
12756
12780
  /**
12757
12781
  * List of topic configs in topic policy. See Topics Config for more information.
12758
12782
  */
12759
12783
  topicsConfigs?: outputs.bedrock.GuardrailTopicPolicyConfigTopicsConfig[];
12760
12784
  }
12785
+ interface GuardrailTopicPolicyConfigTierConfig {
12786
+ /**
12787
+ * The name of the content policy tier. Valid values include STANDARD or CLASSIC.
12788
+ */
12789
+ tierName: string;
12790
+ }
12761
12791
  interface GuardrailTopicPolicyConfigTopicsConfig {
12762
12792
  /**
12763
12793
  * Definition of topic in topic policy.
@@ -15652,6 +15682,16 @@ export declare namespace cloudwatch {
15652
15682
  */
15653
15683
  arn?: string;
15654
15684
  }
15685
+ interface EventBusLogConfig {
15686
+ /**
15687
+ * Whether EventBridge include detailed event information in the records it generates. Valid values are `NONE` and `FULL`.
15688
+ */
15689
+ includeDetail?: string;
15690
+ /**
15691
+ * Level of logging detail to include. Valid values are `OFF`, `ERROR`, `INFO`, and `TRACE`.
15692
+ */
15693
+ level?: string;
15694
+ }
15655
15695
  interface EventConnectionAuthParameters {
15656
15696
  /**
15657
15697
  * Parameters used for API_KEY authorization. An API key to include in the header for each authentication request. A maximum of 1 are allowed. Conflicts with `basic` and `oauth`. Documented below.
@@ -16170,6 +16210,16 @@ export declare namespace cloudwatch {
16170
16210
  */
16171
16211
  arn: string;
16172
16212
  }
16213
+ interface GetEventBusLogConfig {
16214
+ /**
16215
+ * Whether EventBridge include detailed event information in the records it generates.
16216
+ */
16217
+ includeDetail: string;
16218
+ /**
16219
+ * Level of logging detail to include.
16220
+ */
16221
+ level: string;
16222
+ }
16173
16223
  interface GetEventBusesEventBus {
16174
16224
  /**
16175
16225
  * The ARN of the event bus.
@@ -30338,6 +30388,16 @@ export declare namespace ec2 {
30338
30388
  */
30339
30389
  description?: string;
30340
30390
  }
30391
+ interface NatGatewayEipAssociationTimeouts {
30392
+ /**
30393
+ * 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).
30394
+ */
30395
+ create?: string;
30396
+ /**
30397
+ * 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.
30398
+ */
30399
+ delete?: string;
30400
+ }
30341
30401
  interface NetworkAclEgress {
30342
30402
  /**
30343
30403
  * The action to take.
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAom2EjF,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;;;AAsq2EjF,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"}