pulumi-aws-native 1.38.0a1761803003__py3-none-any.whl → 1.38.0a1762272920__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 +17 -1
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +9 -0
- pulumi_aws_native/batch/job_definition.py +8 -0
- pulumi_aws_native/batch/outputs.py +6 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/connection.py +30 -1
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +9 -0
- pulumi_aws_native/ecs/_inputs.py +96 -15
- pulumi_aws_native/ecs/outputs.py +60 -10
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/networkfirewall/_inputs.py +7 -0
- pulumi_aws_native/networkfirewall/firewall.py +3 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +3 -0
- pulumi_aws_native/networkfirewall/outputs.py +4 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/_enums.py +3 -0
- pulumi_aws_native/rtbfabric/_inputs.py +70 -0
- pulumi_aws_native/rtbfabric/get_link.py +18 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +51 -0
- pulumi_aws_native/rtbfabric/outputs.py +46 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_inputs.py +9 -0
- pulumi_aws_native/transfer/connector.py +3 -0
- pulumi_aws_native/transfer/get_connector.py +3 -0
- pulumi_aws_native/transfer/outputs.py +6 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +88 -72
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,199 @@
|
|
|
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
|
|
17
|
+
from ._enums import *
|
|
18
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['VectorBucketArgs', 'VectorBucket']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class VectorBucketArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
encryption_configuration: Optional[pulumi.Input['VectorBucketEncryptionConfigurationArgs']] = None,
|
|
26
|
+
vector_bucket_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
27
|
+
"""
|
|
28
|
+
The set of arguments for constructing a VectorBucket resource.
|
|
29
|
+
:param pulumi.Input['VectorBucketEncryptionConfigurationArgs'] encryption_configuration: The encryption configuration for the vector bucket.
|
|
30
|
+
:param pulumi.Input[_builtins.str] vector_bucket_name: A name for the vector bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). The bucket name must be unique in the same AWS account for each AWS Region. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name.
|
|
31
|
+
|
|
32
|
+
The bucket name must be between 3 and 63 characters long and must not contain uppercase characters or underscores.
|
|
33
|
+
|
|
34
|
+
> If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
|
|
35
|
+
"""
|
|
36
|
+
if encryption_configuration is not None:
|
|
37
|
+
pulumi.set(__self__, "encryption_configuration", encryption_configuration)
|
|
38
|
+
if vector_bucket_name is not None:
|
|
39
|
+
pulumi.set(__self__, "vector_bucket_name", vector_bucket_name)
|
|
40
|
+
|
|
41
|
+
@_builtins.property
|
|
42
|
+
@pulumi.getter(name="encryptionConfiguration")
|
|
43
|
+
def encryption_configuration(self) -> Optional[pulumi.Input['VectorBucketEncryptionConfigurationArgs']]:
|
|
44
|
+
"""
|
|
45
|
+
The encryption configuration for the vector bucket.
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "encryption_configuration")
|
|
48
|
+
|
|
49
|
+
@encryption_configuration.setter
|
|
50
|
+
def encryption_configuration(self, value: Optional[pulumi.Input['VectorBucketEncryptionConfigurationArgs']]):
|
|
51
|
+
pulumi.set(self, "encryption_configuration", value)
|
|
52
|
+
|
|
53
|
+
@_builtins.property
|
|
54
|
+
@pulumi.getter(name="vectorBucketName")
|
|
55
|
+
def vector_bucket_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
56
|
+
"""
|
|
57
|
+
A name for the vector bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). The bucket name must be unique in the same AWS account for each AWS Region. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name.
|
|
58
|
+
|
|
59
|
+
The bucket name must be between 3 and 63 characters long and must not contain uppercase characters or underscores.
|
|
60
|
+
|
|
61
|
+
> If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "vector_bucket_name")
|
|
64
|
+
|
|
65
|
+
@vector_bucket_name.setter
|
|
66
|
+
def vector_bucket_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
67
|
+
pulumi.set(self, "vector_bucket_name", value)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
@pulumi.type_token("aws-native:s3vectors:VectorBucket")
|
|
71
|
+
class VectorBucket(pulumi.CustomResource):
|
|
72
|
+
@overload
|
|
73
|
+
def __init__(__self__,
|
|
74
|
+
resource_name: str,
|
|
75
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
76
|
+
encryption_configuration: Optional[pulumi.Input[Union['VectorBucketEncryptionConfigurationArgs', 'VectorBucketEncryptionConfigurationArgsDict']]] = None,
|
|
77
|
+
vector_bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
78
|
+
__props__=None):
|
|
79
|
+
"""
|
|
80
|
+
Resource Type definition for AWS::S3Vectors::VectorBucket
|
|
81
|
+
|
|
82
|
+
:param str resource_name: The name of the resource.
|
|
83
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
84
|
+
:param pulumi.Input[Union['VectorBucketEncryptionConfigurationArgs', 'VectorBucketEncryptionConfigurationArgsDict']] encryption_configuration: The encryption configuration for the vector bucket.
|
|
85
|
+
:param pulumi.Input[_builtins.str] vector_bucket_name: A name for the vector bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). The bucket name must be unique in the same AWS account for each AWS Region. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name.
|
|
86
|
+
|
|
87
|
+
The bucket name must be between 3 and 63 characters long and must not contain uppercase characters or underscores.
|
|
88
|
+
|
|
89
|
+
> If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
|
|
90
|
+
"""
|
|
91
|
+
...
|
|
92
|
+
@overload
|
|
93
|
+
def __init__(__self__,
|
|
94
|
+
resource_name: str,
|
|
95
|
+
args: Optional[VectorBucketArgs] = None,
|
|
96
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
97
|
+
"""
|
|
98
|
+
Resource Type definition for AWS::S3Vectors::VectorBucket
|
|
99
|
+
|
|
100
|
+
:param str resource_name: The name of the resource.
|
|
101
|
+
:param VectorBucketArgs args: The arguments to use to populate this resource's properties.
|
|
102
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
103
|
+
"""
|
|
104
|
+
...
|
|
105
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
106
|
+
resource_args, opts = _utilities.get_resource_args_opts(VectorBucketArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
107
|
+
if resource_args is not None:
|
|
108
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
109
|
+
else:
|
|
110
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
111
|
+
|
|
112
|
+
def _internal_init(__self__,
|
|
113
|
+
resource_name: str,
|
|
114
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
115
|
+
encryption_configuration: Optional[pulumi.Input[Union['VectorBucketEncryptionConfigurationArgs', 'VectorBucketEncryptionConfigurationArgsDict']]] = None,
|
|
116
|
+
vector_bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
117
|
+
__props__=None):
|
|
118
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
119
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
120
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
121
|
+
if opts.id is None:
|
|
122
|
+
if __props__ is not None:
|
|
123
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
124
|
+
__props__ = VectorBucketArgs.__new__(VectorBucketArgs)
|
|
125
|
+
|
|
126
|
+
__props__.__dict__["encryption_configuration"] = encryption_configuration
|
|
127
|
+
__props__.__dict__["vector_bucket_name"] = vector_bucket_name
|
|
128
|
+
__props__.__dict__["creation_time"] = None
|
|
129
|
+
__props__.__dict__["vector_bucket_arn"] = None
|
|
130
|
+
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["encryptionConfiguration", "vectorBucketName"])
|
|
131
|
+
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
132
|
+
super(VectorBucket, __self__).__init__(
|
|
133
|
+
'aws-native:s3vectors:VectorBucket',
|
|
134
|
+
resource_name,
|
|
135
|
+
__props__,
|
|
136
|
+
opts)
|
|
137
|
+
|
|
138
|
+
@staticmethod
|
|
139
|
+
def get(resource_name: str,
|
|
140
|
+
id: pulumi.Input[str],
|
|
141
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'VectorBucket':
|
|
142
|
+
"""
|
|
143
|
+
Get an existing VectorBucket resource's state with the given name, id, and optional extra
|
|
144
|
+
properties used to qualify the lookup.
|
|
145
|
+
|
|
146
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
147
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
148
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
149
|
+
"""
|
|
150
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
151
|
+
|
|
152
|
+
__props__ = VectorBucketArgs.__new__(VectorBucketArgs)
|
|
153
|
+
|
|
154
|
+
__props__.__dict__["creation_time"] = None
|
|
155
|
+
__props__.__dict__["encryption_configuration"] = None
|
|
156
|
+
__props__.__dict__["vector_bucket_arn"] = None
|
|
157
|
+
__props__.__dict__["vector_bucket_name"] = None
|
|
158
|
+
return VectorBucket(resource_name, opts=opts, __props__=__props__)
|
|
159
|
+
|
|
160
|
+
@_builtins.property
|
|
161
|
+
@pulumi.getter(name="creationTime")
|
|
162
|
+
def creation_time(self) -> pulumi.Output[_builtins.str]:
|
|
163
|
+
"""
|
|
164
|
+
Returns the date and time when the vector bucket was created.
|
|
165
|
+
|
|
166
|
+
Example: `2024-12-21T10:30:00Z`
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "creation_time")
|
|
169
|
+
|
|
170
|
+
@_builtins.property
|
|
171
|
+
@pulumi.getter(name="encryptionConfiguration")
|
|
172
|
+
def encryption_configuration(self) -> pulumi.Output[Optional['outputs.VectorBucketEncryptionConfiguration']]:
|
|
173
|
+
"""
|
|
174
|
+
The encryption configuration for the vector bucket.
|
|
175
|
+
"""
|
|
176
|
+
return pulumi.get(self, "encryption_configuration")
|
|
177
|
+
|
|
178
|
+
@_builtins.property
|
|
179
|
+
@pulumi.getter(name="vectorBucketArn")
|
|
180
|
+
def vector_bucket_arn(self) -> pulumi.Output[_builtins.str]:
|
|
181
|
+
"""
|
|
182
|
+
Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
183
|
+
|
|
184
|
+
Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
185
|
+
"""
|
|
186
|
+
return pulumi.get(self, "vector_bucket_arn")
|
|
187
|
+
|
|
188
|
+
@_builtins.property
|
|
189
|
+
@pulumi.getter(name="vectorBucketName")
|
|
190
|
+
def vector_bucket_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
191
|
+
"""
|
|
192
|
+
A name for the vector bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). The bucket name must be unique in the same AWS account for each AWS Region. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name.
|
|
193
|
+
|
|
194
|
+
The bucket name must be between 3 and 63 characters long and must not contain uppercase characters or underscores.
|
|
195
|
+
|
|
196
|
+
> If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
|
|
197
|
+
"""
|
|
198
|
+
return pulumi.get(self, "vector_bucket_name")
|
|
199
|
+
|
|
@@ -0,0 +1,188 @@
|
|
|
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
|
|
17
|
+
from ._inputs import *
|
|
18
|
+
|
|
19
|
+
__all__ = ['VectorBucketPolicyArgs', 'VectorBucketPolicy']
|
|
20
|
+
|
|
21
|
+
@pulumi.input_type
|
|
22
|
+
class VectorBucketPolicyArgs:
|
|
23
|
+
def __init__(__self__, *,
|
|
24
|
+
policy: pulumi.Input['VectorBucketPolicyPolicyArgs'],
|
|
25
|
+
vector_bucket_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
vector_bucket_name: Optional[pulumi.Input[_builtins.str]] = None):
|
|
27
|
+
"""
|
|
28
|
+
The set of arguments for constructing a VectorBucketPolicy resource.
|
|
29
|
+
:param pulumi.Input['VectorBucketPolicyPolicyArgs'] policy: A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
30
|
+
:param pulumi.Input[_builtins.str] vector_bucket_arn: The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
31
|
+
:param pulumi.Input[_builtins.str] vector_bucket_name: The name of the S3 vector bucket to which the policy applies.
|
|
32
|
+
"""
|
|
33
|
+
pulumi.set(__self__, "policy", policy)
|
|
34
|
+
if vector_bucket_arn is not None:
|
|
35
|
+
pulumi.set(__self__, "vector_bucket_arn", vector_bucket_arn)
|
|
36
|
+
if vector_bucket_name is not None:
|
|
37
|
+
pulumi.set(__self__, "vector_bucket_name", vector_bucket_name)
|
|
38
|
+
|
|
39
|
+
@_builtins.property
|
|
40
|
+
@pulumi.getter
|
|
41
|
+
def policy(self) -> pulumi.Input['VectorBucketPolicyPolicyArgs']:
|
|
42
|
+
"""
|
|
43
|
+
A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
44
|
+
"""
|
|
45
|
+
return pulumi.get(self, "policy")
|
|
46
|
+
|
|
47
|
+
@policy.setter
|
|
48
|
+
def policy(self, value: pulumi.Input['VectorBucketPolicyPolicyArgs']):
|
|
49
|
+
pulumi.set(self, "policy", value)
|
|
50
|
+
|
|
51
|
+
@_builtins.property
|
|
52
|
+
@pulumi.getter(name="vectorBucketArn")
|
|
53
|
+
def vector_bucket_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
54
|
+
"""
|
|
55
|
+
The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "vector_bucket_arn")
|
|
58
|
+
|
|
59
|
+
@vector_bucket_arn.setter
|
|
60
|
+
def vector_bucket_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
61
|
+
pulumi.set(self, "vector_bucket_arn", value)
|
|
62
|
+
|
|
63
|
+
@_builtins.property
|
|
64
|
+
@pulumi.getter(name="vectorBucketName")
|
|
65
|
+
def vector_bucket_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
66
|
+
"""
|
|
67
|
+
The name of the S3 vector bucket to which the policy applies.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "vector_bucket_name")
|
|
70
|
+
|
|
71
|
+
@vector_bucket_name.setter
|
|
72
|
+
def vector_bucket_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
73
|
+
pulumi.set(self, "vector_bucket_name", value)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
@pulumi.type_token("aws-native:s3vectors:VectorBucketPolicy")
|
|
77
|
+
class VectorBucketPolicy(pulumi.CustomResource):
|
|
78
|
+
@overload
|
|
79
|
+
def __init__(__self__,
|
|
80
|
+
resource_name: str,
|
|
81
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
82
|
+
policy: Optional[pulumi.Input[Union['VectorBucketPolicyPolicyArgs', 'VectorBucketPolicyPolicyArgsDict']]] = None,
|
|
83
|
+
vector_bucket_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
84
|
+
vector_bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
85
|
+
__props__=None):
|
|
86
|
+
"""
|
|
87
|
+
Resource Type definition for AWS::S3Vectors::VectorBucketPolicy
|
|
88
|
+
|
|
89
|
+
:param str resource_name: The name of the resource.
|
|
90
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
91
|
+
:param pulumi.Input[Union['VectorBucketPolicyPolicyArgs', 'VectorBucketPolicyPolicyArgsDict']] policy: A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
92
|
+
:param pulumi.Input[_builtins.str] vector_bucket_arn: The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
93
|
+
:param pulumi.Input[_builtins.str] vector_bucket_name: The name of the S3 vector bucket to which the policy applies.
|
|
94
|
+
"""
|
|
95
|
+
...
|
|
96
|
+
@overload
|
|
97
|
+
def __init__(__self__,
|
|
98
|
+
resource_name: str,
|
|
99
|
+
args: VectorBucketPolicyArgs,
|
|
100
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
101
|
+
"""
|
|
102
|
+
Resource Type definition for AWS::S3Vectors::VectorBucketPolicy
|
|
103
|
+
|
|
104
|
+
:param str resource_name: The name of the resource.
|
|
105
|
+
:param VectorBucketPolicyArgs args: The arguments to use to populate this resource's properties.
|
|
106
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
107
|
+
"""
|
|
108
|
+
...
|
|
109
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
110
|
+
resource_args, opts = _utilities.get_resource_args_opts(VectorBucketPolicyArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
111
|
+
if resource_args is not None:
|
|
112
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
113
|
+
else:
|
|
114
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
115
|
+
|
|
116
|
+
def _internal_init(__self__,
|
|
117
|
+
resource_name: str,
|
|
118
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
119
|
+
policy: Optional[pulumi.Input[Union['VectorBucketPolicyPolicyArgs', 'VectorBucketPolicyPolicyArgsDict']]] = None,
|
|
120
|
+
vector_bucket_arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
121
|
+
vector_bucket_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
122
|
+
__props__=None):
|
|
123
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
124
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
125
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
126
|
+
if opts.id is None:
|
|
127
|
+
if __props__ is not None:
|
|
128
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
129
|
+
__props__ = VectorBucketPolicyArgs.__new__(VectorBucketPolicyArgs)
|
|
130
|
+
|
|
131
|
+
if policy is None and not opts.urn:
|
|
132
|
+
raise TypeError("Missing required property 'policy'")
|
|
133
|
+
__props__.__dict__["policy"] = policy
|
|
134
|
+
__props__.__dict__["vector_bucket_arn"] = vector_bucket_arn
|
|
135
|
+
__props__.__dict__["vector_bucket_name"] = vector_bucket_name
|
|
136
|
+
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["vectorBucketArn", "vectorBucketName"])
|
|
137
|
+
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
138
|
+
super(VectorBucketPolicy, __self__).__init__(
|
|
139
|
+
'aws-native:s3vectors:VectorBucketPolicy',
|
|
140
|
+
resource_name,
|
|
141
|
+
__props__,
|
|
142
|
+
opts)
|
|
143
|
+
|
|
144
|
+
@staticmethod
|
|
145
|
+
def get(resource_name: str,
|
|
146
|
+
id: pulumi.Input[str],
|
|
147
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'VectorBucketPolicy':
|
|
148
|
+
"""
|
|
149
|
+
Get an existing VectorBucketPolicy resource's state with the given name, id, and optional extra
|
|
150
|
+
properties used to qualify the lookup.
|
|
151
|
+
|
|
152
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
153
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
154
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
155
|
+
"""
|
|
156
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
157
|
+
|
|
158
|
+
__props__ = VectorBucketPolicyArgs.__new__(VectorBucketPolicyArgs)
|
|
159
|
+
|
|
160
|
+
__props__.__dict__["policy"] = None
|
|
161
|
+
__props__.__dict__["vector_bucket_arn"] = None
|
|
162
|
+
__props__.__dict__["vector_bucket_name"] = None
|
|
163
|
+
return VectorBucketPolicy(resource_name, opts=opts, __props__=__props__)
|
|
164
|
+
|
|
165
|
+
@_builtins.property
|
|
166
|
+
@pulumi.getter
|
|
167
|
+
def policy(self) -> pulumi.Output['outputs.VectorBucketPolicyPolicy']:
|
|
168
|
+
"""
|
|
169
|
+
A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "policy")
|
|
172
|
+
|
|
173
|
+
@_builtins.property
|
|
174
|
+
@pulumi.getter(name="vectorBucketArn")
|
|
175
|
+
def vector_bucket_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
176
|
+
"""
|
|
177
|
+
The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "vector_bucket_arn")
|
|
180
|
+
|
|
181
|
+
@_builtins.property
|
|
182
|
+
@pulumi.getter(name="vectorBucketName")
|
|
183
|
+
def vector_bucket_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
184
|
+
"""
|
|
185
|
+
The name of the S3 vector bucket to which the policy applies.
|
|
186
|
+
"""
|
|
187
|
+
return pulumi.get(self, "vector_bucket_name")
|
|
188
|
+
|
pulumi_aws_native/sso/_enums.py
CHANGED
|
@@ -65,7 +65,7 @@ class AssignmentPrincipalType(_builtins.str, Enum):
|
|
|
65
65
|
@pulumi.type_token("aws-native:sso:AssignmentTargetType")
|
|
66
66
|
class AssignmentTargetType(_builtins.str, Enum):
|
|
67
67
|
"""
|
|
68
|
-
The type of resource to be
|
|
68
|
+
The type of resource to be provisioned to, only aws account now
|
|
69
69
|
"""
|
|
70
70
|
AWS_ACCOUNT = "AWS_ACCOUNT"
|
|
71
71
|
|
|
@@ -29,11 +29,11 @@ class AssignmentArgs:
|
|
|
29
29
|
"""
|
|
30
30
|
The set of arguments for constructing a Assignment resource.
|
|
31
31
|
:param pulumi.Input[_builtins.str] instance_arn: The sso instance that the permission set is owned.
|
|
32
|
-
:param pulumi.Input[_builtins.str] permission_set_arn: The permission set that the
|
|
32
|
+
:param pulumi.Input[_builtins.str] permission_set_arn: The permission set that the assignment will be assigned
|
|
33
33
|
:param pulumi.Input[_builtins.str] principal_id: The assignee's identifier, user id/group id
|
|
34
34
|
:param pulumi.Input['AssignmentPrincipalType'] principal_type: The assignee's type, user/group
|
|
35
35
|
:param pulumi.Input[_builtins.str] target_id: The account id to be provisioned.
|
|
36
|
-
:param pulumi.Input['AssignmentTargetType'] target_type: The type of resource to be
|
|
36
|
+
:param pulumi.Input['AssignmentTargetType'] target_type: The type of resource to be provisioned to, only aws account now
|
|
37
37
|
"""
|
|
38
38
|
pulumi.set(__self__, "instance_arn", instance_arn)
|
|
39
39
|
pulumi.set(__self__, "permission_set_arn", permission_set_arn)
|
|
@@ -58,7 +58,7 @@ class AssignmentArgs:
|
|
|
58
58
|
@pulumi.getter(name="permissionSetArn")
|
|
59
59
|
def permission_set_arn(self) -> pulumi.Input[_builtins.str]:
|
|
60
60
|
"""
|
|
61
|
-
The permission set that the
|
|
61
|
+
The permission set that the assignment will be assigned
|
|
62
62
|
"""
|
|
63
63
|
return pulumi.get(self, "permission_set_arn")
|
|
64
64
|
|
|
@@ -106,7 +106,7 @@ class AssignmentArgs:
|
|
|
106
106
|
@pulumi.getter(name="targetType")
|
|
107
107
|
def target_type(self) -> pulumi.Input['AssignmentTargetType']:
|
|
108
108
|
"""
|
|
109
|
-
The type of resource to be
|
|
109
|
+
The type of resource to be provisioned to, only aws account now
|
|
110
110
|
"""
|
|
111
111
|
return pulumi.get(self, "target_type")
|
|
112
112
|
|
|
@@ -134,11 +134,11 @@ class Assignment(pulumi.CustomResource):
|
|
|
134
134
|
:param str resource_name: The name of the resource.
|
|
135
135
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
136
136
|
:param pulumi.Input[_builtins.str] instance_arn: The sso instance that the permission set is owned.
|
|
137
|
-
:param pulumi.Input[_builtins.str] permission_set_arn: The permission set that the
|
|
137
|
+
:param pulumi.Input[_builtins.str] permission_set_arn: The permission set that the assignment will be assigned
|
|
138
138
|
:param pulumi.Input[_builtins.str] principal_id: The assignee's identifier, user id/group id
|
|
139
139
|
:param pulumi.Input['AssignmentPrincipalType'] principal_type: The assignee's type, user/group
|
|
140
140
|
:param pulumi.Input[_builtins.str] target_id: The account id to be provisioned.
|
|
141
|
-
:param pulumi.Input['AssignmentTargetType'] target_type: The type of resource to be
|
|
141
|
+
:param pulumi.Input['AssignmentTargetType'] target_type: The type of resource to be provisioned to, only aws account now
|
|
142
142
|
"""
|
|
143
143
|
...
|
|
144
144
|
@overload
|
|
@@ -241,7 +241,7 @@ class Assignment(pulumi.CustomResource):
|
|
|
241
241
|
@pulumi.getter(name="permissionSetArn")
|
|
242
242
|
def permission_set_arn(self) -> pulumi.Output[_builtins.str]:
|
|
243
243
|
"""
|
|
244
|
-
The permission set that the
|
|
244
|
+
The permission set that the assignment will be assigned
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "permission_set_arn")
|
|
247
247
|
|
|
@@ -273,7 +273,7 @@ class Assignment(pulumi.CustomResource):
|
|
|
273
273
|
@pulumi.getter(name="targetType")
|
|
274
274
|
def target_type(self) -> pulumi.Output['AssignmentTargetType']:
|
|
275
275
|
"""
|
|
276
|
-
The type of resource to be
|
|
276
|
+
The type of resource to be provisioned to, only aws account now
|
|
277
277
|
"""
|
|
278
278
|
return pulumi.get(self, "target_type")
|
|
279
279
|
|
|
@@ -293,6 +293,9 @@ class As2ConfigPropertiesArgs:
|
|
|
293
293
|
if not MYPY:
|
|
294
294
|
class ConnectorEgressConfigArgsDict(TypedDict):
|
|
295
295
|
vpc_lattice: pulumi.Input['ConnectorVpcLatticeEgressConfigArgsDict']
|
|
296
|
+
"""
|
|
297
|
+
VPC_LATTICE configuration for routing connector traffic through customer VPCs. Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.
|
|
298
|
+
"""
|
|
296
299
|
elif False:
|
|
297
300
|
ConnectorEgressConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
298
301
|
|
|
@@ -300,11 +303,17 @@ elif False:
|
|
|
300
303
|
class ConnectorEgressConfigArgs:
|
|
301
304
|
def __init__(__self__, *,
|
|
302
305
|
vpc_lattice: pulumi.Input['ConnectorVpcLatticeEgressConfigArgs']):
|
|
306
|
+
"""
|
|
307
|
+
:param pulumi.Input['ConnectorVpcLatticeEgressConfigArgs'] vpc_lattice: VPC_LATTICE configuration for routing connector traffic through customer VPCs. Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.
|
|
308
|
+
"""
|
|
303
309
|
pulumi.set(__self__, "vpc_lattice", vpc_lattice)
|
|
304
310
|
|
|
305
311
|
@_builtins.property
|
|
306
312
|
@pulumi.getter(name="vpcLattice")
|
|
307
313
|
def vpc_lattice(self) -> pulumi.Input['ConnectorVpcLatticeEgressConfigArgs']:
|
|
314
|
+
"""
|
|
315
|
+
VPC_LATTICE configuration for routing connector traffic through customer VPCs. Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.
|
|
316
|
+
"""
|
|
308
317
|
return pulumi.get(self, "vpc_lattice")
|
|
309
318
|
|
|
310
319
|
@vpc_lattice.setter
|
|
@@ -380,6 +380,9 @@ class Connector(pulumi.CustomResource):
|
|
|
380
380
|
@_builtins.property
|
|
381
381
|
@pulumi.getter
|
|
382
382
|
def status(self) -> pulumi.Output['ConnectorStatus']:
|
|
383
|
+
"""
|
|
384
|
+
Current status of the connector. PENDING indicates creation/update in progress, ACTIVE means ready for operations, and ERRORED indicates a failure requiring attention.
|
|
385
|
+
"""
|
|
383
386
|
return pulumi.get(self, "status")
|
|
384
387
|
|
|
385
388
|
@_builtins.property
|
|
@@ -150,6 +150,9 @@ class GetConnectorResult:
|
|
|
150
150
|
@_builtins.property
|
|
151
151
|
@pulumi.getter
|
|
152
152
|
def status(self) -> Optional['ConnectorStatus']:
|
|
153
|
+
"""
|
|
154
|
+
Current status of the connector. PENDING indicates creation/update in progress, ACTIVE means ready for operations, and ERRORED indicates a failure requiring attention.
|
|
155
|
+
"""
|
|
153
156
|
return pulumi.get(self, "status")
|
|
154
157
|
|
|
155
158
|
@_builtins.property
|
|
@@ -231,11 +231,17 @@ class ConnectorEgressConfig(dict):
|
|
|
231
231
|
|
|
232
232
|
def __init__(__self__, *,
|
|
233
233
|
vpc_lattice: 'outputs.ConnectorVpcLatticeEgressConfig'):
|
|
234
|
+
"""
|
|
235
|
+
:param 'ConnectorVpcLatticeEgressConfig' vpc_lattice: VPC_LATTICE configuration for routing connector traffic through customer VPCs. Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.
|
|
236
|
+
"""
|
|
234
237
|
pulumi.set(__self__, "vpc_lattice", vpc_lattice)
|
|
235
238
|
|
|
236
239
|
@_builtins.property
|
|
237
240
|
@pulumi.getter(name="vpcLattice")
|
|
238
241
|
def vpc_lattice(self) -> 'outputs.ConnectorVpcLatticeEgressConfig':
|
|
242
|
+
"""
|
|
243
|
+
VPC_LATTICE configuration for routing connector traffic through customer VPCs. Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.
|
|
244
|
+
"""
|
|
239
245
|
return pulumi.get(self, "vpc_lattice")
|
|
240
246
|
|
|
241
247
|
|
|
@@ -156,6 +156,10 @@ __all__ = [
|
|
|
156
156
|
'WebAclAllowActionArgsDict',
|
|
157
157
|
'WebAclAndStatementArgs',
|
|
158
158
|
'WebAclAndStatementArgsDict',
|
|
159
|
+
'WebAclApplicationAttributeArgs',
|
|
160
|
+
'WebAclApplicationAttributeArgsDict',
|
|
161
|
+
'WebAclApplicationConfigArgs',
|
|
162
|
+
'WebAclApplicationConfigArgsDict',
|
|
159
163
|
'WebAclAsnMatchStatementArgs',
|
|
160
164
|
'WebAclAsnMatchStatementArgsDict',
|
|
161
165
|
'WebAclAssociationConfigArgs',
|
|
@@ -5747,6 +5751,74 @@ class WebAclAndStatementArgs:
|
|
|
5747
5751
|
pulumi.set(self, "statements", value)
|
|
5748
5752
|
|
|
5749
5753
|
|
|
5754
|
+
if not MYPY:
|
|
5755
|
+
class WebAclApplicationAttributeArgsDict(TypedDict):
|
|
5756
|
+
"""
|
|
5757
|
+
Application details defined during the &webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
5758
|
+
"""
|
|
5759
|
+
name: pulumi.Input[_builtins.str]
|
|
5760
|
+
values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
5761
|
+
elif False:
|
|
5762
|
+
WebAclApplicationAttributeArgsDict: TypeAlias = Mapping[str, Any]
|
|
5763
|
+
|
|
5764
|
+
@pulumi.input_type
|
|
5765
|
+
class WebAclApplicationAttributeArgs:
|
|
5766
|
+
def __init__(__self__, *,
|
|
5767
|
+
name: pulumi.Input[_builtins.str],
|
|
5768
|
+
values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
5769
|
+
"""
|
|
5770
|
+
Application details defined during the &webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
5771
|
+
"""
|
|
5772
|
+
pulumi.set(__self__, "name", name)
|
|
5773
|
+
pulumi.set(__self__, "values", values)
|
|
5774
|
+
|
|
5775
|
+
@_builtins.property
|
|
5776
|
+
@pulumi.getter
|
|
5777
|
+
def name(self) -> pulumi.Input[_builtins.str]:
|
|
5778
|
+
return pulumi.get(self, "name")
|
|
5779
|
+
|
|
5780
|
+
@name.setter
|
|
5781
|
+
def name(self, value: pulumi.Input[_builtins.str]):
|
|
5782
|
+
pulumi.set(self, "name", value)
|
|
5783
|
+
|
|
5784
|
+
@_builtins.property
|
|
5785
|
+
@pulumi.getter
|
|
5786
|
+
def values(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
5787
|
+
return pulumi.get(self, "values")
|
|
5788
|
+
|
|
5789
|
+
@values.setter
|
|
5790
|
+
def values(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
5791
|
+
pulumi.set(self, "values", value)
|
|
5792
|
+
|
|
5793
|
+
|
|
5794
|
+
if not MYPY:
|
|
5795
|
+
class WebAclApplicationConfigArgsDict(TypedDict):
|
|
5796
|
+
"""
|
|
5797
|
+
Configures the ability for the WAF; console to store and retrieve application attributes during the webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
5798
|
+
"""
|
|
5799
|
+
attributes: pulumi.Input[Sequence[pulumi.Input['WebAclApplicationAttributeArgsDict']]]
|
|
5800
|
+
elif False:
|
|
5801
|
+
WebAclApplicationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
5802
|
+
|
|
5803
|
+
@pulumi.input_type
|
|
5804
|
+
class WebAclApplicationConfigArgs:
|
|
5805
|
+
def __init__(__self__, *,
|
|
5806
|
+
attributes: pulumi.Input[Sequence[pulumi.Input['WebAclApplicationAttributeArgs']]]):
|
|
5807
|
+
"""
|
|
5808
|
+
Configures the ability for the WAF; console to store and retrieve application attributes during the webacl; creation process. Application attributes help WAF; give recommendations for protection packs.
|
|
5809
|
+
"""
|
|
5810
|
+
pulumi.set(__self__, "attributes", attributes)
|
|
5811
|
+
|
|
5812
|
+
@_builtins.property
|
|
5813
|
+
@pulumi.getter
|
|
5814
|
+
def attributes(self) -> pulumi.Input[Sequence[pulumi.Input['WebAclApplicationAttributeArgs']]]:
|
|
5815
|
+
return pulumi.get(self, "attributes")
|
|
5816
|
+
|
|
5817
|
+
@attributes.setter
|
|
5818
|
+
def attributes(self, value: pulumi.Input[Sequence[pulumi.Input['WebAclApplicationAttributeArgs']]]):
|
|
5819
|
+
pulumi.set(self, "attributes", value)
|
|
5820
|
+
|
|
5821
|
+
|
|
5750
5822
|
if not MYPY:
|
|
5751
5823
|
class WebAclAsnMatchStatementArgsDict(TypedDict):
|
|
5752
5824
|
asn_list: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]
|