@awboost/cfn-resource-types 0.1.473 → 0.1.474

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`
@@ -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;
@@ -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;
@@ -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
  */
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.474",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },