pulumi-aws-native 1.38.0a1761718100__py3-none-any.whl → 1.38.0a1761739268__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +2 -0
- pulumi_aws_native/amazonmq/_enums.py +4 -12
- pulumi_aws_native/amazonmq/_inputs.py +21 -91
- pulumi_aws_native/amazonmq/broker.py +56 -67
- pulumi_aws_native/amazonmq/get_broker.py +6 -13
- pulumi_aws_native/amazonmq/outputs.py +14 -54
- pulumi_aws_native/batch/_inputs.py +25 -0
- pulumi_aws_native/batch/job_definition.py +21 -0
- pulumi_aws_native/batch/outputs.py +31 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +54 -26
- pulumi_aws_native/datazone/outputs.py +84 -0
- pulumi_aws_native/ec2/__init__.py +2 -0
- pulumi_aws_native/ec2/_enums.py +19 -0
- pulumi_aws_native/ec2/_inputs.py +15 -12
- pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
- pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ecs/_enums.py +14 -0
- pulumi_aws_native/ecs/_inputs.py +134 -8
- pulumi_aws_native/ecs/outputs.py +135 -5
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
- pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
- pulumi_aws_native/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
- pulumi_aws_native/mediapackagev2/outputs.py +4 -0
- pulumi_aws_native/networkfirewall/_enums.py +2 -0
- pulumi_aws_native/networkfirewall/_inputs.py +13 -0
- pulumi_aws_native/networkfirewall/firewall.py +7 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +12 -1
- pulumi_aws_native/networkfirewall/outputs.py +10 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +41 -0
- pulumi_aws_native/rtbfabric/_inputs.py +260 -0
- pulumi_aws_native/rtbfabric/get_link.py +181 -0
- pulumi_aws_native/rtbfabric/link.py +293 -0
- pulumi_aws_native/rtbfabric/outputs.py +260 -0
- pulumi_aws_native/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +77 -0
- pulumi_aws_native/transfer/connector.py +83 -19
- pulumi_aws_native/transfer/get_connector.py +40 -1
- pulumi_aws_native/transfer/outputs.py +80 -0
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/RECORD +54 -50
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761739268.dist-info}/top_level.txt +0 -0
pulumi_aws_native/ec2/_inputs.py
CHANGED
|
@@ -7273,7 +7273,7 @@ if not MYPY:
|
|
|
7273
7273
|
"""
|
|
7274
7274
|
The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
7275
7275
|
The following are the supported values for each volume type:
|
|
7276
|
-
+ ``gp3``: 3,000 -
|
|
7276
|
+
+ ``gp3``: 3,000 - 80,000 IOPS
|
|
7277
7277
|
+ ``io1``: 100 - 64,000 IOPS
|
|
7278
7278
|
+ ``io2``: 100 - 256,000 IOPS
|
|
7279
7279
|
|
|
@@ -7290,8 +7290,8 @@ if not MYPY:
|
|
|
7290
7290
|
"""
|
|
7291
7291
|
throughput: NotRequired[pulumi.Input[_builtins.int]]
|
|
7292
7292
|
"""
|
|
7293
|
-
The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
7294
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
7293
|
+
The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
7294
|
+
Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
7295
7295
|
"""
|
|
7296
7296
|
volume_initialization_rate: NotRequired[pulumi.Input[_builtins.int]]
|
|
7297
7297
|
"""
|
|
@@ -7307,7 +7307,8 @@ if not MYPY:
|
|
|
7307
7307
|
volume_size: NotRequired[pulumi.Input[_builtins.int]]
|
|
7308
7308
|
"""
|
|
7309
7309
|
The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
7310
|
-
+ ``gp2
|
|
7310
|
+
+ ``gp2``: 1 - 16,384 GiB
|
|
7311
|
+
+ ``gp3``: 1 - 65,536 GiB
|
|
7311
7312
|
+ ``io1``: 4 - 16,384 GiB
|
|
7312
7313
|
+ ``io2``: 4 - 65,536 GiB
|
|
7313
7314
|
+ ``st1`` and ``sc1``: 125 - 16,384 GiB
|
|
@@ -7339,7 +7340,7 @@ class LaunchTemplateEbsArgs:
|
|
|
7339
7340
|
:param pulumi.Input[_builtins.bool] encrypted: Indicates whether the EBS volume is encrypted. Encrypted volumes can only be attached to instances that support Amazon EBS encryption. If you are creating a volume from a snapshot, you can't specify an encryption value.
|
|
7340
7341
|
:param pulumi.Input[_builtins.int] iops: The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
7341
7342
|
The following are the supported values for each volume type:
|
|
7342
|
-
+ ``gp3``: 3,000 -
|
|
7343
|
+
+ ``gp3``: 3,000 - 80,000 IOPS
|
|
7343
7344
|
+ ``io1``: 100 - 64,000 IOPS
|
|
7344
7345
|
+ ``io2``: 100 - 256,000 IOPS
|
|
7345
7346
|
|
|
@@ -7347,8 +7348,8 @@ class LaunchTemplateEbsArgs:
|
|
|
7347
7348
|
This parameter is supported for ``io1``, ``io2``, and ``gp3`` volumes only.
|
|
7348
7349
|
:param pulumi.Input[_builtins.str] kms_key_id: Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
|
|
7349
7350
|
:param pulumi.Input[_builtins.str] snapshot_id: The ID of the snapshot.
|
|
7350
|
-
:param pulumi.Input[_builtins.int] throughput: The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
7351
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
7351
|
+
:param pulumi.Input[_builtins.int] throughput: The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
7352
|
+
Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
7352
7353
|
:param pulumi.Input[_builtins.int] volume_initialization_rate: Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization*. Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
7353
7354
|
This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
7354
7355
|
+ You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation.
|
|
@@ -7358,7 +7359,8 @@ class LaunchTemplateEbsArgs:
|
|
|
7358
7359
|
For more information, see [Initialize Amazon EBS volumes](https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html) in the *Amazon EC2 User Guide*.
|
|
7359
7360
|
Valid range: 100 - 300 MiB/s
|
|
7360
7361
|
:param pulumi.Input[_builtins.int] volume_size: The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
7361
|
-
+ ``gp2
|
|
7362
|
+
+ ``gp2``: 1 - 16,384 GiB
|
|
7363
|
+
+ ``gp3``: 1 - 65,536 GiB
|
|
7362
7364
|
+ ``io1``: 4 - 16,384 GiB
|
|
7363
7365
|
+ ``io2``: 4 - 65,536 GiB
|
|
7364
7366
|
+ ``st1`` and ``sc1``: 125 - 16,384 GiB
|
|
@@ -7414,7 +7416,7 @@ class LaunchTemplateEbsArgs:
|
|
|
7414
7416
|
"""
|
|
7415
7417
|
The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
7416
7418
|
The following are the supported values for each volume type:
|
|
7417
|
-
+ ``gp3``: 3,000 -
|
|
7419
|
+
+ ``gp3``: 3,000 - 80,000 IOPS
|
|
7418
7420
|
+ ``io1``: 100 - 64,000 IOPS
|
|
7419
7421
|
+ ``io2``: 100 - 256,000 IOPS
|
|
7420
7422
|
|
|
@@ -7455,8 +7457,8 @@ class LaunchTemplateEbsArgs:
|
|
|
7455
7457
|
@pulumi.getter
|
|
7456
7458
|
def throughput(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
7457
7459
|
"""
|
|
7458
|
-
The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
7459
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
7460
|
+
The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
7461
|
+
Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
7460
7462
|
"""
|
|
7461
7463
|
return pulumi.get(self, "throughput")
|
|
7462
7464
|
|
|
@@ -7488,7 +7490,8 @@ class LaunchTemplateEbsArgs:
|
|
|
7488
7490
|
def volume_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
7489
7491
|
"""
|
|
7490
7492
|
The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
7491
|
-
+ ``gp2
|
|
7493
|
+
+ ``gp2``: 1 - 16,384 GiB
|
|
7494
|
+
+ ``gp3``: 1 - 65,536 GiB
|
|
7492
7495
|
+ ``io1``: 4 - 16,384 GiB
|
|
7493
7496
|
+ ``io2``: 4 - 65,536 GiB
|
|
7494
7497
|
+ ``st1`` and ``sc1``: 125 - 16,384 GiB
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from .. import _inputs as _root_inputs
|
|
17
|
+
from .. import outputs as _root_outputs
|
|
18
|
+
from ._enums import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['CapacityManagerDataExportArgs', 'CapacityManagerDataExport']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class CapacityManagerDataExportArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
output_format: pulumi.Input['CapacityManagerDataExportOutputFormat'],
|
|
26
|
+
s3_bucket_name: pulumi.Input[_builtins.str],
|
|
27
|
+
schedule: pulumi.Input['CapacityManagerDataExportSchedule'],
|
|
28
|
+
s3_bucket_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
|
|
30
|
+
"""
|
|
31
|
+
The set of arguments for constructing a CapacityManagerDataExport resource.
|
|
32
|
+
:param pulumi.Input['CapacityManagerDataExportOutputFormat'] output_format: The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
|
|
33
|
+
:param pulumi.Input[_builtins.str] s3_bucket_name: The name of the Amazon S3 bucket where the capacity manager data export will be stored. The bucket must exist and be accessible by EC2 Capacity Manager service.
|
|
34
|
+
:param pulumi.Input['CapacityManagerDataExportSchedule'] schedule: The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
|
|
35
|
+
:param pulumi.Input[_builtins.str] s3_bucket_prefix: The prefix for the S3 bucket location where exported files will be placed. If not specified, files will be placed in the root of the bucket.
|
|
36
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An array of key-value pairs to apply to the capacity manager data export.
|
|
37
|
+
"""
|
|
38
|
+
pulumi.set(__self__, "output_format", output_format)
|
|
39
|
+
pulumi.set(__self__, "s3_bucket_name", s3_bucket_name)
|
|
40
|
+
pulumi.set(__self__, "schedule", schedule)
|
|
41
|
+
if s3_bucket_prefix is not None:
|
|
42
|
+
pulumi.set(__self__, "s3_bucket_prefix", s3_bucket_prefix)
|
|
43
|
+
if tags is not None:
|
|
44
|
+
pulumi.set(__self__, "tags", tags)
|
|
45
|
+
|
|
46
|
+
@_builtins.property
|
|
47
|
+
@pulumi.getter(name="outputFormat")
|
|
48
|
+
def output_format(self) -> pulumi.Input['CapacityManagerDataExportOutputFormat']:
|
|
49
|
+
"""
|
|
50
|
+
The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "output_format")
|
|
53
|
+
|
|
54
|
+
@output_format.setter
|
|
55
|
+
def output_format(self, value: pulumi.Input['CapacityManagerDataExportOutputFormat']):
|
|
56
|
+
pulumi.set(self, "output_format", value)
|
|
57
|
+
|
|
58
|
+
@_builtins.property
|
|
59
|
+
@pulumi.getter(name="s3BucketName")
|
|
60
|
+
def s3_bucket_name(self) -> pulumi.Input[_builtins.str]:
|
|
61
|
+
"""
|
|
62
|
+
The name of the Amazon S3 bucket where the capacity manager data export will be stored. The bucket must exist and be accessible by EC2 Capacity Manager service.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "s3_bucket_name")
|
|
65
|
+
|
|
66
|
+
@s3_bucket_name.setter
|
|
67
|
+
def s3_bucket_name(self, value: pulumi.Input[_builtins.str]):
|
|
68
|
+
pulumi.set(self, "s3_bucket_name", value)
|
|
69
|
+
|
|
70
|
+
@_builtins.property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def schedule(self) -> pulumi.Input['CapacityManagerDataExportSchedule']:
|
|
73
|
+
"""
|
|
74
|
+
The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "schedule")
|
|
77
|
+
|
|
78
|
+
@schedule.setter
|
|
79
|
+
def schedule(self, value: pulumi.Input['CapacityManagerDataExportSchedule']):
|
|
80
|
+
pulumi.set(self, "schedule", value)
|
|
81
|
+
|
|
82
|
+
@_builtins.property
|
|
83
|
+
@pulumi.getter(name="s3BucketPrefix")
|
|
84
|
+
def s3_bucket_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
85
|
+
"""
|
|
86
|
+
The prefix for the S3 bucket location where exported files will be placed. If not specified, files will be placed in the root of the bucket.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "s3_bucket_prefix")
|
|
89
|
+
|
|
90
|
+
@s3_bucket_prefix.setter
|
|
91
|
+
def s3_bucket_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
92
|
+
pulumi.set(self, "s3_bucket_prefix", value)
|
|
93
|
+
|
|
94
|
+
@_builtins.property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
97
|
+
"""
|
|
98
|
+
An array of key-value pairs to apply to the capacity manager data export.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "tags")
|
|
101
|
+
|
|
102
|
+
@tags.setter
|
|
103
|
+
def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
|
|
104
|
+
pulumi.set(self, "tags", value)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
@pulumi.type_token("aws-native:ec2:CapacityManagerDataExport")
|
|
108
|
+
class CapacityManagerDataExport(pulumi.CustomResource):
|
|
109
|
+
@overload
|
|
110
|
+
def __init__(__self__,
|
|
111
|
+
resource_name: str,
|
|
112
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
113
|
+
output_format: Optional[pulumi.Input['CapacityManagerDataExportOutputFormat']] = None,
|
|
114
|
+
s3_bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
115
|
+
s3_bucket_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
116
|
+
schedule: Optional[pulumi.Input['CapacityManagerDataExportSchedule']] = None,
|
|
117
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
118
|
+
__props__=None):
|
|
119
|
+
"""
|
|
120
|
+
Resource Type definition for AWS::EC2::CapacityManagerDataExport
|
|
121
|
+
|
|
122
|
+
:param str resource_name: The name of the resource.
|
|
123
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
124
|
+
:param pulumi.Input['CapacityManagerDataExportOutputFormat'] output_format: The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
|
|
125
|
+
:param pulumi.Input[_builtins.str] s3_bucket_name: The name of the Amazon S3 bucket where the capacity manager data export will be stored. The bucket must exist and be accessible by EC2 Capacity Manager service.
|
|
126
|
+
:param pulumi.Input[_builtins.str] s3_bucket_prefix: The prefix for the S3 bucket location where exported files will be placed. If not specified, files will be placed in the root of the bucket.
|
|
127
|
+
:param pulumi.Input['CapacityManagerDataExportSchedule'] schedule: The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
|
|
128
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: An array of key-value pairs to apply to the capacity manager data export.
|
|
129
|
+
"""
|
|
130
|
+
...
|
|
131
|
+
@overload
|
|
132
|
+
def __init__(__self__,
|
|
133
|
+
resource_name: str,
|
|
134
|
+
args: CapacityManagerDataExportArgs,
|
|
135
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
136
|
+
"""
|
|
137
|
+
Resource Type definition for AWS::EC2::CapacityManagerDataExport
|
|
138
|
+
|
|
139
|
+
:param str resource_name: The name of the resource.
|
|
140
|
+
:param CapacityManagerDataExportArgs args: The arguments to use to populate this resource's properties.
|
|
141
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
142
|
+
"""
|
|
143
|
+
...
|
|
144
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
145
|
+
resource_args, opts = _utilities.get_resource_args_opts(CapacityManagerDataExportArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
146
|
+
if resource_args is not None:
|
|
147
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
148
|
+
else:
|
|
149
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
150
|
+
|
|
151
|
+
def _internal_init(__self__,
|
|
152
|
+
resource_name: str,
|
|
153
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
154
|
+
output_format: Optional[pulumi.Input['CapacityManagerDataExportOutputFormat']] = None,
|
|
155
|
+
s3_bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
156
|
+
s3_bucket_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
157
|
+
schedule: Optional[pulumi.Input['CapacityManagerDataExportSchedule']] = None,
|
|
158
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
159
|
+
__props__=None):
|
|
160
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
161
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
162
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
163
|
+
if opts.id is None:
|
|
164
|
+
if __props__ is not None:
|
|
165
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
166
|
+
__props__ = CapacityManagerDataExportArgs.__new__(CapacityManagerDataExportArgs)
|
|
167
|
+
|
|
168
|
+
if output_format is None and not opts.urn:
|
|
169
|
+
raise TypeError("Missing required property 'output_format'")
|
|
170
|
+
__props__.__dict__["output_format"] = output_format
|
|
171
|
+
if s3_bucket_name is None and not opts.urn:
|
|
172
|
+
raise TypeError("Missing required property 's3_bucket_name'")
|
|
173
|
+
__props__.__dict__["s3_bucket_name"] = s3_bucket_name
|
|
174
|
+
__props__.__dict__["s3_bucket_prefix"] = s3_bucket_prefix
|
|
175
|
+
if schedule is None and not opts.urn:
|
|
176
|
+
raise TypeError("Missing required property 'schedule'")
|
|
177
|
+
__props__.__dict__["schedule"] = schedule
|
|
178
|
+
__props__.__dict__["tags"] = tags
|
|
179
|
+
__props__.__dict__["capacity_manager_data_export_id"] = None
|
|
180
|
+
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["outputFormat", "s3BucketName", "s3BucketPrefix", "schedule"])
|
|
181
|
+
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
182
|
+
super(CapacityManagerDataExport, __self__).__init__(
|
|
183
|
+
'aws-native:ec2:CapacityManagerDataExport',
|
|
184
|
+
resource_name,
|
|
185
|
+
__props__,
|
|
186
|
+
opts)
|
|
187
|
+
|
|
188
|
+
@staticmethod
|
|
189
|
+
def get(resource_name: str,
|
|
190
|
+
id: pulumi.Input[str],
|
|
191
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'CapacityManagerDataExport':
|
|
192
|
+
"""
|
|
193
|
+
Get an existing CapacityManagerDataExport resource's state with the given name, id, and optional extra
|
|
194
|
+
properties used to qualify the lookup.
|
|
195
|
+
|
|
196
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
197
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
198
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
199
|
+
"""
|
|
200
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
201
|
+
|
|
202
|
+
__props__ = CapacityManagerDataExportArgs.__new__(CapacityManagerDataExportArgs)
|
|
203
|
+
|
|
204
|
+
__props__.__dict__["capacity_manager_data_export_id"] = None
|
|
205
|
+
__props__.__dict__["output_format"] = None
|
|
206
|
+
__props__.__dict__["s3_bucket_name"] = None
|
|
207
|
+
__props__.__dict__["s3_bucket_prefix"] = None
|
|
208
|
+
__props__.__dict__["schedule"] = None
|
|
209
|
+
__props__.__dict__["tags"] = None
|
|
210
|
+
return CapacityManagerDataExport(resource_name, opts=opts, __props__=__props__)
|
|
211
|
+
|
|
212
|
+
@_builtins.property
|
|
213
|
+
@pulumi.getter(name="capacityManagerDataExportId")
|
|
214
|
+
def capacity_manager_data_export_id(self) -> pulumi.Output[_builtins.str]:
|
|
215
|
+
"""
|
|
216
|
+
The unique identifier of the capacity manager data export.
|
|
217
|
+
"""
|
|
218
|
+
return pulumi.get(self, "capacity_manager_data_export_id")
|
|
219
|
+
|
|
220
|
+
@_builtins.property
|
|
221
|
+
@pulumi.getter(name="outputFormat")
|
|
222
|
+
def output_format(self) -> pulumi.Output['CapacityManagerDataExportOutputFormat']:
|
|
223
|
+
"""
|
|
224
|
+
The format of the exported capacity manager data. Choose 'csv' for comma-separated values or 'parquet' for optimized columnar storage format.
|
|
225
|
+
"""
|
|
226
|
+
return pulumi.get(self, "output_format")
|
|
227
|
+
|
|
228
|
+
@_builtins.property
|
|
229
|
+
@pulumi.getter(name="s3BucketName")
|
|
230
|
+
def s3_bucket_name(self) -> pulumi.Output[_builtins.str]:
|
|
231
|
+
"""
|
|
232
|
+
The name of the Amazon S3 bucket where the capacity manager data export will be stored. The bucket must exist and be accessible by EC2 Capacity Manager service.
|
|
233
|
+
"""
|
|
234
|
+
return pulumi.get(self, "s3_bucket_name")
|
|
235
|
+
|
|
236
|
+
@_builtins.property
|
|
237
|
+
@pulumi.getter(name="s3BucketPrefix")
|
|
238
|
+
def s3_bucket_prefix(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
239
|
+
"""
|
|
240
|
+
The prefix for the S3 bucket location where exported files will be placed. If not specified, files will be placed in the root of the bucket.
|
|
241
|
+
"""
|
|
242
|
+
return pulumi.get(self, "s3_bucket_prefix")
|
|
243
|
+
|
|
244
|
+
@_builtins.property
|
|
245
|
+
@pulumi.getter
|
|
246
|
+
def schedule(self) -> pulumi.Output['CapacityManagerDataExportSchedule']:
|
|
247
|
+
"""
|
|
248
|
+
The schedule for the capacity manager data export. Currently supports hourly exports that provide periodic snapshots of capacity manager data.
|
|
249
|
+
"""
|
|
250
|
+
return pulumi.get(self, "schedule")
|
|
251
|
+
|
|
252
|
+
@_builtins.property
|
|
253
|
+
@pulumi.getter
|
|
254
|
+
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
255
|
+
"""
|
|
256
|
+
An array of key-value pairs to apply to the capacity manager data export.
|
|
257
|
+
"""
|
|
258
|
+
return pulumi.get(self, "tags")
|
|
259
|
+
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from .. import outputs as _root_outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetCapacityManagerDataExportResult',
|
|
20
|
+
'AwaitableGetCapacityManagerDataExportResult',
|
|
21
|
+
'get_capacity_manager_data_export',
|
|
22
|
+
'get_capacity_manager_data_export_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetCapacityManagerDataExportResult:
|
|
27
|
+
def __init__(__self__, capacity_manager_data_export_id=None, tags=None):
|
|
28
|
+
if capacity_manager_data_export_id and not isinstance(capacity_manager_data_export_id, str):
|
|
29
|
+
raise TypeError("Expected argument 'capacity_manager_data_export_id' to be a str")
|
|
30
|
+
pulumi.set(__self__, "capacity_manager_data_export_id", capacity_manager_data_export_id)
|
|
31
|
+
if tags and not isinstance(tags, list):
|
|
32
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
33
|
+
pulumi.set(__self__, "tags", tags)
|
|
34
|
+
|
|
35
|
+
@_builtins.property
|
|
36
|
+
@pulumi.getter(name="capacityManagerDataExportId")
|
|
37
|
+
def capacity_manager_data_export_id(self) -> Optional[_builtins.str]:
|
|
38
|
+
"""
|
|
39
|
+
The unique identifier of the capacity manager data export.
|
|
40
|
+
"""
|
|
41
|
+
return pulumi.get(self, "capacity_manager_data_export_id")
|
|
42
|
+
|
|
43
|
+
@_builtins.property
|
|
44
|
+
@pulumi.getter
|
|
45
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
46
|
+
"""
|
|
47
|
+
An array of key-value pairs to apply to the capacity manager data export.
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "tags")
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class AwaitableGetCapacityManagerDataExportResult(GetCapacityManagerDataExportResult):
|
|
53
|
+
# pylint: disable=using-constant-test
|
|
54
|
+
def __await__(self):
|
|
55
|
+
if False:
|
|
56
|
+
yield self
|
|
57
|
+
return GetCapacityManagerDataExportResult(
|
|
58
|
+
capacity_manager_data_export_id=self.capacity_manager_data_export_id,
|
|
59
|
+
tags=self.tags)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def get_capacity_manager_data_export(capacity_manager_data_export_id: Optional[_builtins.str] = None,
|
|
63
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCapacityManagerDataExportResult:
|
|
64
|
+
"""
|
|
65
|
+
Resource Type definition for AWS::EC2::CapacityManagerDataExport
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
:param _builtins.str capacity_manager_data_export_id: The unique identifier of the capacity manager data export.
|
|
69
|
+
"""
|
|
70
|
+
__args__ = dict()
|
|
71
|
+
__args__['capacityManagerDataExportId'] = capacity_manager_data_export_id
|
|
72
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
73
|
+
__ret__ = pulumi.runtime.invoke('aws-native:ec2:getCapacityManagerDataExport', __args__, opts=opts, typ=GetCapacityManagerDataExportResult).value
|
|
74
|
+
|
|
75
|
+
return AwaitableGetCapacityManagerDataExportResult(
|
|
76
|
+
capacity_manager_data_export_id=pulumi.get(__ret__, 'capacity_manager_data_export_id'),
|
|
77
|
+
tags=pulumi.get(__ret__, 'tags'))
|
|
78
|
+
def get_capacity_manager_data_export_output(capacity_manager_data_export_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
79
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCapacityManagerDataExportResult]:
|
|
80
|
+
"""
|
|
81
|
+
Resource Type definition for AWS::EC2::CapacityManagerDataExport
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
:param _builtins.str capacity_manager_data_export_id: The unique identifier of the capacity manager data export.
|
|
85
|
+
"""
|
|
86
|
+
__args__ = dict()
|
|
87
|
+
__args__['capacityManagerDataExportId'] = capacity_manager_data_export_id
|
|
88
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
89
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:ec2:getCapacityManagerDataExport', __args__, opts=opts, typ=GetCapacityManagerDataExportResult)
|
|
90
|
+
return __ret__.apply(lambda __response__: GetCapacityManagerDataExportResult(
|
|
91
|
+
capacity_manager_data_export_id=pulumi.get(__response__, 'capacity_manager_data_export_id'),
|
|
92
|
+
tags=pulumi.get(__response__, 'tags')))
|
pulumi_aws_native/ec2/outputs.py
CHANGED
|
@@ -5689,7 +5689,7 @@ class LaunchTemplateEbs(dict):
|
|
|
5689
5689
|
:param _builtins.bool encrypted: Indicates whether the EBS volume is encrypted. Encrypted volumes can only be attached to instances that support Amazon EBS encryption. If you are creating a volume from a snapshot, you can't specify an encryption value.
|
|
5690
5690
|
:param _builtins.int iops: The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
5691
5691
|
The following are the supported values for each volume type:
|
|
5692
|
-
+ ``gp3``: 3,000 -
|
|
5692
|
+
+ ``gp3``: 3,000 - 80,000 IOPS
|
|
5693
5693
|
+ ``io1``: 100 - 64,000 IOPS
|
|
5694
5694
|
+ ``io2``: 100 - 256,000 IOPS
|
|
5695
5695
|
|
|
@@ -5697,8 +5697,8 @@ class LaunchTemplateEbs(dict):
|
|
|
5697
5697
|
This parameter is supported for ``io1``, ``io2``, and ``gp3`` volumes only.
|
|
5698
5698
|
:param _builtins.str kms_key_id: Identifier (key ID, key alias, key ARN, or alias ARN) of the customer managed KMS key to use for EBS encryption.
|
|
5699
5699
|
:param _builtins.str snapshot_id: The ID of the snapshot.
|
|
5700
|
-
:param _builtins.int throughput: The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
5701
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
5700
|
+
:param _builtins.int throughput: The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
5701
|
+
Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
5702
5702
|
:param _builtins.int volume_initialization_rate: Specifies the Amazon EBS Provisioned Rate for Volume Initialization (volume initialization rate), in MiB/s, at which to download the snapshot blocks from Amazon S3 to the volume. This is also known as *volume initialization*. Specifying a volume initialization rate ensures that the volume is initialized at a predictable and consistent rate after creation.
|
|
5703
5703
|
This parameter is supported only for volumes created from snapshots. Omit this parameter if:
|
|
5704
5704
|
+ You want to create the volume using fast snapshot restore. You must specify a snapshot that is enabled for fast snapshot restore. In this case, the volume is fully initialized at creation.
|
|
@@ -5708,7 +5708,8 @@ class LaunchTemplateEbs(dict):
|
|
|
5708
5708
|
For more information, see [Initialize Amazon EBS volumes](https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html) in the *Amazon EC2 User Guide*.
|
|
5709
5709
|
Valid range: 100 - 300 MiB/s
|
|
5710
5710
|
:param _builtins.int volume_size: The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
5711
|
-
+ ``gp2
|
|
5711
|
+
+ ``gp2``: 1 - 16,384 GiB
|
|
5712
|
+
+ ``gp3``: 1 - 65,536 GiB
|
|
5712
5713
|
+ ``io1``: 4 - 16,384 GiB
|
|
5713
5714
|
+ ``io2``: 4 - 65,536 GiB
|
|
5714
5715
|
+ ``st1`` and ``sc1``: 125 - 16,384 GiB
|
|
@@ -5756,7 +5757,7 @@ class LaunchTemplateEbs(dict):
|
|
|
5756
5757
|
"""
|
|
5757
5758
|
The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
5758
5759
|
The following are the supported values for each volume type:
|
|
5759
|
-
+ ``gp3``: 3,000 -
|
|
5760
|
+
+ ``gp3``: 3,000 - 80,000 IOPS
|
|
5760
5761
|
+ ``io1``: 100 - 64,000 IOPS
|
|
5761
5762
|
+ ``io2``: 100 - 256,000 IOPS
|
|
5762
5763
|
|
|
@@ -5785,8 +5786,8 @@ class LaunchTemplateEbs(dict):
|
|
|
5785
5786
|
@pulumi.getter
|
|
5786
5787
|
def throughput(self) -> Optional[_builtins.int]:
|
|
5787
5788
|
"""
|
|
5788
|
-
The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
5789
|
-
Valid Range: Minimum value of 125. Maximum value of
|
|
5789
|
+
The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
5790
|
+
Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
5790
5791
|
"""
|
|
5791
5792
|
return pulumi.get(self, "throughput")
|
|
5792
5793
|
|
|
@@ -5810,7 +5811,8 @@ class LaunchTemplateEbs(dict):
|
|
|
5810
5811
|
def volume_size(self) -> Optional[_builtins.int]:
|
|
5811
5812
|
"""
|
|
5812
5813
|
The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
5813
|
-
+ ``gp2
|
|
5814
|
+
+ ``gp2``: 1 - 16,384 GiB
|
|
5815
|
+
+ ``gp3``: 1 - 65,536 GiB
|
|
5814
5816
|
+ ``io1``: 4 - 16,384 GiB
|
|
5815
5817
|
+ ``io2``: 4 - 65,536 GiB
|
|
5816
5818
|
+ ``st1`` and ``sc1``: 125 - 16,384 GiB
|
pulumi_aws_native/ecs/_enums.py
CHANGED
|
@@ -25,6 +25,8 @@ __all__ = [
|
|
|
25
25
|
'ClusterCapacityProviderAssociationsCapacityProvider0',
|
|
26
26
|
'ServiceAvailabilityZoneRebalancing',
|
|
27
27
|
'ServiceAwsVpcConfigurationAssignPublicIp',
|
|
28
|
+
'ServiceConnectAccessLogConfigurationFormat',
|
|
29
|
+
'ServiceConnectAccessLogConfigurationIncludeQueryParameters',
|
|
28
30
|
'ServiceDeploymentConfigurationStrategy',
|
|
29
31
|
'ServiceDeploymentControllerType',
|
|
30
32
|
'ServiceDeploymentLifecycleHookLifecycleStagesItem',
|
|
@@ -216,6 +218,18 @@ class ServiceAwsVpcConfigurationAssignPublicIp(_builtins.str, Enum):
|
|
|
216
218
|
ENABLED = "ENABLED"
|
|
217
219
|
|
|
218
220
|
|
|
221
|
+
@pulumi.type_token("aws-native:ecs:ServiceConnectAccessLogConfigurationFormat")
|
|
222
|
+
class ServiceConnectAccessLogConfigurationFormat(_builtins.str, Enum):
|
|
223
|
+
TEXT = "TEXT"
|
|
224
|
+
JSON = "JSON"
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
@pulumi.type_token("aws-native:ecs:ServiceConnectAccessLogConfigurationIncludeQueryParameters")
|
|
228
|
+
class ServiceConnectAccessLogConfigurationIncludeQueryParameters(_builtins.str, Enum):
|
|
229
|
+
DISABLED = "DISABLED"
|
|
230
|
+
ENABLED = "ENABLED"
|
|
231
|
+
|
|
232
|
+
|
|
219
233
|
@pulumi.type_token("aws-native:ecs:ServiceDeploymentConfigurationStrategy")
|
|
220
234
|
class ServiceDeploymentConfigurationStrategy(_builtins.str, Enum):
|
|
221
235
|
"""
|