@pulumi/aws 6.74.0 → 6.75.0-alpha.1743518204

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 (47) hide show
  1. package/apigateway/index.d.ts +3 -0
  2. package/apigateway/index.js +6 -1
  3. package/apigateway/index.js.map +1 -1
  4. package/apigateway/restApiPut.d.ts +171 -0
  5. package/apigateway/restApiPut.js +117 -0
  6. package/apigateway/restApiPut.js.map +1 -0
  7. package/bedrock/agentAgent.d.ts +12 -0
  8. package/bedrock/agentAgent.js +2 -0
  9. package/bedrock/agentAgent.js.map +1 -1
  10. package/cloudfront/getFunction.d.ts +2 -0
  11. package/cloudfront/getFunction.js +2 -0
  12. package/cloudfront/getFunction.js.map +1 -1
  13. package/codepipeline/pipeline.d.ts +13 -5
  14. package/codepipeline/pipeline.js +4 -2
  15. package/codepipeline/pipeline.js.map +1 -1
  16. package/cognito/userPool.d.ts +1 -1
  17. package/datasync/task.d.ts +38 -0
  18. package/datasync/task.js +22 -0
  19. package/datasync/task.js.map +1 -1
  20. package/ecr/getPullThroughCacheRule.d.ts +9 -1
  21. package/ecr/getPullThroughCacheRule.js.map +1 -1
  22. package/ecr/pullThroughCacheRule.d.ts +30 -6
  23. package/ecr/pullThroughCacheRule.js +4 -0
  24. package/ecr/pullThroughCacheRule.js.map +1 -1
  25. package/iot/domainConfiguration.d.ts +1 -1
  26. package/lambda/eventSourceMapping.d.ts +3 -3
  27. package/package.json +2 -2
  28. package/s3tables/namespace.d.ts +1 -1
  29. package/s3tables/namespace.js +1 -1
  30. package/s3tables/table.d.ts +2 -2
  31. package/s3tables/table.js +2 -2
  32. package/sns/topicSubscription.d.ts +34 -0
  33. package/sns/topicSubscription.js +34 -0
  34. package/sns/topicSubscription.js.map +1 -1
  35. package/types/input.d.ts +162 -3
  36. package/types/input.js.map +1 -1
  37. package/types/output.d.ts +161 -2
  38. package/types/output.js.map +1 -1
  39. package/verifiedaccess/endpoint.d.ts +51 -12
  40. package/verifiedaccess/endpoint.js +28 -9
  41. package/verifiedaccess/endpoint.js.map +1 -1
  42. package/verifiedaccess/instance.d.ts +23 -0
  43. package/verifiedaccess/instance.js +13 -0
  44. package/verifiedaccess/instance.js.map +1 -1
  45. package/verifiedaccess/trustProvider.d.ts +15 -0
  46. package/verifiedaccess/trustProvider.js +4 -0
  47. package/verifiedaccess/trustProvider.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -2496,6 +2496,12 @@ export declare namespace apigateway {
2496
2496
  */
2497
2497
  vpcEndpointIds?: pulumi.Input<pulumi.Input<string>[]>;
2498
2498
  }
2499
+ interface RestApiPutTimeouts {
2500
+ /**
2501
+ * 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).
2502
+ */
2503
+ create?: pulumi.Input<string>;
2504
+ }
2499
2505
  interface StageAccessLogSettings {
2500
2506
  /**
2501
2507
  * ARN of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with `amazon-apigateway-`. Automatically removes trailing `:*` if present.
@@ -9830,6 +9836,16 @@ export declare namespace bedrock {
9830
9836
  */
9831
9837
  update?: pulumi.Input<string>;
9832
9838
  }
9839
+ interface AgentAgentMemoryConfiguration {
9840
+ /**
9841
+ * The type of memory being stored by the agent. See [AWS API documentation](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_MemoryConfiguration.html) for possible values.
9842
+ */
9843
+ enabledMemoryTypes: pulumi.Input<pulumi.Input<string>[]>;
9844
+ /**
9845
+ * The number of days the agent is configured to retain the conversational context. Minimum value of 0, maximum value of 30.
9846
+ */
9847
+ storageDays: pulumi.Input<number>;
9848
+ }
9833
9849
  interface AgentAgentPromptOverrideConfiguration {
9834
9850
  /**
9835
9851
  * ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the `promptConfigurations` block must contain a `parserMode` value that is set to `OVERRIDDEN`.
@@ -15536,6 +15552,108 @@ export declare namespace codepipeline {
15536
15552
  */
15537
15553
  providerType: pulumi.Input<string>;
15538
15554
  }
15555
+ interface PipelineTriggerAll {
15556
+ /**
15557
+ * Provides the filter criteria and the source stage for the repository event that starts the pipeline. For more information, refer to the [AWS documentation](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-filter.html). A `gitConfiguration` block is documented below.
15558
+ */
15559
+ gitConfigurations?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfiguration>[]>;
15560
+ /**
15561
+ * The source provider for the event. Possible value is `CodeStarSourceConnection`.
15562
+ */
15563
+ providerType?: pulumi.Input<string>;
15564
+ }
15565
+ interface PipelineTriggerAllGitConfiguration {
15566
+ /**
15567
+ * The field where the repository event that will start the pipeline is specified as pull requests. A `pullRequest` block is documented below.
15568
+ */
15569
+ pullRequests?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPullRequest>[]>;
15570
+ /**
15571
+ * The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details. A `push` block is documented below.
15572
+ */
15573
+ pushes?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPush>[]>;
15574
+ /**
15575
+ * The name of the pipeline source action where the trigger configuration, such as Git tags, is specified. The trigger configuration will start the pipeline upon the specified change only.
15576
+ */
15577
+ sourceActionName?: pulumi.Input<string>;
15578
+ }
15579
+ interface PipelineTriggerAllGitConfigurationPullRequest {
15580
+ /**
15581
+ * The field that specifies to filter on branches for the pull request trigger configuration. A `branches` block is documented below.
15582
+ */
15583
+ branches?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPullRequestBranch>[]>;
15584
+ /**
15585
+ * A list that specifies which pull request events to filter on (opened, updated, closed) for the trigger configuration. Possible values are `OPEN`, `UPDATED ` and `CLOSED`.
15586
+ */
15587
+ events?: pulumi.Input<pulumi.Input<string>[]>;
15588
+ /**
15589
+ * The field that specifies to filter on file paths for the pull request trigger configuration. A `filePaths` block is documented below.
15590
+ */
15591
+ filePaths?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPullRequestFilePath>[]>;
15592
+ }
15593
+ interface PipelineTriggerAllGitConfigurationPullRequestBranch {
15594
+ /**
15595
+ * A list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
15596
+ */
15597
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
15598
+ /**
15599
+ * A list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
15600
+ */
15601
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
15602
+ }
15603
+ interface PipelineTriggerAllGitConfigurationPullRequestFilePath {
15604
+ /**
15605
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
15606
+ */
15607
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
15608
+ /**
15609
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be included as criteria that starts the pipeline.
15610
+ */
15611
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
15612
+ }
15613
+ interface PipelineTriggerAllGitConfigurationPush {
15614
+ /**
15615
+ * The field that specifies to filter on branches for the push trigger configuration. A `branches` block is documented below.
15616
+ */
15617
+ branches?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPushBranch>[]>;
15618
+ /**
15619
+ * The field that specifies to filter on file paths for the push trigger configuration. A `filePaths` block is documented below.
15620
+ */
15621
+ filePaths?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPushFilePath>[]>;
15622
+ /**
15623
+ * The field that contains the details for the Git tags trigger configuration. A `tags` block is documented below.
15624
+ */
15625
+ tags?: pulumi.Input<pulumi.Input<inputs.codepipeline.PipelineTriggerAllGitConfigurationPushTag>[]>;
15626
+ }
15627
+ interface PipelineTriggerAllGitConfigurationPushBranch {
15628
+ /**
15629
+ * A list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
15630
+ */
15631
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
15632
+ /**
15633
+ * A list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
15634
+ */
15635
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
15636
+ }
15637
+ interface PipelineTriggerAllGitConfigurationPushFilePath {
15638
+ /**
15639
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
15640
+ */
15641
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
15642
+ /**
15643
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be included as criteria that starts the pipeline.
15644
+ */
15645
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
15646
+ }
15647
+ interface PipelineTriggerAllGitConfigurationPushTag {
15648
+ /**
15649
+ * A list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
15650
+ */
15651
+ excludes?: pulumi.Input<pulumi.Input<string>[]>;
15652
+ /**
15653
+ * A list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
15654
+ */
15655
+ includes?: pulumi.Input<pulumi.Input<string>[]>;
15656
+ }
15539
15657
  interface PipelineTriggerGitConfiguration {
15540
15658
  /**
15541
15659
  * The field where the repository event that will start the pipeline is specified as pull requests. A `pullRequest` block is documented below.
@@ -15635,8 +15753,6 @@ export declare namespace codepipeline {
15635
15753
  defaultValue?: pulumi.Input<string>;
15636
15754
  /**
15637
15755
  * The description of a pipeline-level variable.
15638
- *
15639
- * > **Note:** The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
15640
15756
  */
15641
15757
  description?: pulumi.Input<string>;
15642
15758
  /**
@@ -16265,7 +16381,7 @@ export declare namespace cognito {
16265
16381
  /**
16266
16382
  * Whether username case sensitivity will be applied for all users in the user pool through Cognito APIs.
16267
16383
  */
16268
- caseSensitive: pulumi.Input<boolean>;
16384
+ caseSensitive?: pulumi.Input<boolean>;
16269
16385
  }
16270
16386
  interface UserPoolVerificationMessageTemplate {
16271
16387
  /**
@@ -74888,16 +75004,45 @@ export declare namespace transfer {
74888
75004
  }
74889
75005
  }
74890
75006
  export declare namespace verifiedaccess {
75007
+ interface EndpointCidrOptions {
75008
+ cidr: pulumi.Input<string>;
75009
+ portRanges: pulumi.Input<pulumi.Input<inputs.verifiedaccess.EndpointCidrOptionsPortRange>[]>;
75010
+ protocol?: pulumi.Input<string>;
75011
+ subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
75012
+ }
75013
+ interface EndpointCidrOptionsPortRange {
75014
+ fromPort: pulumi.Input<number>;
75015
+ toPort: pulumi.Input<number>;
75016
+ }
74891
75017
  interface EndpointLoadBalancerOptions {
74892
75018
  loadBalancerArn?: pulumi.Input<string>;
74893
75019
  port?: pulumi.Input<number>;
75020
+ portRanges?: pulumi.Input<pulumi.Input<inputs.verifiedaccess.EndpointLoadBalancerOptionsPortRange>[]>;
74894
75021
  protocol?: pulumi.Input<string>;
74895
75022
  subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
74896
75023
  }
75024
+ interface EndpointLoadBalancerOptionsPortRange {
75025
+ fromPort: pulumi.Input<number>;
75026
+ toPort: pulumi.Input<number>;
75027
+ }
74897
75028
  interface EndpointNetworkInterfaceOptions {
74898
75029
  networkInterfaceId?: pulumi.Input<string>;
75030
+ port?: pulumi.Input<number>;
75031
+ portRanges?: pulumi.Input<pulumi.Input<inputs.verifiedaccess.EndpointNetworkInterfaceOptionsPortRange>[]>;
75032
+ protocol?: pulumi.Input<string>;
75033
+ }
75034
+ interface EndpointNetworkInterfaceOptionsPortRange {
75035
+ fromPort: pulumi.Input<number>;
75036
+ toPort: pulumi.Input<number>;
75037
+ }
75038
+ interface EndpointRdsOptions {
74899
75039
  port?: pulumi.Input<number>;
74900
75040
  protocol?: pulumi.Input<string>;
75041
+ rdsDbClusterArn?: pulumi.Input<string>;
75042
+ rdsDbInstanceArn?: pulumi.Input<string>;
75043
+ rdsDbProxyArn?: pulumi.Input<string>;
75044
+ rdsEndpoint?: pulumi.Input<string>;
75045
+ subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
74901
75046
  }
74902
75047
  interface EndpointSseSpecification {
74903
75048
  customerManagedKeyEnabled?: pulumi.Input<boolean>;
@@ -74998,6 +75143,16 @@ export declare namespace verifiedaccess {
74998
75143
  interface TrustProviderDeviceOptions {
74999
75144
  tenantId?: pulumi.Input<string>;
75000
75145
  }
75146
+ interface TrustProviderNativeApplicationOidcOptions {
75147
+ authorizationEndpoint?: pulumi.Input<string>;
75148
+ clientId?: pulumi.Input<string>;
75149
+ clientSecret: pulumi.Input<string>;
75150
+ issuer?: pulumi.Input<string>;
75151
+ publicSigningKeyEndpoint?: pulumi.Input<string>;
75152
+ scope?: pulumi.Input<string>;
75153
+ tokenEndpoint?: pulumi.Input<string>;
75154
+ userInfoEndpoint?: pulumi.Input<string>;
75155
+ }
75001
75156
  interface TrustProviderOidcOptions {
75002
75157
  authorizationEndpoint?: pulumi.Input<string>;
75003
75158
  clientId?: pulumi.Input<string>;
@@ -75007,6 +75162,10 @@ export declare namespace verifiedaccess {
75007
75162
  tokenEndpoint?: pulumi.Input<string>;
75008
75163
  userInfoEndpoint?: pulumi.Input<string>;
75009
75164
  }
75165
+ interface TrustProviderSseSpecification {
75166
+ customerManagedKeyEnabled?: pulumi.Input<boolean>;
75167
+ kmsKeyArn?: pulumi.Input<string>;
75168
+ }
75010
75169
  }
75011
75170
  export declare namespace verifiedpermissions {
75012
75171
  interface IdentitySourceConfiguration {
@@ -1 +1 @@
1
- {"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AA8yhEjF,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,wFAAwF;AACxF,iFAAiF;;;AA66hEjF,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
@@ -1381,6 +1381,12 @@ export declare namespace apigateway {
1381
1381
  */
1382
1382
  vpcEndpointIds: string[];
1383
1383
  }
1384
+ interface RestApiPutTimeouts {
1385
+ /**
1386
+ * 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).
1387
+ */
1388
+ create?: string;
1389
+ }
1384
1390
  interface StageAccessLogSettings {
1385
1391
  /**
1386
1392
  * ARN of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with `amazon-apigateway-`. Automatically removes trailing `:*` if present.
@@ -10838,6 +10844,16 @@ export declare namespace bedrock {
10838
10844
  */
10839
10845
  update?: string;
10840
10846
  }
10847
+ interface AgentAgentMemoryConfiguration {
10848
+ /**
10849
+ * The type of memory being stored by the agent. See [AWS API documentation](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_MemoryConfiguration.html) for possible values.
10850
+ */
10851
+ enabledMemoryTypes: string[];
10852
+ /**
10853
+ * The number of days the agent is configured to retain the conversational context. Minimum value of 0, maximum value of 30.
10854
+ */
10855
+ storageDays: number;
10856
+ }
10841
10857
  interface AgentAgentPromptOverrideConfiguration {
10842
10858
  /**
10843
10859
  * ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the `promptConfigurations` block must contain a `parserMode` value that is set to `OVERRIDDEN`.
@@ -17159,6 +17175,108 @@ export declare namespace codepipeline {
17159
17175
  */
17160
17176
  providerType: string;
17161
17177
  }
17178
+ interface PipelineTriggerAll {
17179
+ /**
17180
+ * Provides the filter criteria and the source stage for the repository event that starts the pipeline. For more information, refer to the [AWS documentation](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-filter.html). A `gitConfiguration` block is documented below.
17181
+ */
17182
+ gitConfigurations: outputs.codepipeline.PipelineTriggerAllGitConfiguration[];
17183
+ /**
17184
+ * The source provider for the event. Possible value is `CodeStarSourceConnection`.
17185
+ */
17186
+ providerType: string;
17187
+ }
17188
+ interface PipelineTriggerAllGitConfiguration {
17189
+ /**
17190
+ * The field where the repository event that will start the pipeline is specified as pull requests. A `pullRequest` block is documented below.
17191
+ */
17192
+ pullRequests: outputs.codepipeline.PipelineTriggerAllGitConfigurationPullRequest[];
17193
+ /**
17194
+ * The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details. A `push` block is documented below.
17195
+ */
17196
+ pushes: outputs.codepipeline.PipelineTriggerAllGitConfigurationPush[];
17197
+ /**
17198
+ * The name of the pipeline source action where the trigger configuration, such as Git tags, is specified. The trigger configuration will start the pipeline upon the specified change only.
17199
+ */
17200
+ sourceActionName: string;
17201
+ }
17202
+ interface PipelineTriggerAllGitConfigurationPullRequest {
17203
+ /**
17204
+ * The field that specifies to filter on branches for the pull request trigger configuration. A `branches` block is documented below.
17205
+ */
17206
+ branches: outputs.codepipeline.PipelineTriggerAllGitConfigurationPullRequestBranch[];
17207
+ /**
17208
+ * A list that specifies which pull request events to filter on (opened, updated, closed) for the trigger configuration. Possible values are `OPEN`, `UPDATED ` and `CLOSED`.
17209
+ */
17210
+ events: string[];
17211
+ /**
17212
+ * The field that specifies to filter on file paths for the pull request trigger configuration. A `filePaths` block is documented below.
17213
+ */
17214
+ filePaths: outputs.codepipeline.PipelineTriggerAllGitConfigurationPullRequestFilePath[];
17215
+ }
17216
+ interface PipelineTriggerAllGitConfigurationPullRequestBranch {
17217
+ /**
17218
+ * A list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
17219
+ */
17220
+ excludes: string[];
17221
+ /**
17222
+ * A list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
17223
+ */
17224
+ includes: string[];
17225
+ }
17226
+ interface PipelineTriggerAllGitConfigurationPullRequestFilePath {
17227
+ /**
17228
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
17229
+ */
17230
+ excludes: string[];
17231
+ /**
17232
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be included as criteria that starts the pipeline.
17233
+ */
17234
+ includes: string[];
17235
+ }
17236
+ interface PipelineTriggerAllGitConfigurationPush {
17237
+ /**
17238
+ * The field that specifies to filter on branches for the push trigger configuration. A `branches` block is documented below.
17239
+ */
17240
+ branches: outputs.codepipeline.PipelineTriggerAllGitConfigurationPushBranch[];
17241
+ /**
17242
+ * The field that specifies to filter on file paths for the push trigger configuration. A `filePaths` block is documented below.
17243
+ */
17244
+ filePaths: outputs.codepipeline.PipelineTriggerAllGitConfigurationPushFilePath[];
17245
+ /**
17246
+ * The field that contains the details for the Git tags trigger configuration. A `tags` block is documented below.
17247
+ */
17248
+ tags: outputs.codepipeline.PipelineTriggerAllGitConfigurationPushTag[];
17249
+ }
17250
+ interface PipelineTriggerAllGitConfigurationPushBranch {
17251
+ /**
17252
+ * A list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
17253
+ */
17254
+ excludes: string[];
17255
+ /**
17256
+ * A list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
17257
+ */
17258
+ includes: string[];
17259
+ }
17260
+ interface PipelineTriggerAllGitConfigurationPushFilePath {
17261
+ /**
17262
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
17263
+ */
17264
+ excludes: string[];
17265
+ /**
17266
+ * A list of patterns of Git repository file paths that, when a commit is pushed, are to be included as criteria that starts the pipeline.
17267
+ */
17268
+ includes: string[];
17269
+ }
17270
+ interface PipelineTriggerAllGitConfigurationPushTag {
17271
+ /**
17272
+ * A list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
17273
+ */
17274
+ excludes: string[];
17275
+ /**
17276
+ * A list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
17277
+ */
17278
+ includes: string[];
17279
+ }
17162
17280
  interface PipelineTriggerGitConfiguration {
17163
17281
  /**
17164
17282
  * The field where the repository event that will start the pipeline is specified as pull requests. A `pullRequest` block is documented below.
@@ -17258,8 +17376,6 @@ export declare namespace codepipeline {
17258
17376
  defaultValue?: string;
17259
17377
  /**
17260
17378
  * The description of a pipeline-level variable.
17261
- *
17262
- * > **Note:** The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.
17263
17379
  */
17264
17380
  description?: string;
17265
17381
  /**
@@ -83637,16 +83753,45 @@ export declare namespace transfer {
83637
83753
  }
83638
83754
  }
83639
83755
  export declare namespace verifiedaccess {
83756
+ interface EndpointCidrOptions {
83757
+ cidr: string;
83758
+ portRanges: outputs.verifiedaccess.EndpointCidrOptionsPortRange[];
83759
+ protocol?: string;
83760
+ subnetIds?: string[];
83761
+ }
83762
+ interface EndpointCidrOptionsPortRange {
83763
+ fromPort: number;
83764
+ toPort: number;
83765
+ }
83640
83766
  interface EndpointLoadBalancerOptions {
83641
83767
  loadBalancerArn?: string;
83642
83768
  port?: number;
83769
+ portRanges?: outputs.verifiedaccess.EndpointLoadBalancerOptionsPortRange[];
83643
83770
  protocol?: string;
83644
83771
  subnetIds?: string[];
83645
83772
  }
83773
+ interface EndpointLoadBalancerOptionsPortRange {
83774
+ fromPort: number;
83775
+ toPort: number;
83776
+ }
83646
83777
  interface EndpointNetworkInterfaceOptions {
83647
83778
  networkInterfaceId?: string;
83779
+ port?: number;
83780
+ portRanges?: outputs.verifiedaccess.EndpointNetworkInterfaceOptionsPortRange[];
83781
+ protocol?: string;
83782
+ }
83783
+ interface EndpointNetworkInterfaceOptionsPortRange {
83784
+ fromPort: number;
83785
+ toPort: number;
83786
+ }
83787
+ interface EndpointRdsOptions {
83648
83788
  port?: number;
83649
83789
  protocol?: string;
83790
+ rdsDbClusterArn?: string;
83791
+ rdsDbInstanceArn?: string;
83792
+ rdsDbProxyArn?: string;
83793
+ rdsEndpoint?: string;
83794
+ subnetIds?: string[];
83650
83795
  }
83651
83796
  interface EndpointSseSpecification {
83652
83797
  customerManagedKeyEnabled?: boolean;
@@ -83747,6 +83892,16 @@ export declare namespace verifiedaccess {
83747
83892
  interface TrustProviderDeviceOptions {
83748
83893
  tenantId?: string;
83749
83894
  }
83895
+ interface TrustProviderNativeApplicationOidcOptions {
83896
+ authorizationEndpoint?: string;
83897
+ clientId?: string;
83898
+ clientSecret: string;
83899
+ issuer?: string;
83900
+ publicSigningKeyEndpoint?: string;
83901
+ scope?: string;
83902
+ tokenEndpoint?: string;
83903
+ userInfoEndpoint?: string;
83904
+ }
83750
83905
  interface TrustProviderOidcOptions {
83751
83906
  authorizationEndpoint?: string;
83752
83907
  clientId?: string;
@@ -83756,6 +83911,10 @@ export declare namespace verifiedaccess {
83756
83911
  tokenEndpoint?: string;
83757
83912
  userInfoEndpoint?: string;
83758
83913
  }
83914
+ interface TrustProviderSseSpecification {
83915
+ customerManagedKeyEnabled?: boolean;
83916
+ kmsKeyArn?: string;
83917
+ }
83759
83918
  }
83760
83919
  export declare namespace verifiedpermissions {
83761
83920
  interface GetPolicyStoreValidationSetting {
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAogzEjF,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,wFAAwF;AACxF,iFAAiF;;;AAmozEjF,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"}
@@ -53,6 +53,30 @@ import * as outputs from "../types/output";
53
53
  * });
54
54
  * ```
55
55
  *
56
+ * ### Cidr Example
57
+ *
58
+ * ```typescript
59
+ * import * as pulumi from "@pulumi/pulumi";
60
+ * import * as aws from "@pulumi/aws";
61
+ *
62
+ * const example = new aws.verifiedaccess.Endpoint("example", {
63
+ * attachmentType: "vpc",
64
+ * description: "example",
65
+ * endpointType: "cidr",
66
+ * cidrOptions: {
67
+ * cidr: test[0].cidrBlock,
68
+ * portRanges: [{
69
+ * fromPort: 443,
70
+ * toPort: 443,
71
+ * }],
72
+ * protocol: "tcp",
73
+ * subnetIds: .map(subnet => (subnet.id)),
74
+ * },
75
+ * securityGroupIds: [testAwsSecurityGroup.id],
76
+ * verifiedAccessGroupId: testAwsVerifiedaccessGroup.id,
77
+ * });
78
+ * ```
79
+ *
56
80
  * ## Import
57
81
  *
58
82
  * Using `pulumi import`, import Verified Access Instances using the `id`. For example:
@@ -78,13 +102,17 @@ export declare class Endpoint extends pulumi.CustomResource {
78
102
  */
79
103
  static isInstance(obj: any): obj is Endpoint;
80
104
  /**
81
- * The DNS name for users to reach your application.
105
+ * The DNS name for users to reach your application. This parameter is required if the endpoint type is `load-balancer` or `network-interface`.
82
106
  */
83
- readonly applicationDomain: pulumi.Output<string>;
107
+ readonly applicationDomain: pulumi.Output<string | undefined>;
84
108
  /**
85
109
  * The type of attachment. Currently, only `vpc` is supported.
86
110
  */
87
111
  readonly attachmentType: pulumi.Output<string>;
112
+ /**
113
+ * The CIDR block details. This parameter is required if the endpoint type is `cidr`.
114
+ */
115
+ readonly cidrOptions: pulumi.Output<outputs.verifiedaccess.EndpointCidrOptions | undefined>;
88
116
  /**
89
117
  * A description for the Verified Access endpoint.
90
118
  */
@@ -94,9 +122,9 @@ export declare class Endpoint extends pulumi.CustomResource {
94
122
  */
95
123
  readonly deviceValidationDomain: pulumi.Output<string>;
96
124
  /**
97
- * The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
125
+ * The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application. This parameter is required if the endpoint type is `load-balancer` or `network-interface`.
98
126
  */
99
- readonly domainCertificateArn: pulumi.Output<string>;
127
+ readonly domainCertificateArn: pulumi.Output<string | undefined>;
100
128
  /**
101
129
  * A DNS name that is generated for the endpoint.
102
130
  */
@@ -104,7 +132,7 @@ export declare class Endpoint extends pulumi.CustomResource {
104
132
  /**
105
133
  * A custom identifier that is prepended to the DNS name that is generated for the endpoint.
106
134
  */
107
- readonly endpointDomainPrefix: pulumi.Output<string>;
135
+ readonly endpointDomainPrefix: pulumi.Output<string | undefined>;
108
136
  /**
109
137
  * The type of Verified Access endpoint to create. Currently `load-balancer` or `network-interface` are supported.
110
138
  */
@@ -121,6 +149,7 @@ export declare class Endpoint extends pulumi.CustomResource {
121
149
  * The policy document that is associated with this resource.
122
150
  */
123
151
  readonly policyDocument: pulumi.Output<string | undefined>;
152
+ readonly rdsOptions: pulumi.Output<outputs.verifiedaccess.EndpointRdsOptions | undefined>;
124
153
  /**
125
154
  * List of the the security groups IDs to associate with the Verified Access endpoint.
126
155
  */
@@ -162,13 +191,17 @@ export declare class Endpoint extends pulumi.CustomResource {
162
191
  */
163
192
  export interface EndpointState {
164
193
  /**
165
- * The DNS name for users to reach your application.
194
+ * The DNS name for users to reach your application. This parameter is required if the endpoint type is `load-balancer` or `network-interface`.
166
195
  */
167
196
  applicationDomain?: pulumi.Input<string>;
168
197
  /**
169
198
  * The type of attachment. Currently, only `vpc` is supported.
170
199
  */
171
200
  attachmentType?: pulumi.Input<string>;
201
+ /**
202
+ * The CIDR block details. This parameter is required if the endpoint type is `cidr`.
203
+ */
204
+ cidrOptions?: pulumi.Input<inputs.verifiedaccess.EndpointCidrOptions>;
172
205
  /**
173
206
  * A description for the Verified Access endpoint.
174
207
  */
@@ -178,7 +211,7 @@ export interface EndpointState {
178
211
  */
179
212
  deviceValidationDomain?: pulumi.Input<string>;
180
213
  /**
181
- * The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
214
+ * The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application. This parameter is required if the endpoint type is `load-balancer` or `network-interface`.
182
215
  */
183
216
  domainCertificateArn?: pulumi.Input<string>;
184
217
  /**
@@ -205,6 +238,7 @@ export interface EndpointState {
205
238
  * The policy document that is associated with this resource.
206
239
  */
207
240
  policyDocument?: pulumi.Input<string>;
241
+ rdsOptions?: pulumi.Input<inputs.verifiedaccess.EndpointRdsOptions>;
208
242
  /**
209
243
  * List of the the security groups IDs to associate with the Verified Access endpoint.
210
244
  */
@@ -238,25 +272,29 @@ export interface EndpointState {
238
272
  */
239
273
  export interface EndpointArgs {
240
274
  /**
241
- * The DNS name for users to reach your application.
275
+ * The DNS name for users to reach your application. This parameter is required if the endpoint type is `load-balancer` or `network-interface`.
242
276
  */
243
- applicationDomain: pulumi.Input<string>;
277
+ applicationDomain?: pulumi.Input<string>;
244
278
  /**
245
279
  * The type of attachment. Currently, only `vpc` is supported.
246
280
  */
247
281
  attachmentType: pulumi.Input<string>;
282
+ /**
283
+ * The CIDR block details. This parameter is required if the endpoint type is `cidr`.
284
+ */
285
+ cidrOptions?: pulumi.Input<inputs.verifiedaccess.EndpointCidrOptions>;
248
286
  /**
249
287
  * A description for the Verified Access endpoint.
250
288
  */
251
289
  description?: pulumi.Input<string>;
252
290
  /**
253
- * The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application.
291
+ * The ARN of the public TLS/SSL certificate in AWS Certificate Manager to associate with the endpoint. The CN in the certificate must match the DNS name your end users will use to reach your application. This parameter is required if the endpoint type is `load-balancer` or `network-interface`.
254
292
  */
255
- domainCertificateArn: pulumi.Input<string>;
293
+ domainCertificateArn?: pulumi.Input<string>;
256
294
  /**
257
295
  * A custom identifier that is prepended to the DNS name that is generated for the endpoint.
258
296
  */
259
- endpointDomainPrefix: pulumi.Input<string>;
297
+ endpointDomainPrefix?: pulumi.Input<string>;
260
298
  /**
261
299
  * The type of Verified Access endpoint to create. Currently `load-balancer` or `network-interface` are supported.
262
300
  */
@@ -273,6 +311,7 @@ export interface EndpointArgs {
273
311
  * The policy document that is associated with this resource.
274
312
  */
275
313
  policyDocument?: pulumi.Input<string>;
314
+ rdsOptions?: pulumi.Input<inputs.verifiedaccess.EndpointRdsOptions>;
276
315
  /**
277
316
  * List of the the security groups IDs to associate with the Verified Access endpoint.
278
317
  */