@pulumi/aws-native 1.36.0-alpha.1759383572 → 1.36.0-alpha.1759406604

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 (51) hide show
  1. package/arcregionswitch/getPlan.d.ts +1 -0
  2. package/arcregionswitch/getPlan.js.map +1 -1
  3. package/arcregionswitch/plan.d.ts +1 -0
  4. package/arcregionswitch/plan.js +2 -0
  5. package/arcregionswitch/plan.js.map +1 -1
  6. package/bedrockagentcore/gateway.d.ts +68 -0
  7. package/bedrockagentcore/gateway.js +99 -0
  8. package/bedrockagentcore/gateway.js.map +1 -0
  9. package/bedrockagentcore/gatewayTarget.d.ts +52 -0
  10. package/bedrockagentcore/gatewayTarget.js +84 -0
  11. package/bedrockagentcore/gatewayTarget.js.map +1 -0
  12. package/bedrockagentcore/getGateway.d.ts +39 -0
  13. package/bedrockagentcore/getGateway.js +28 -0
  14. package/bedrockagentcore/getGateway.js.map +1 -0
  15. package/bedrockagentcore/getGatewayTarget.d.ts +31 -0
  16. package/bedrockagentcore/getGatewayTarget.js +30 -0
  17. package/bedrockagentcore/getGatewayTarget.js.map +1 -0
  18. package/bedrockagentcore/index.d.ts +12 -0
  19. package/bedrockagentcore/index.js +15 -1
  20. package/bedrockagentcore/index.js.map +1 -1
  21. package/cloudfront/getPublicKey.d.ts +2 -0
  22. package/cloudfront/getPublicKey.js +2 -0
  23. package/cloudfront/getPublicKey.js.map +1 -1
  24. package/cloudfront/publicKey.d.ts +1 -0
  25. package/cloudfront/publicKey.js +1 -0
  26. package/cloudfront/publicKey.js.map +1 -1
  27. package/cognito/userPoolUser.d.ts +6 -6
  28. package/ecs/capacityProvider.d.ts +6 -0
  29. package/ecs/capacityProvider.js.map +1 -1
  30. package/ecs/getCapacityProvider.d.ts +3 -0
  31. package/ecs/getCapacityProvider.js.map +1 -1
  32. package/package.json +3 -3
  33. package/package.json.dev +2 -2
  34. package/servicecatalog/getPortfolioShare.d.ts +35 -0
  35. package/servicecatalog/getPortfolioShare.js +30 -0
  36. package/servicecatalog/getPortfolioShare.js.map +1 -0
  37. package/servicecatalog/index.d.ts +6 -0
  38. package/servicecatalog/index.js +8 -1
  39. package/servicecatalog/index.js.map +1 -1
  40. package/servicecatalog/portfolioShare.d.ts +65 -0
  41. package/servicecatalog/portfolioShare.js +70 -0
  42. package/servicecatalog/portfolioShare.js.map +1 -0
  43. package/types/enums/bedrockagentcore/index.d.ts +55 -0
  44. package/types/enums/bedrockagentcore/index.js +47 -1
  45. package/types/enums/bedrockagentcore/index.js.map +1 -1
  46. package/types/enums/cloudfront/index.d.ts +1 -1
  47. package/types/enums/ecs/index.d.ts +12 -0
  48. package/types/enums/ecs/index.js.map +1 -1
  49. package/types/input.d.ts +279 -1
  50. package/types/output.d.ts +282 -1
  51. package/types/output.js.map +1 -1
package/types/output.d.ts CHANGED
@@ -10840,6 +10840,9 @@ export declare namespace bedrock {
10840
10840
  * Whether generating categorical data from audio is enabled.
10841
10841
  */
10842
10842
  state: enums.bedrock.DataAutomationProjectState;
10843
+ /**
10844
+ * This element contains information about extractions from different types. Used to enable speaker and channel labeling for transcripts.
10845
+ */
10843
10846
  typeConfiguration?: outputs.bedrock.DataAutomationProjectAudioExtractionCategoryTypeConfiguration;
10844
10847
  /**
10845
10848
  * The types of data to generate.
@@ -10847,6 +10850,9 @@ export declare namespace bedrock {
10847
10850
  types?: enums.bedrock.DataAutomationProjectAudioExtractionCategoryType[];
10848
10851
  }
10849
10852
  interface DataAutomationProjectAudioExtractionCategoryTypeConfiguration {
10853
+ /**
10854
+ * This element allows you to configure different extractions for your transcript data, such as speaker and channel labeling.
10855
+ */
10850
10856
  transcript?: outputs.bedrock.DataAutomationProjectTranscriptConfiguration;
10851
10857
  }
10852
10858
  interface DataAutomationProjectAudioOverrideConfiguration {
@@ -10896,6 +10902,9 @@ export declare namespace bedrock {
10896
10902
  blueprintVersion?: string;
10897
10903
  }
10898
10904
  interface DataAutomationProjectChannelLabelingConfiguration {
10905
+ /**
10906
+ * State of channel labeling, either enabled or disabled.
10907
+ */
10899
10908
  state: enums.bedrock.DataAutomationProjectState;
10900
10909
  }
10901
10910
  /**
@@ -11086,6 +11095,9 @@ export declare namespace bedrock {
11086
11095
  video?: outputs.bedrock.DataAutomationProjectVideoOverrideConfiguration;
11087
11096
  }
11088
11097
  interface DataAutomationProjectSpeakerLabelingConfiguration {
11098
+ /**
11099
+ * State of speaker labeling, either enabled or disabled.
11100
+ */
11089
11101
  state: enums.bedrock.DataAutomationProjectState;
11090
11102
  }
11091
11103
  interface DataAutomationProjectSplitterConfiguration {
@@ -11116,7 +11128,13 @@ export declare namespace bedrock {
11116
11128
  video?: outputs.bedrock.DataAutomationProjectVideoStandardOutputConfiguration;
11117
11129
  }
11118
11130
  interface DataAutomationProjectTranscriptConfiguration {
11131
+ /**
11132
+ * Enables channel labeling. Each audio channel will be labeled with a number, and the transcript will indicate which channel is being used.
11133
+ */
11119
11134
  channelLabeling?: outputs.bedrock.DataAutomationProjectChannelLabelingConfiguration;
11135
+ /**
11136
+ * Enables speaker labeling. Each speaker within a transcript will recieve a number, and the transcript will note which speaker is talking.
11137
+ */
11120
11138
  speakerLabeling?: outputs.bedrock.DataAutomationProjectSpeakerLabelingConfiguration;
11121
11139
  }
11122
11140
  interface DataAutomationProjectVideoBoundingBox {
@@ -14517,6 +14535,95 @@ export declare namespace bedrockagentcore {
14517
14535
  */
14518
14536
  networkMode: enums.bedrockagentcore.CodeInterpreterCustomCodeInterpreterNetworkMode;
14519
14537
  }
14538
+ interface GatewayAuthorizerConfigurationProperties {
14539
+ customJwtAuthorizer: outputs.bedrockagentcore.GatewayCustomJwtAuthorizerConfiguration;
14540
+ }
14541
+ interface GatewayCustomJwtAuthorizerConfiguration {
14542
+ allowedAudience?: string[];
14543
+ allowedClients?: string[];
14544
+ discoveryUrl: string;
14545
+ }
14546
+ interface GatewayMcpGatewayConfiguration {
14547
+ instructions?: string;
14548
+ searchType?: enums.bedrockagentcore.GatewaySearchType;
14549
+ supportedVersions?: string[];
14550
+ }
14551
+ interface GatewayProtocolConfigurationProperties {
14552
+ mcp: outputs.bedrockagentcore.GatewayMcpGatewayConfiguration;
14553
+ }
14554
+ interface GatewayTargetApiKeyCredentialProvider {
14555
+ credentialLocation?: enums.bedrockagentcore.GatewayTargetApiKeyCredentialLocation;
14556
+ credentialParameterName?: string;
14557
+ credentialPrefix?: string;
14558
+ providerArn: string;
14559
+ }
14560
+ interface GatewayTargetApiSchemaConfiguration0Properties {
14561
+ s3: outputs.bedrockagentcore.GatewayTargetS3Configuration;
14562
+ }
14563
+ interface GatewayTargetApiSchemaConfiguration1Properties {
14564
+ inlinePayload: string;
14565
+ }
14566
+ interface GatewayTargetCredentialProvider0Properties {
14567
+ oauthCredentialProvider: outputs.bedrockagentcore.GatewayTargetOAuthCredentialProvider;
14568
+ }
14569
+ interface GatewayTargetCredentialProvider1Properties {
14570
+ apiKeyCredentialProvider: outputs.bedrockagentcore.GatewayTargetApiKeyCredentialProvider;
14571
+ }
14572
+ interface GatewayTargetCredentialProviderConfiguration {
14573
+ credentialProvider?: outputs.bedrockagentcore.GatewayTargetCredentialProvider0Properties | outputs.bedrockagentcore.GatewayTargetCredentialProvider1Properties;
14574
+ credentialProviderType: enums.bedrockagentcore.GatewayTargetCredentialProviderType;
14575
+ }
14576
+ interface GatewayTargetMcpLambdaTargetConfiguration {
14577
+ lambdaArn: string;
14578
+ toolSchema: outputs.bedrockagentcore.GatewayTargetToolSchema0Properties | outputs.bedrockagentcore.GatewayTargetToolSchema1Properties;
14579
+ }
14580
+ interface GatewayTargetMcpTargetConfiguration0Properties {
14581
+ openApiSchema: outputs.bedrockagentcore.GatewayTargetApiSchemaConfiguration0Properties | outputs.bedrockagentcore.GatewayTargetApiSchemaConfiguration1Properties;
14582
+ }
14583
+ interface GatewayTargetMcpTargetConfiguration1Properties {
14584
+ smithyModel: outputs.bedrockagentcore.GatewayTargetApiSchemaConfiguration0Properties | outputs.bedrockagentcore.GatewayTargetApiSchemaConfiguration1Properties;
14585
+ }
14586
+ interface GatewayTargetMcpTargetConfiguration2Properties {
14587
+ lambda: outputs.bedrockagentcore.GatewayTargetMcpLambdaTargetConfiguration;
14588
+ }
14589
+ interface GatewayTargetOAuthCredentialProvider {
14590
+ customParameters?: {
14591
+ [key: string]: string;
14592
+ };
14593
+ providerArn: string;
14594
+ scopes: string[];
14595
+ }
14596
+ interface GatewayTargetS3Configuration {
14597
+ bucketOwnerAccountId?: string;
14598
+ uri?: string;
14599
+ }
14600
+ interface GatewayTargetSchemaDefinition {
14601
+ description?: string;
14602
+ items?: outputs.bedrockagentcore.GatewayTargetSchemaDefinition;
14603
+ properties?: {
14604
+ [key: string]: outputs.bedrockagentcore.GatewayTargetSchemaDefinition;
14605
+ };
14606
+ required?: string[];
14607
+ type: enums.bedrockagentcore.GatewayTargetSchemaType;
14608
+ }
14609
+ interface GatewayTargetTargetConfigurationProperties {
14610
+ mcp: outputs.bedrockagentcore.GatewayTargetMcpTargetConfiguration0Properties | outputs.bedrockagentcore.GatewayTargetMcpTargetConfiguration1Properties | outputs.bedrockagentcore.GatewayTargetMcpTargetConfiguration2Properties;
14611
+ }
14612
+ interface GatewayTargetToolDefinition {
14613
+ description: string;
14614
+ inputSchema: outputs.bedrockagentcore.GatewayTargetSchemaDefinition;
14615
+ name: string;
14616
+ outputSchema?: outputs.bedrockagentcore.GatewayTargetSchemaDefinition;
14617
+ }
14618
+ interface GatewayTargetToolSchema0Properties {
14619
+ s3: outputs.bedrockagentcore.GatewayTargetS3Configuration;
14620
+ }
14621
+ interface GatewayTargetToolSchema1Properties {
14622
+ inlinePayload: outputs.bedrockagentcore.GatewayTargetToolDefinition[];
14623
+ }
14624
+ interface GatewayWorkloadIdentityDetails {
14625
+ workloadIdentityArn: string;
14626
+ }
14520
14627
  interface RuntimeAgentRuntimeArtifact {
14521
14628
  /**
14522
14629
  * Representation of a container configuration.
@@ -16402,7 +16509,7 @@ export declare namespace cloudfront {
16402
16509
  */
16403
16510
  httpsPort?: number;
16404
16511
  /**
16405
- * Specifies which IP protocol CloudFront uses when connecting to your origin. If your origin uses both IPv4 and IPv6 protocols, you can choose `dualstack` to help optimize reliability.
16512
+ * Specifies which IP protocol CloudFront uses when connecting to your origin. If your origin uses both IPv4 and IPv6 protocols, you can choose ``dualstack`` to help optimize reliability.
16406
16513
  */
16407
16514
  ipAddressType?: enums.cloudfront.DistributionCustomOriginConfigIpAddressType;
16408
16515
  /**
@@ -17331,6 +17438,7 @@ export declare namespace cloudfront {
17331
17438
  }
17332
17439
  /**
17333
17440
  * Configuration information about a public key that you can use with [signed URLs and signed cookies](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html), or with [field-level encryption](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html).
17441
+ * CloudFront supports signed URLs and signed cookies with RSA 2048 or ECDSA 256 key signatures. Field-level encryption is only compatible with RSA 2048 key signatures.
17334
17442
  */
17335
17443
  interface PublicKeyConfig {
17336
17444
  /**
@@ -20562,6 +20670,9 @@ export declare namespace connect {
20562
20670
  * Contains information about the manual assignment queue and channel
20563
20671
  */
20564
20672
  interface RoutingProfileManualAssignmentQueueConfig {
20673
+ /**
20674
+ * Contains information about a queue resource.
20675
+ */
20565
20676
  queueReference: outputs.connect.RoutingProfileQueueReference;
20566
20677
  }
20567
20678
  /**
@@ -30680,11 +30791,23 @@ export declare namespace ecr {
30680
30791
  }
30681
30792
  export declare namespace ecs {
30682
30793
  interface CapacityProviderAcceleratorCountRequest {
30794
+ /**
30795
+ * The maximum number of accelerators. Instance types with more accelerators are excluded from selection.
30796
+ */
30683
30797
  max?: number;
30798
+ /**
30799
+ * The minimum number of accelerators. Instance types with fewer accelerators are excluded from selection.
30800
+ */
30684
30801
  min?: number;
30685
30802
  }
30686
30803
  interface CapacityProviderAcceleratorTotalMemoryMiBRequest {
30804
+ /**
30805
+ * The maximum total accelerator memory in MiB. Instance types with more accelerator memory are excluded from selection.
30806
+ */
30687
30807
  max?: number;
30808
+ /**
30809
+ * The minimum total accelerator memory in MiB. Instance types with less accelerator memory are excluded from selection.
30810
+ */
30688
30811
  min?: number;
30689
30812
  }
30690
30813
  interface CapacityProviderAutoScalingGroupProvider {
@@ -30712,52 +30835,174 @@ export declare namespace ecs {
30712
30835
  managedTerminationProtection?: enums.ecs.CapacityProviderAutoScalingGroupProviderManagedTerminationProtection;
30713
30836
  }
30714
30837
  interface CapacityProviderBaselineEbsBandwidthMbpsRequest {
30838
+ /**
30839
+ * The maximum baseline Amazon EBS bandwidth in Mbps. Instance types with higher Amazon EBS bandwidth are excluded from selection.
30840
+ */
30715
30841
  max?: number;
30842
+ /**
30843
+ * The minimum baseline Amazon EBS bandwidth in Mbps. Instance types with lower Amazon EBS bandwidth are excluded from selection.
30844
+ */
30716
30845
  min?: number;
30717
30846
  }
30718
30847
  interface CapacityProviderInstanceLaunchTemplate {
30848
+ /**
30849
+ * The Amazon Resource Name (ARN) of the instance profile that Amazon ECS applies to Amazon ECS Managed Instances. This instance profile must include the necessary permissions for your tasks to access AWS services and resources.
30850
+ *
30851
+ * For more information, see [Amazon ECS instance profile for Managed Instances](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/managed-instances-instance-profile.html) in the *Amazon ECS Developer Guide* .
30852
+ */
30719
30853
  ec2InstanceProfileArn: string;
30854
+ /**
30855
+ * The instance requirements. You can specify:
30856
+ *
30857
+ * - The instance types
30858
+ * - Instance requirements such as vCPU count, memory, network performance, and accelerator specifications
30859
+ *
30860
+ * Amazon ECS automatically selects the instances that match the specified criteria.
30861
+ */
30720
30862
  instanceRequirements?: outputs.ecs.CapacityProviderInstanceRequirementsRequest;
30863
+ /**
30864
+ * CloudWatch provides two categories of monitoring: basic monitoring and detailed monitoring. By default, your managed instance is configured for basic monitoring. You can optionally enable detailed monitoring to help you more quickly identify and act on operational issues. You can enable or turn off detailed monitoring at launch or when the managed instance is running or stopped. For more information, see [Detailed monitoring for Amazon ECS Managed Instances](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/detailed-monitoring-managed-instances.html) in the Amazon ECS Developer Guide.
30865
+ */
30721
30866
  monitoring?: enums.ecs.CapacityProviderManagedInstancesMonitoringOptions;
30867
+ /**
30868
+ * The network configuration for Amazon ECS Managed Instances. This specifies the subnets and security groups that instances use for network connectivity.
30869
+ */
30722
30870
  networkConfiguration: outputs.ecs.CapacityProviderManagedInstancesNetworkConfiguration;
30871
+ /**
30872
+ * The storage configuration for Amazon ECS Managed Instances. This defines the root volume size and type for the instances.
30873
+ */
30723
30874
  storageConfiguration?: outputs.ecs.CapacityProviderManagedInstancesStorageConfiguration;
30724
30875
  }
30725
30876
  interface CapacityProviderInstanceRequirementsRequest {
30877
+ /**
30878
+ * The minimum and maximum number of accelerators for the instance types. This is used when you need instances with specific numbers of GPUs or other accelerators.
30879
+ */
30726
30880
  acceleratorCount?: outputs.ecs.CapacityProviderAcceleratorCountRequest;
30881
+ /**
30882
+ * The accelerator manufacturers to include. You can specify `nvidia` , `amd` , `amazon-web-services` , or `xilinx` depending on your accelerator requirements.
30883
+ */
30727
30884
  acceleratorManufacturers?: enums.ecs.CapacityProviderInstanceRequirementsRequestAcceleratorManufacturersItem[];
30885
+ /**
30886
+ * The specific accelerator names to include. For example, you can specify `a100` , `v100` , `k80` , or other specific accelerator models.
30887
+ */
30728
30888
  acceleratorNames?: enums.ecs.CapacityProviderInstanceRequirementsRequestAcceleratorNamesItem[];
30889
+ /**
30890
+ * The minimum and maximum total accelerator memory in mebibytes (MiB). This is important for GPU workloads that require specific amounts of video memory.
30891
+ */
30729
30892
  acceleratorTotalMemoryMiB?: outputs.ecs.CapacityProviderAcceleratorTotalMemoryMiBRequest;
30893
+ /**
30894
+ * The accelerator types to include. You can specify `gpu` for graphics processing units, `fpga` for field programmable gate arrays, or `inference` for machine learning inference accelerators.
30895
+ */
30730
30896
  acceleratorTypes?: enums.ecs.CapacityProviderInstanceRequirementsRequestAcceleratorTypesItem[];
30897
+ /**
30898
+ * The instance types to include in the selection. When specified, Amazon ECS only considers these instance types, subject to the other requirements specified.
30899
+ */
30731
30900
  allowedInstanceTypes?: string[];
30901
+ /**
30902
+ * Indicates whether to include bare metal instance types. Set to `included` to allow bare metal instances, `excluded` to exclude them, or `required` to use only bare metal instances.
30903
+ */
30732
30904
  bareMetal?: enums.ecs.CapacityProviderInstanceRequirementsRequestBareMetal;
30905
+ /**
30906
+ * The minimum and maximum baseline Amazon EBS bandwidth in megabits per second (Mbps). This is important for workloads with high storage I/O requirements.
30907
+ */
30733
30908
  baselineEbsBandwidthMbps?: outputs.ecs.CapacityProviderBaselineEbsBandwidthMbpsRequest;
30909
+ /**
30910
+ * Indicates whether to include burstable performance instance types (T2, T3, T3a, T4g). Set to `included` to allow burstable instances, `excluded` to exclude them, or `required` to use only burstable instances.
30911
+ */
30734
30912
  burstablePerformance?: enums.ecs.CapacityProviderInstanceRequirementsRequestBurstablePerformance;
30913
+ /**
30914
+ * The CPU manufacturers to include or exclude. You can specify `intel` , `amd` , or `amazon-web-services` to control which CPU types are used for your workloads.
30915
+ */
30735
30916
  cpuManufacturers?: enums.ecs.CapacityProviderInstanceRequirementsRequestCpuManufacturersItem[];
30917
+ /**
30918
+ * The instance types to exclude from selection. Use this to prevent Amazon ECS from selecting specific instance types that may not be suitable for your workloads.
30919
+ */
30736
30920
  excludedInstanceTypes?: string[];
30921
+ /**
30922
+ * The instance generations to include. You can specify `current` to use the latest generation instances, or `previous` to include previous generation instances for cost optimization.
30923
+ */
30737
30924
  instanceGenerations?: enums.ecs.CapacityProviderInstanceRequirementsRequestInstanceGenerationsItem[];
30925
+ /**
30926
+ * Indicates whether to include instance types with local storage. Set to `included` to allow local storage, `excluded` to exclude it, or `required` to use only instances with local storage.
30927
+ */
30738
30928
  localStorage?: enums.ecs.CapacityProviderInstanceRequirementsRequestLocalStorage;
30929
+ /**
30930
+ * The local storage types to include. You can specify `hdd` for hard disk drives, `ssd` for solid state drives, or both.
30931
+ */
30739
30932
  localStorageTypes?: enums.ecs.CapacityProviderInstanceRequirementsRequestLocalStorageTypesItem[];
30933
+ /**
30934
+ * The maximum price for Spot instances as a percentage of the optimal On-Demand price. This provides more precise cost control for Spot instance selection.
30935
+ */
30740
30936
  maxSpotPriceAsPercentageOfOptimalOnDemandPrice?: number;
30937
+ /**
30938
+ * The minimum and maximum amount of memory per vCPU in gibibytes (GiB). This helps ensure that instance types have the appropriate memory-to-CPU ratio for your workloads.
30939
+ */
30741
30940
  memoryGiBPerVCpu?: outputs.ecs.CapacityProviderMemoryGiBPerVCpuRequest;
30941
+ /**
30942
+ * The minimum and maximum amount of memory in mebibytes (MiB) for the instance types. Amazon ECS selects instance types that have memory within this range.
30943
+ */
30742
30944
  memoryMiB: outputs.ecs.CapacityProviderMemoryMiBRequest;
30945
+ /**
30946
+ * The minimum and maximum network bandwidth in gigabits per second (Gbps). This is crucial for network-intensive workloads that require high throughput.
30947
+ */
30743
30948
  networkBandwidthGbps?: outputs.ecs.CapacityProviderNetworkBandwidthGbpsRequest;
30949
+ /**
30950
+ * The minimum and maximum number of network interfaces for the instance types. This is useful for workloads that require multiple network interfaces.
30951
+ */
30744
30952
  networkInterfaceCount?: outputs.ecs.CapacityProviderNetworkInterfaceCountRequest;
30953
+ /**
30954
+ * The price protection threshold for On-Demand Instances, as a percentage higher than an identified On-Demand price. The identified On-Demand price is the price of the lowest priced current generation C, M, or R instance type with your specified attributes. If no current generation C, M, or R instance type matches your attributes, then the identified price is from either the lowest priced current generation instance types or, failing that, the lowest priced previous generation instance types that match your attributes. When Amazon ECS selects instance types with your attributes, we will exclude instance types whose price exceeds your specified threshold.
30955
+ */
30745
30956
  onDemandMaxPricePercentageOverLowestPrice?: number;
30957
+ /**
30958
+ * Indicates whether the instance types must support hibernation. When set to `true` , only instance types that support hibernation are selected.
30959
+ */
30746
30960
  requireHibernateSupport?: boolean;
30961
+ /**
30962
+ * The maximum price for Spot instances as a percentage over the lowest priced On-Demand instance. This helps control Spot instance costs while maintaining access to capacity.
30963
+ */
30747
30964
  spotMaxPricePercentageOverLowestPrice?: number;
30965
+ /**
30966
+ * The minimum and maximum total local storage in gigabytes (GB) for instance types with local storage.
30967
+ */
30748
30968
  totalLocalStorageGb?: outputs.ecs.CapacityProviderTotalLocalStorageGbRequest;
30969
+ /**
30970
+ * The minimum and maximum number of vCPUs for the instance types. Amazon ECS selects instance types that have vCPU counts within this range.
30971
+ */
30749
30972
  vCpuCount: outputs.ecs.CapacityProviderVCpuCountRangeRequest;
30750
30973
  }
30751
30974
  interface CapacityProviderManagedInstancesNetworkConfiguration {
30975
+ /**
30976
+ * The list of security group IDs to apply to Amazon ECS Managed Instances. These security groups control the network traffic allowed to and from the instances.
30977
+ */
30752
30978
  securityGroups?: string[];
30979
+ /**
30980
+ * The list of subnet IDs where Amazon ECS can launch Amazon ECS Managed Instances. Instances are distributed across the specified subnets for high availability. All subnets must be in the same VPC.
30981
+ */
30753
30982
  subnets: string[];
30754
30983
  }
30755
30984
  interface CapacityProviderManagedInstancesProvider {
30985
+ /**
30986
+ * The Amazon Resource Name (ARN) of the infrastructure role that Amazon ECS assumes to manage instances. This role must include permissions for Amazon EC2 instance lifecycle management, networking, and any additional AWS services required for your workloads.
30987
+ *
30988
+ * For more information, see [Amazon ECS infrastructure IAM role](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/infrastructure_IAM_role.html) in the *Amazon ECS Developer Guide* .
30989
+ */
30756
30990
  infrastructureRoleArn: string;
30991
+ /**
30992
+ * The launch template that defines how Amazon ECS launches Amazon ECS Managed Instances. This includes the instance profile for your tasks, network and storage configuration, and instance requirements that determine which Amazon EC2 instance types can be used.
30993
+ *
30994
+ * For more information, see [Store instance launch parameters in Amazon EC2 launch templates](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html) in the *Amazon EC2 User Guide* .
30995
+ */
30757
30996
  instanceLaunchTemplate: outputs.ecs.CapacityProviderInstanceLaunchTemplate;
30997
+ /**
30998
+ * Determines whether tags from the capacity provider are automatically applied to Amazon ECS Managed Instances. This helps with cost allocation and resource management by ensuring consistent tagging across your infrastructure.
30999
+ */
30758
31000
  propagateTags?: enums.ecs.CapacityProviderManagedInstancesProviderPropagateTags;
30759
31001
  }
30760
31002
  interface CapacityProviderManagedInstancesStorageConfiguration {
31003
+ /**
31004
+ * The size of the tasks volume.
31005
+ */
30761
31006
  storageSizeGiB: number;
30762
31007
  }
30763
31008
  /**
@@ -30788,27 +31033,63 @@ export declare namespace ecs {
30788
31033
  targetCapacity?: number;
30789
31034
  }
30790
31035
  interface CapacityProviderMemoryGiBPerVCpuRequest {
31036
+ /**
31037
+ * The maximum amount of memory per vCPU in GiB. Instance types with a higher memory-to-vCPU ratio are excluded from selection.
31038
+ */
30791
31039
  max?: number;
31040
+ /**
31041
+ * The minimum amount of memory per vCPU in GiB. Instance types with a lower memory-to-vCPU ratio are excluded from selection.
31042
+ */
30792
31043
  min?: number;
30793
31044
  }
30794
31045
  interface CapacityProviderMemoryMiBRequest {
31046
+ /**
31047
+ * The maximum amount of memory in MiB. Instance types with more memory than this value are excluded from selection.
31048
+ */
30795
31049
  max?: number;
31050
+ /**
31051
+ * The minimum amount of memory in MiB. Instance types with less memory than this value are excluded from selection.
31052
+ */
30796
31053
  min: number;
30797
31054
  }
30798
31055
  interface CapacityProviderNetworkBandwidthGbpsRequest {
31056
+ /**
31057
+ * The maximum network bandwidth in Gbps. Instance types with higher network bandwidth are excluded from selection.
31058
+ */
30799
31059
  max?: number;
31060
+ /**
31061
+ * The minimum network bandwidth in Gbps. Instance types with lower network bandwidth are excluded from selection.
31062
+ */
30800
31063
  min?: number;
30801
31064
  }
30802
31065
  interface CapacityProviderNetworkInterfaceCountRequest {
31066
+ /**
31067
+ * The maximum number of network interfaces. Instance types that support more network interfaces are excluded from selection.
31068
+ */
30803
31069
  max?: number;
31070
+ /**
31071
+ * The minimum number of network interfaces. Instance types that support fewer network interfaces are excluded from selection.
31072
+ */
30804
31073
  min?: number;
30805
31074
  }
30806
31075
  interface CapacityProviderTotalLocalStorageGbRequest {
31076
+ /**
31077
+ * The maximum total local storage in GB. Instance types with more local storage are excluded from selection.
31078
+ */
30807
31079
  max?: number;
31080
+ /**
31081
+ * The minimum total local storage in GB. Instance types with less local storage are excluded from selection.
31082
+ */
30808
31083
  min?: number;
30809
31084
  }
30810
31085
  interface CapacityProviderVCpuCountRangeRequest {
31086
+ /**
31087
+ * The maximum number of vCPUs. Instance types with more vCPUs than this value are excluded from selection.
31088
+ */
30811
31089
  max?: number;
31090
+ /**
31091
+ * The minimum number of vCPUs. Instance types with fewer vCPUs than this value are excluded from selection.
31092
+ */
30812
31093
  min: number;
30813
31094
  }
30814
31095
  interface ClusterCapacityProviderAssociationsCapacityProviderStrategy {
@@ -1 +1 @@
1
- {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA8hpBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,qBAAqB,EAAE,MAAA,CAAC,GAAG,CAAC,qBAAqB,CAAC,mCAAI,CAAC,IACzD;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}
1
+ {"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AA4ppBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,qBAAqB,EAAE,MAAA,CAAC,GAAG,CAAC,qBAAqB,CAAC,mCAAI,CAAC,IACzD;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}