@awboost/cfn-resource-types 0.1.473 → 0.1.475

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.
@@ -32,7 +32,7 @@ export type AppConfigDeploymentProperties = {
32
32
  EnvironmentId: string;
33
33
  /**
34
34
  * The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
35
- * @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
35
+ * @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\d{1}:\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
36
36
  */
37
37
  KmsKeyIdentifier?: string;
38
38
  /**
@@ -35,6 +35,7 @@ export type BedrockAgentCoreGatewayTargetAttributes = {
35
35
  * @pattern `^arn:aws(|-cn|-us-gov):bedrock-agentcore:[a-z0-9-]{1,20}:[0-9]{12}:gateway/([0-9a-z][-]?){1,100}-[a-z0-9]{10}$`
36
36
  */
37
37
  GatewayArn: string;
38
+ LastSynchronizedAt: string;
38
39
  Status: TargetStatus;
39
40
  /**
40
41
  * @maxLength `100`
@@ -116,6 +117,16 @@ export type McpLambdaTargetConfiguration = {
116
117
  LambdaArn: string;
117
118
  ToolSchema: ToolSchema;
118
119
  };
120
+ /**
121
+ * Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpServerTargetConfiguration`.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcpservertargetconfiguration.html}
123
+ */
124
+ export type McpServerTargetConfiguration = {
125
+ /**
126
+ * @pattern `^https://.*`
127
+ */
128
+ Endpoint: string;
129
+ };
119
130
  /**
120
131
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.McpTargetConfiguration`.
121
132
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-mcptargetconfiguration.html}
@@ -126,6 +137,8 @@ export type McpTargetConfiguration = {
126
137
  SmithyModel: ApiSchemaConfiguration;
127
138
  } | {
128
139
  Lambda: McpLambdaTargetConfiguration;
140
+ } | {
141
+ McpServer: McpServerTargetConfiguration;
129
142
  };
130
143
  /**
131
144
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.OAuthCredentialProvider`.
@@ -193,7 +206,7 @@ export type TargetConfiguration = {
193
206
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.TargetStatus`.
194
207
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-targetstatus.html}
195
208
  */
196
- export type TargetStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
209
+ export type TargetStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED" | "SYNCHRONIZING" | "SYNCHRONIZE_UNSUCCESSFUL";
197
210
  /**
198
211
  * Type definition for `AWS::BedrockAgentCore::GatewayTarget.ToolDefinition`.
199
212
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-tooldefinition.html}
@@ -28,6 +28,12 @@ export type ConnectSecurityProfileProperties = {
28
28
  * @maxLength `250`
29
29
  */
30
30
  Description?: string;
31
+ GranularAccessControlConfiguration?: {
32
+ /**
33
+ * Defines the access control configuration for data tables.
34
+ */
35
+ DataTableAccessControlConfiguration?: DataTableAccessControlConfiguration;
36
+ };
31
37
  /**
32
38
  * The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect.
33
39
  * @maxLength `10`
@@ -99,6 +105,54 @@ export type Application = {
99
105
  */
100
106
  Namespace: string;
101
107
  };
108
+ /**
109
+ * Type definition for `AWS::Connect::SecurityProfile.DataTableAccessControlConfiguration`.
110
+ * Defines the access control configuration for data tables.
111
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-datatableaccesscontrolconfiguration.html}
112
+ */
113
+ export type DataTableAccessControlConfiguration = {
114
+ /**
115
+ * Contains the configuration for record-based access control.
116
+ */
117
+ PrimaryAttributeAccessControlConfiguration?: PrimaryAttributeAccessControlConfigurationItem;
118
+ };
119
+ /**
120
+ * Type definition for `AWS::Connect::SecurityProfile.PrimaryAttributeAccessControlConfigurationItem`.
121
+ * Contains the configuration for record-based access control.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-primaryattributeaccesscontrolconfigurationitem.html}
123
+ */
124
+ export type PrimaryAttributeAccessControlConfigurationItem = {
125
+ /**
126
+ * An array of PrimaryAttributeValue objects.
127
+ * @minLength `1`
128
+ * @maxLength `5`
129
+ */
130
+ PrimaryAttributeValues: PrimaryAttributeValue[];
131
+ };
132
+ /**
133
+ * Type definition for `AWS::Connect::SecurityProfile.PrimaryAttributeValue`.
134
+ * An object defining the access control for a specific attribute and its values.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-primaryattributevalue.html}
136
+ */
137
+ export type PrimaryAttributeValue = {
138
+ /**
139
+ * Specifies the type of access granted. Currently, only "ALLOW" is supported
140
+ */
141
+ AccessType: "ALLOW";
142
+ /**
143
+ * The name of the primary attribute.
144
+ * @minLength `1`
145
+ * @maxLength `127`
146
+ * @pattern `^(?!aws:|connect:)[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
147
+ */
148
+ AttributeName: string;
149
+ /**
150
+ * An array of allowed primary values for the specified primary attribute.
151
+ * @minLength `1`
152
+ * @maxLength `2`
153
+ */
154
+ Values: string[];
155
+ };
102
156
  /**
103
157
  * Type definition for `AWS::Connect::SecurityProfile.Tag`.
104
158
  * A key-value pair to associate with a resource.
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type ControlTowerLandingZoneProperties = {
8
8
  Manifest: any;
9
+ RemediationTypes?: "INHERITANCE_DRIFT"[];
9
10
  Tags?: Tag[];
10
11
  /**
11
12
  * @minLength `3`
@@ -235,7 +235,7 @@ export type ReplicaSSESpecification = {
235
235
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-replicastreamspecification.html}
236
236
  */
237
237
  export type ReplicaStreamSpecification = {
238
- ResourcePolicy?: ResourcePolicy;
238
+ ResourcePolicy: ResourcePolicy;
239
239
  };
240
240
  /**
241
241
  * Type definition for `AWS::DynamoDB::GlobalTable.ResourcePolicy`.
@@ -148,9 +148,9 @@ export type FleetLaunchTemplateSpecificationRequest = {
148
148
  export type InstanceRequirementsRequest = {
149
149
  AcceleratorCount?: AcceleratorCountRequest;
150
150
  AcceleratorManufacturers?: ("amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx")[];
151
- AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100")[];
151
+ AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100" | "l40s" | "l4" | "gaudi-hl-205" | "inferentia2" | "trainium" | "trainium2" | "u30")[];
152
152
  AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
153
- AcceleratorTypes?: ("gpu" | "fpga" | "inference")[];
153
+ AcceleratorTypes?: ("gpu" | "fpga" | "inference" | "media")[];
154
154
  AllowedInstanceTypes?: string[];
155
155
  BareMetal?: "included" | "required" | "excluded";
156
156
  BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type EC2IPAMScopeProperties = {
8
8
  Description?: string;
9
+ /**
10
+ * External service configuration to connect your AWS IPAM scope.
11
+ */
12
+ ExternalAuthorityConfiguration?: IpamScopeExternalAuthorityConfiguration;
9
13
  /**
10
14
  * The Id of the IPAM this scope is a part of.
11
15
  */
@@ -45,6 +49,21 @@ export type EC2IPAMScopeAttributes = {
45
49
  */
46
50
  PoolCount: number;
47
51
  };
52
+ /**
53
+ * Type definition for `AWS::EC2::IPAMScope.IpamScopeExternalAuthorityConfiguration`.
54
+ * External service configuration to connect your AWS IPAM scope.
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ipamscope-ipamscopeexternalauthorityconfiguration.html}
56
+ */
57
+ export type IpamScopeExternalAuthorityConfiguration = {
58
+ /**
59
+ * Resource identifier of the scope in the external service connecting to your AWS IPAM scope.
60
+ */
61
+ ExternalResourceIdentifier: string;
62
+ /**
63
+ * An external service connecting to your AWS IPAM scope.
64
+ */
65
+ IpamScopeExternalAuthorityType: "infoblox";
66
+ };
48
67
  /**
49
68
  * Type definition for `AWS::EC2::IPAMScope.Tag`.
50
69
  * A key-value pair to associate with a resource.
@@ -147,9 +147,9 @@ export type InstanceNetworkInterfaceSpecification = {
147
147
  export type InstanceRequirementsRequest = {
148
148
  AcceleratorCount?: AcceleratorCountRequest;
149
149
  AcceleratorManufacturers?: ("amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx")[];
150
- AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100")[];
150
+ AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100" | "l40s" | "l4" | "gaudi-hl-205" | "inferentia2" | "trainium" | "trainium2" | "u30")[];
151
151
  AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
152
- AcceleratorTypes?: ("gpu" | "fpga" | "inference")[];
152
+ AcceleratorTypes?: ("gpu" | "fpga" | "inference" | "media")[];
153
153
  AllowedInstanceTypes?: string[];
154
154
  BareMetal?: "included" | "required" | "excluded";
155
155
  BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
@@ -65,13 +65,13 @@ export type CapacityProviderStrategyItem = {
65
65
  * The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of ``0`` is used.
66
66
  Base value characteristics:
67
67
  + Only one capacity provider in a strategy can have a base defined
68
- + Default value is ``0`` if not specified
69
- + Valid range: 0 to 100,000
68
+ + The default value is ``0`` if not specified
69
+ + The valid range is 0 to 100,000
70
70
  + Base requirements are satisfied first before weight distribution
71
71
  */
72
72
  Base?: number;
73
73
  /**
74
- * The short name of the capacity provider.
74
+ * The short name of the capacity provider. This can be either an AWS managed capacity provider (``FARGATE`` or ``FARGATE_SPOT``) or the name of a custom capacity provider that you created.
75
75
  */
76
76
  CapacityProvider?: string;
77
77
  /**
@@ -79,8 +79,8 @@ export type CapacityProviderStrategyItem = {
79
79
  If no ``weight`` value is specified, the default value of ``0`` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of ``0`` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of ``0``, any ``RunTask`` or ``CreateService`` actions using the capacity provider strategy will fail.
80
80
  Weight value characteristics:
81
81
  + Weight is considered after the base value is satisfied
82
- + Default value is ``0`` if not specified
83
- + Valid range: 0 to 1,000
82
+ + The default value is ``0`` if not specified
83
+ + The valid range is 0 to 1,000
84
84
  + At least one capacity provider must have a weight greater than zero
85
85
  + Capacity providers with weight of ``0`` cannot place tasks
86
86
 
@@ -77,6 +77,7 @@ export type Action = {
77
77
  If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
78
78
  */
79
79
  ForwardConfig?: ForwardConfig;
80
+ JwtValidationConfig?: JwtValidationConfig;
80
81
  /**
81
82
  * The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
82
83
  */
@@ -243,6 +244,24 @@ export type ForwardConfig = {
243
244
  */
244
245
  TargetGroups?: TargetGroupTuple[];
245
246
  };
247
+ /**
248
+ * Type definition for `AWS::ElasticLoadBalancingV2::Listener.JwtValidationActionAdditionalClaim`.
249
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-jwtvalidationactionadditionalclaim.html}
250
+ */
251
+ export type JwtValidationActionAdditionalClaim = {
252
+ Format: string;
253
+ Name: string;
254
+ Values: string[];
255
+ };
256
+ /**
257
+ * Type definition for `AWS::ElasticLoadBalancingV2::Listener.JwtValidationConfig`.
258
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-jwtvalidationconfig.html}
259
+ */
260
+ export type JwtValidationConfig = {
261
+ AdditionalClaims?: JwtValidationActionAdditionalClaim[];
262
+ Issuer: string;
263
+ JwksEndpoint: string;
264
+ };
246
265
  /**
247
266
  * Type definition for `AWS::ElasticLoadBalancingV2::Listener.ListenerAttribute`.
248
267
  * Information about a listener attribute.
@@ -59,6 +59,7 @@ export type Action = {
59
59
  If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
60
60
  */
61
61
  ForwardConfig?: ForwardConfig;
62
+ JwtValidationConfig?: JwtValidationConfig;
62
63
  /**
63
64
  * The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
64
65
  */
@@ -259,6 +260,24 @@ export type HttpRequestMethodConfig = {
259
260
  */
260
261
  Values?: string[];
261
262
  };
263
+ /**
264
+ * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.JwtValidationActionAdditionalClaim`.
265
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.html}
266
+ */
267
+ export type JwtValidationActionAdditionalClaim = {
268
+ Format: string;
269
+ Name: string;
270
+ Values: string[];
271
+ };
272
+ /**
273
+ * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.JwtValidationConfig`.
274
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationconfig.html}
275
+ */
276
+ export type JwtValidationConfig = {
277
+ AdditionalClaims?: JwtValidationActionAdditionalClaim[];
278
+ Issuer: string;
279
+ JwksEndpoint: string;
280
+ };
262
281
  /**
263
282
  * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.PathPatternConfig`.
264
283
  * Information about a path pattern condition.
@@ -42,10 +42,14 @@ export type KinesisStreamProperties = {
42
42
  */
43
43
  StreamModeDetails?: StreamModeDetails;
44
44
  /**
45
- * An arbitrary set of tags (keyvalue pairs) to associate with the Kinesis stream.
45
+ * An arbitrary set of tags (key-value pairs) to associate with the Kinesis stream.
46
46
  * @maxLength `50`
47
47
  */
48
48
  Tags?: Tag[];
49
+ /**
50
+ * Target warm throughput in MiB/s for the stream. This property can ONLY be set when StreamMode is ON_DEMAND.
51
+ */
52
+ WarmThroughputMiBps?: number;
49
53
  };
50
54
  /**
51
55
  * Attribute type definition for `AWS::Kinesis::Stream`.
@@ -56,6 +60,19 @@ export type KinesisStreamAttributes = {
56
60
  * The Amazon resource name (ARN) of the Kinesis stream
57
61
  */
58
62
  Arn: string;
63
+ /**
64
+ * Warm throughput configuration details for the stream. Only present for ON_DEMAND streams.
65
+ */
66
+ WarmThroughputObject: {
67
+ /**
68
+ * Current warm throughput in MiB/s
69
+ */
70
+ CurrentMiBps: number;
71
+ /**
72
+ * Target warm throughput in MiB/s that a customer can write to a stream at any given time
73
+ */
74
+ TargetMiBps: number;
75
+ };
59
76
  };
60
77
  /**
61
78
  * Type definition for `AWS::Kinesis::Stream.EnhancedMetric`.
@@ -110,6 +127,21 @@ export type Tag = {
110
127
  */
111
128
  Value: string;
112
129
  };
130
+ /**
131
+ * Type definition for `AWS::Kinesis::Stream.WarmThroughputObject`.
132
+ * Warm throughput configuration details for the stream. Only present for ON_DEMAND streams.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-warmthroughputobject.html}
134
+ */
135
+ export type WarmThroughputObject = {
136
+ /**
137
+ * Current warm throughput in MiB/s
138
+ */
139
+ CurrentMiBps?: number;
140
+ /**
141
+ * Target warm throughput in MiB/s that a customer can write to a stream at any given time
142
+ */
143
+ TargetMiBps?: number;
144
+ };
113
145
  /**
114
146
  * Resource Type definition for AWS::Kinesis::Stream
115
147
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html}
@@ -3,7 +3,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
3
3
  /**
4
4
  * The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
5
5
  To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
6
- If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Security and auth model for function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
6
+ If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Control access to function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
7
7
  This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
8
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html}
9
9
  */
@@ -36,9 +36,12 @@ export type LambdaPermissionProperties = {
36
36
  */
37
37
  FunctionName: string;
38
38
  /**
39
- * The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
39
+ * The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
40
40
  */
41
41
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
42
+ /**
43
+ * Restricts the ``lambda:InvokeFunction`` action to function URL calls. When specified, this option prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
44
+ */
42
45
  InvokedViaFunctionUrl?: boolean;
43
46
  /**
44
47
  * The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
@@ -85,7 +88,7 @@ export type LambdaPermissionAttributes = {
85
88
  /**
86
89
  * The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
87
90
  To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
88
- If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Security and auth model for function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
91
+ If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Control access to function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
89
92
  This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
90
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html}
91
94
  */
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
2
2
  /**
3
3
  * The ``AWS::Lambda::Permission`` resource grants an AWS service or another account permission to use a function. You can apply the policy at the function level, or specify a qualifier to restrict access to a single version or alias. If you use a qualifier, the invoker must use the full Amazon Resource Name (ARN) of that version or alias to invoke the function.
4
4
  To grant permission to another account, specify the account ID as the ``Principal``. To grant permission to an organization defined in AOlong, specify the organization ID as the ``PrincipalOrgID``. For AWS services, the principal is a domain-style identifier defined by the service, like ``s3.amazonaws.com`` or ``sns.amazonaws.com``. For AWS services, you can also specify the ARN of the associated resource as the ``SourceArn``. If you grant permission to a service principal without specifying the source, other accounts could potentially configure resources in their account to invoke your Lambda function.
5
- If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Security and auth model for function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
5
+ If your function has a function URL, you can specify the ``FunctionUrlAuthType`` parameter. This adds a condition to your permission that only applies when your function URL's ``AuthType`` matches the specified ``FunctionUrlAuthType``. For more information about the ``AuthType`` parameter, see [Control access to function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
6
6
  This resource adds a statement to a resource-based permission policy for the function. For more information about function policies, see [Lambda Function Policies](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html).
7
7
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html}
8
8
  */
@@ -12,6 +12,12 @@ export type RekognitionProjectProperties = {
12
12
  * @pattern `[a-zA-Z0-9][a-zA-Z0-9_\-]*`
13
13
  */
14
14
  ProjectName: string;
15
+ /**
16
+ * An array of key-value pairs to apply to this resource.
17
+ * @minLength `0`
18
+ * @maxLength `200`
19
+ */
20
+ Tags?: Tag[];
15
21
  };
16
22
  /**
17
23
  * Attribute type definition for `AWS::Rekognition::Project`.
@@ -24,6 +30,25 @@ export type RekognitionProjectAttributes = {
24
30
  */
25
31
  Arn: string;
26
32
  };
33
+ /**
34
+ * Type definition for `AWS::Rekognition::Project.Tag`.
35
+ * A key-value pair to associate with a resource.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rekognition-project-tag.html}
37
+ */
38
+ export type Tag = {
39
+ /**
40
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
41
+ * @maxLength `128`
42
+ * @pattern `\A(?!aws:)[a-zA-Z0-9+\-=\._\:\/@]+$`
43
+ */
44
+ Key: string;
45
+ /**
46
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
47
+ * @maxLength `256`
48
+ * @pattern `\A[a-zA-Z0-9+\-=\._\:\/@]+$`
49
+ */
50
+ Value: string;
51
+ };
27
52
  /**
28
53
  * The AWS::Rekognition::Project type creates an Amazon Rekognition CustomLabels Project. A project is a grouping of the resources needed to create and manage Dataset and ProjectVersions.
29
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rekognition-project.html}
@@ -127,7 +127,7 @@ export type FirewallRule = {
127
127
  /**
128
128
  * FirewallDomainRedirectionAction
129
129
  */
130
- DnsThreatProtection?: "DGA" | "DNS_TUNNELING";
130
+ DnsThreatProtection?: "DGA" | "DNS_TUNNELING" | "DICTIONARY_DGA";
131
131
  /**
132
132
  * ResourceId
133
133
  * @minLength `1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.473",
3
+ "version": "0.1.475",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },