@awboost/cfn-resource-types 0.1.281 → 0.1.283
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.
- package/lib/AWS-Batch-JobDefinition.d.ts +8 -1
- package/lib/AWS-Bedrock-Agent.d.ts +10 -0
- package/lib/AWS-Chatbot-CustomAction.d.ts +1 -1
- package/lib/AWS-Chatbot-MicrosoftTeamsChannelConfiguration.d.ts +7 -0
- package/lib/AWS-DynamoDB-Table.d.ts +2 -2
- package/lib/AWS-EC2-VPCEndpointService.d.ts +9 -0
- package/lib/AWS-ECR-PullThroughCacheRule.d.ts +13 -1
- package/lib/AWS-ElasticLoadBalancingV2-Listener.d.ts +5 -2
- package/lib/AWS-ElasticLoadBalancingV2-LoadBalancer.d.ts +2 -1
- package/lib/AWS-IoT-SoftwarePackageVersion.d.ts +65 -0
- package/lib/AWS-SageMaker-InferenceComponent.d.ts +81 -0
- package/lib/AWS-XRay-TransactionSearchConfig.d.ts +36 -0
- package/lib/AWS-XRay-TransactionSearchConfig.js +13 -0
- package/package.json +1 -1
|
@@ -26,6 +26,13 @@ export type BatchJobDefinitionProperties = {
|
|
|
26
26
|
Timeout?: JobTimeout;
|
|
27
27
|
Type: string;
|
|
28
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* Attribute type definition for `AWS::Batch::JobDefinition`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#aws-resource-batch-jobdefinition-return-values}
|
|
32
|
+
*/
|
|
33
|
+
export type BatchJobDefinitionAttributes = {
|
|
34
|
+
JobDefinitionArn: string;
|
|
35
|
+
};
|
|
29
36
|
/**
|
|
30
37
|
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceProperties`.
|
|
31
38
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourceproperties.html}
|
|
@@ -502,7 +509,7 @@ export type Volume = {
|
|
|
502
509
|
* Resource Type definition for AWS::Batch::JobDefinition
|
|
503
510
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html}
|
|
504
511
|
*/
|
|
505
|
-
export declare class BatchJobDefinition extends $Resource<"AWS::Batch::JobDefinition", BatchJobDefinitionProperties,
|
|
512
|
+
export declare class BatchJobDefinition extends $Resource<"AWS::Batch::JobDefinition", BatchJobDefinitionProperties, BatchJobDefinitionAttributes> {
|
|
506
513
|
static readonly Type = "AWS::Batch::JobDefinition";
|
|
507
514
|
constructor(logicalId: string, properties: BatchJobDefinitionProperties, options?: $ResourceOptions);
|
|
508
515
|
}
|
|
@@ -179,6 +179,12 @@ export type ActionGroupSignature = "AMAZON.UserInput" | "AMAZON.CodeInterpreter"
|
|
|
179
179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-actiongroupstate.html}
|
|
180
180
|
*/
|
|
181
181
|
export type ActionGroupState = "ENABLED" | "DISABLED";
|
|
182
|
+
/**
|
|
183
|
+
* Type definition for `AWS::Bedrock::Agent.AdditionalModelRequestFields`.
|
|
184
|
+
* Additional Model Request Fields for Prompt Configuration
|
|
185
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-additionalmodelrequestfields.html}
|
|
186
|
+
*/
|
|
187
|
+
export type AdditionalModelRequestFields = Record<string, any>;
|
|
182
188
|
/**
|
|
183
189
|
* Type definition for `AWS::Bedrock::Agent.AgentActionGroup`.
|
|
184
190
|
* Contains the information of an Agent Action Group
|
|
@@ -498,6 +504,10 @@ export type ParameterMap = Record<string, ParameterDetail>;
|
|
|
498
504
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-promptconfiguration.html}
|
|
499
505
|
*/
|
|
500
506
|
export type PromptConfiguration = {
|
|
507
|
+
/**
|
|
508
|
+
* Additional Model Request Fields for Prompt Configuration
|
|
509
|
+
*/
|
|
510
|
+
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
501
511
|
/**
|
|
502
512
|
* Base Prompt Template.
|
|
503
513
|
* @minLength `1`
|
|
@@ -52,6 +52,13 @@ export type ChatbotMicrosoftTeamsChannelConfigurationProperties = {
|
|
|
52
52
|
* @pattern `^([a-zA-Z0-9-_=+/.,])*%3[aA]([a-zA-Z0-9-_=+/.,])*%40([a-zA-Z0-9-_=+/.,])*$`
|
|
53
53
|
*/
|
|
54
54
|
TeamsChannelId: string;
|
|
55
|
+
/**
|
|
56
|
+
* The name of the Microsoft Teams channel
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `256`
|
|
59
|
+
* @pattern `^(.*)$`
|
|
60
|
+
*/
|
|
61
|
+
TeamsChannelName?: string;
|
|
55
62
|
/**
|
|
56
63
|
* The id of the Microsoft Teams tenant
|
|
57
64
|
* @minLength `36`
|
|
@@ -18,8 +18,8 @@ export type DynamoDBTableProperties = {
|
|
|
18
18
|
/**
|
|
19
19
|
* Specify how you are charged for read and write throughput and how you manage capacity.
|
|
20
20
|
Valid values include:
|
|
21
|
-
+ ``
|
|
22
|
-
+ ``
|
|
21
|
+
+ ``PAY_PER_REQUEST`` - We recommend using ``PAY_PER_REQUEST`` for most DynamoDB workloads. ``PAY_PER_REQUEST`` sets the billing mode to [On-demand capacity mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/on-demand-capacity-mode.html).
|
|
22
|
+
+ ``PROVISIONED`` - We recommend using ``PROVISIONED`` for steady workloads with predictable growth where capacity requirements can be reliably forecasted. ``PROVISIONED`` sets the billing mode to [Provisioned capacity mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/provisioned-capacity-mode.html).
|
|
23
23
|
|
|
24
24
|
If not specified, the default is ``PROVISIONED``.
|
|
25
25
|
*/
|
|
@@ -10,6 +10,10 @@ export type EC2VPCEndpointServiceProperties = {
|
|
|
10
10
|
GatewayLoadBalancerArns?: string[];
|
|
11
11
|
NetworkLoadBalancerArns?: string[];
|
|
12
12
|
PayerResponsibility?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Specify which Ip Address types are supported for VPC endpoint service.
|
|
15
|
+
*/
|
|
16
|
+
SupportedIpAddressTypes?: IpAddressType[];
|
|
13
17
|
/**
|
|
14
18
|
* The tags to add to the VPC endpoint service.
|
|
15
19
|
*/
|
|
@@ -22,6 +26,11 @@ export type EC2VPCEndpointServiceProperties = {
|
|
|
22
26
|
export type EC2VPCEndpointServiceAttributes = {
|
|
23
27
|
ServiceId: string;
|
|
24
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `AWS::EC2::VPCEndpointService.IpAddressType`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpointservice-ipaddresstype.html}
|
|
32
|
+
*/
|
|
33
|
+
export type IpAddressType = "ipv4" | "ipv6";
|
|
25
34
|
/**
|
|
26
35
|
* Type definition for `AWS::EC2::VPCEndpointService.Tag`.
|
|
27
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpointservice-tag.html}
|
|
@@ -12,11 +12,16 @@ export type ECRPullThroughCacheRuleProperties = {
|
|
|
12
12
|
* @pattern `^arn:aws:secretsmanager:[a-zA-Z0-9-:]+:secret:ecr\-pullthroughcache\/[a-zA-Z0-9\/_+=.@-]+$`
|
|
13
13
|
*/
|
|
14
14
|
CredentialArn?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The ARN of the IAM role to be assumed by Amazon ECR to authenticate to ECR upstream registry. This role must be in the same account as the registry that you are configuring.
|
|
17
|
+
* @maxLength `2048`
|
|
18
|
+
*/
|
|
19
|
+
CustomRoleArn?: string;
|
|
15
20
|
/**
|
|
16
21
|
* The Amazon ECR repository prefix associated with the pull through cache rule.
|
|
17
22
|
* @minLength `2`
|
|
18
23
|
* @maxLength `30`
|
|
19
|
-
* @pattern
|
|
24
|
+
* @pattern `^((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)/*?|ROOT)$`
|
|
20
25
|
*/
|
|
21
26
|
EcrRepositoryPrefix?: string;
|
|
22
27
|
/**
|
|
@@ -27,6 +32,13 @@ export type ECRPullThroughCacheRuleProperties = {
|
|
|
27
32
|
* The upstream registry URL associated with the pull through cache rule.
|
|
28
33
|
*/
|
|
29
34
|
UpstreamRegistryUrl?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The repository name prefix of upstream registry to match with the upstream repository name. When this field isn't specified, Amazon ECR will use the `ROOT`.
|
|
37
|
+
* @minLength `2`
|
|
38
|
+
* @maxLength `30`
|
|
39
|
+
* @pattern `^((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)/*?|ROOT)$`
|
|
40
|
+
*/
|
|
41
|
+
UpstreamRepositoryPrefix?: string;
|
|
30
42
|
};
|
|
31
43
|
/**
|
|
32
44
|
* The ``AWS::ECR::PullThroughCacheRule`` resource creates or updates a pull through cache rule. A pull through cache rule provides a way to cache images from an upstream registry in your Amazon ECR private registry.
|
|
@@ -281,17 +281,20 @@ export type ListenerAttribute = {
|
|
|
281
281
|
};
|
|
282
282
|
/**
|
|
283
283
|
* Type definition for `AWS::ElasticLoadBalancingV2::Listener.MutualAuthentication`.
|
|
284
|
-
*
|
|
284
|
+
* The mutual authentication configuration information.
|
|
285
285
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-mutualauthentication.html}
|
|
286
286
|
*/
|
|
287
287
|
export type MutualAuthentication = {
|
|
288
|
+
/**
|
|
289
|
+
* Indicates whether trust store CA certificate names are advertised. The default value is ``off``.
|
|
290
|
+
*/
|
|
288
291
|
AdvertiseTrustStoreCaNames?: string;
|
|
289
292
|
/**
|
|
290
293
|
* Indicates whether expired client certificates are ignored.
|
|
291
294
|
*/
|
|
292
295
|
IgnoreClientCertificateExpiry?: boolean;
|
|
293
296
|
/**
|
|
294
|
-
* The client certificate handling method.
|
|
297
|
+
* The client certificate handling method. The possible values are ``off``, ``passthrough``, and ``verify``. The default value is ``off``.
|
|
295
298
|
*/
|
|
296
299
|
Mode?: string;
|
|
297
300
|
/**
|
|
@@ -11,7 +11,7 @@ export type ElasticLoadBalancingV2LoadBalancerProperties = {
|
|
|
11
11
|
*/
|
|
12
12
|
EnablePrefixForIpv6SourceNat?: string;
|
|
13
13
|
/**
|
|
14
|
-
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink.
|
|
14
|
+
* Indicates whether to evaluate inbound security group rules for traffic sent to a Network Load Balancer through privatelink. The default is ``on``.
|
|
15
15
|
*/
|
|
16
16
|
EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic?: string;
|
|
17
17
|
/**
|
|
@@ -21,6 +21,7 @@ export type ElasticLoadBalancingV2LoadBalancerProperties = {
|
|
|
21
21
|
[Network Load Balancers and Gateway Load Balancers] The possible values are ``ipv4`` (IPv4 addresses) and ``dualstack`` (IPv4 and IPv6 addresses).
|
|
22
22
|
*/
|
|
23
23
|
IpAddressType?: string;
|
|
24
|
+
Ipv4IpamPoolId?: string;
|
|
24
25
|
/**
|
|
25
26
|
* The load balancer attributes.
|
|
26
27
|
*/
|
|
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html}
|
|
7
7
|
*/
|
|
8
8
|
export type IoTSoftwarePackageVersionProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The artifact location of the package version
|
|
11
|
+
*/
|
|
12
|
+
Artifact?: PackageVersionArtifact;
|
|
9
13
|
Attributes?: ResourceAttributes;
|
|
10
14
|
/**
|
|
11
15
|
* @minLength `0`
|
|
@@ -19,6 +23,14 @@ export type IoTSoftwarePackageVersionProperties = {
|
|
|
19
23
|
* @pattern `^[a-zA-Z0-9-_.]+$`
|
|
20
24
|
*/
|
|
21
25
|
PackageName: string;
|
|
26
|
+
/**
|
|
27
|
+
* The inline json job document associated with a software package version
|
|
28
|
+
*/
|
|
29
|
+
Recipe?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The sbom zip archive location of the package version
|
|
32
|
+
*/
|
|
33
|
+
Sbom?: Sbom;
|
|
22
34
|
/**
|
|
23
35
|
* An array of key-value pairs to apply to this resource.
|
|
24
36
|
* @maxLength `50`
|
|
@@ -41,8 +53,23 @@ export type IoTSoftwarePackageVersionAttributes = {
|
|
|
41
53
|
* @pattern `^arn:[!-~]+$`
|
|
42
54
|
*/
|
|
43
55
|
PackageVersionArn: string;
|
|
56
|
+
/**
|
|
57
|
+
* The validation status of the Sbom file
|
|
58
|
+
*/
|
|
59
|
+
SbomValidationStatus: SbomValidationStatus;
|
|
44
60
|
Status: PackageVersionStatus;
|
|
45
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::IoT::SoftwarePackageVersion.PackageVersionArtifact`.
|
|
64
|
+
* The artifact location of the package version
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-softwarepackageversion-packageversionartifact.html}
|
|
66
|
+
*/
|
|
67
|
+
export type PackageVersionArtifact = {
|
|
68
|
+
/**
|
|
69
|
+
* The Amazon S3 location
|
|
70
|
+
*/
|
|
71
|
+
S3Location: S3Location;
|
|
72
|
+
};
|
|
46
73
|
/**
|
|
47
74
|
* Type definition for `AWS::IoT::SoftwarePackageVersion.PackageVersionStatus`.
|
|
48
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-softwarepackageversion-packageversionstatus.html}
|
|
@@ -53,6 +80,44 @@ export type PackageVersionStatus = "DRAFT" | "PUBLISHED" | "DEPRECATED";
|
|
|
53
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-softwarepackageversion-resourceattributes.html}
|
|
54
81
|
*/
|
|
55
82
|
export type ResourceAttributes = Record<string, string>;
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::IoT::SoftwarePackageVersion.S3Location`.
|
|
85
|
+
* The Amazon S3 location
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-softwarepackageversion-s3location.html}
|
|
87
|
+
*/
|
|
88
|
+
export type S3Location = {
|
|
89
|
+
/**
|
|
90
|
+
* The S3 bucket
|
|
91
|
+
* @minLength `1`
|
|
92
|
+
*/
|
|
93
|
+
Bucket: string;
|
|
94
|
+
/**
|
|
95
|
+
* The S3 key
|
|
96
|
+
* @minLength `1`
|
|
97
|
+
*/
|
|
98
|
+
Key: string;
|
|
99
|
+
/**
|
|
100
|
+
* The S3 version
|
|
101
|
+
*/
|
|
102
|
+
Version: string;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Type definition for `AWS::IoT::SoftwarePackageVersion.Sbom`.
|
|
106
|
+
* The sbom zip archive location of the package version
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-softwarepackageversion-sbom.html}
|
|
108
|
+
*/
|
|
109
|
+
export type Sbom = {
|
|
110
|
+
/**
|
|
111
|
+
* The Amazon S3 location
|
|
112
|
+
*/
|
|
113
|
+
S3Location: S3Location;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::IoT::SoftwarePackageVersion.SbomValidationStatus`.
|
|
117
|
+
* The validation status of the Sbom file
|
|
118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-softwarepackageversion-sbomvalidationstatus.html}
|
|
119
|
+
*/
|
|
120
|
+
export type SbomValidationStatus = "IN_PROGRESS" | "FAILED" | "SUCCEEDED" | "";
|
|
56
121
|
/**
|
|
57
122
|
* Type definition for `AWS::IoT::SoftwarePackageVersion.Tag`.
|
|
58
123
|
* A key-value pair to associate with a resource.
|
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-inferencecomponent.html}
|
|
6
6
|
*/
|
|
7
7
|
export type SageMakerInferenceComponentProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The deployment config for the inference component
|
|
10
|
+
*/
|
|
11
|
+
DeploymentConfig?: InferenceComponentDeploymentConfig;
|
|
8
12
|
/**
|
|
9
13
|
* The Amazon Resource Name (ARN) of the endpoint the inference component is associated with
|
|
10
14
|
* @minLength `1`
|
|
@@ -100,6 +104,29 @@ export type SageMakerInferenceComponentAttributes = {
|
|
|
100
104
|
};
|
|
101
105
|
};
|
|
102
106
|
};
|
|
107
|
+
/**
|
|
108
|
+
* Type definition for `AWS::SageMaker::InferenceComponent.Alarm`.
|
|
109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-alarm.html}
|
|
110
|
+
*/
|
|
111
|
+
export type Alarm = {
|
|
112
|
+
/**
|
|
113
|
+
* @minLength `1`
|
|
114
|
+
* @maxLength `255`
|
|
115
|
+
* @pattern `^(?!\s*$).+`
|
|
116
|
+
*/
|
|
117
|
+
AlarmName: string;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::SageMaker::InferenceComponent.AutoRollbackConfiguration`.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-autorollbackconfiguration.html}
|
|
122
|
+
*/
|
|
123
|
+
export type AutoRollbackConfiguration = {
|
|
124
|
+
/**
|
|
125
|
+
* @minLength `1`
|
|
126
|
+
* @maxLength `10`
|
|
127
|
+
*/
|
|
128
|
+
Alarms: Alarm[];
|
|
129
|
+
};
|
|
103
130
|
/**
|
|
104
131
|
* Type definition for `AWS::SageMaker::InferenceComponent.DeployedImage`.
|
|
105
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-deployedimage.html}
|
|
@@ -125,6 +152,23 @@ export type DeployedImage = {
|
|
|
125
152
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-environmentmap.html}
|
|
126
153
|
*/
|
|
127
154
|
export type EnvironmentMap = Record<string, string>;
|
|
155
|
+
/**
|
|
156
|
+
* Type definition for `AWS::SageMaker::InferenceComponent.InferenceComponentCapacitySize`.
|
|
157
|
+
* Capacity size configuration for the inference component
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-inferencecomponentcapacitysize.html}
|
|
159
|
+
*/
|
|
160
|
+
export type InferenceComponentCapacitySize = {
|
|
161
|
+
Type: InferenceComponentCapacitySizeType;
|
|
162
|
+
/**
|
|
163
|
+
* The number of copies for the inference component
|
|
164
|
+
*/
|
|
165
|
+
Value: number;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* Type definition for `AWS::SageMaker::InferenceComponent.InferenceComponentCapacitySizeType`.
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-inferencecomponentcapacitysizetype.html}
|
|
170
|
+
*/
|
|
171
|
+
export type InferenceComponentCapacitySizeType = "COPY_COUNT" | "CAPACITY_PERCENT";
|
|
128
172
|
/**
|
|
129
173
|
* Type definition for `AWS::SageMaker::InferenceComponent.InferenceComponentComputeResourceRequirements`.
|
|
130
174
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-inferencecomponentcomputeresourcerequirements.html}
|
|
@@ -168,6 +212,43 @@ export type InferenceComponentContainerSpecification = {
|
|
|
168
212
|
*/
|
|
169
213
|
Image?: string;
|
|
170
214
|
};
|
|
215
|
+
/**
|
|
216
|
+
* Type definition for `AWS::SageMaker::InferenceComponent.InferenceComponentDeploymentConfig`.
|
|
217
|
+
* The deployment config for the inference component
|
|
218
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-inferencecomponentdeploymentconfig.html}
|
|
219
|
+
*/
|
|
220
|
+
export type InferenceComponentDeploymentConfig = {
|
|
221
|
+
AutoRollbackConfiguration?: AutoRollbackConfiguration;
|
|
222
|
+
/**
|
|
223
|
+
* The rolling update policy for the inference component
|
|
224
|
+
*/
|
|
225
|
+
RollingUpdatePolicy?: InferenceComponentRollingUpdatePolicy;
|
|
226
|
+
};
|
|
227
|
+
/**
|
|
228
|
+
* Type definition for `AWS::SageMaker::InferenceComponent.InferenceComponentRollingUpdatePolicy`.
|
|
229
|
+
* The rolling update policy for the inference component
|
|
230
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-inferencecomponentrollingupdatepolicy.html}
|
|
231
|
+
*/
|
|
232
|
+
export type InferenceComponentRollingUpdatePolicy = {
|
|
233
|
+
/**
|
|
234
|
+
* Capacity size configuration for the inference component
|
|
235
|
+
*/
|
|
236
|
+
MaximumBatchSize?: InferenceComponentCapacitySize;
|
|
237
|
+
/**
|
|
238
|
+
* @min `600`
|
|
239
|
+
* @max `28800`
|
|
240
|
+
*/
|
|
241
|
+
MaximumExecutionTimeoutInSeconds?: number;
|
|
242
|
+
/**
|
|
243
|
+
* Capacity size configuration for the inference component
|
|
244
|
+
*/
|
|
245
|
+
RollbackMaximumBatchSize?: InferenceComponentCapacitySize;
|
|
246
|
+
/**
|
|
247
|
+
* @min `0`
|
|
248
|
+
* @max `3600`
|
|
249
|
+
*/
|
|
250
|
+
WaitIntervalInSeconds?: number;
|
|
251
|
+
};
|
|
171
252
|
/**
|
|
172
253
|
* Type definition for `AWS::SageMaker::InferenceComponent.InferenceComponentRuntimeConfig`.
|
|
173
254
|
* The runtime config for the inference component
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::XRay::TransactionSearchConfig`.
|
|
5
|
+
* This schema provides construct and validation rules for AWS-XRay TransactionSearchConfig resource parameters.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-transactionsearchconfig.html}
|
|
7
|
+
*/
|
|
8
|
+
export type XRayTransactionSearchConfigProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* Determines the percentage of traces indexed from CloudWatch Logs to X-Ray
|
|
11
|
+
* @min `0`
|
|
12
|
+
* @max `100`
|
|
13
|
+
*/
|
|
14
|
+
IndexingPercentage?: number;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* Attribute type definition for `AWS::XRay::TransactionSearchConfig`.
|
|
18
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-transactionsearchconfig.html#aws-resource-xray-transactionsearchconfig-return-values}
|
|
19
|
+
*/
|
|
20
|
+
export type XRayTransactionSearchConfigAttributes = {
|
|
21
|
+
/**
|
|
22
|
+
* User account id, used as the primary identifier for the resource
|
|
23
|
+
* @pattern `^\d{12}$`
|
|
24
|
+
*/
|
|
25
|
+
AccountId: string;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Resource type definition for `AWS::XRay::TransactionSearchConfig`.
|
|
29
|
+
* This schema provides construct and validation rules for AWS-XRay TransactionSearchConfig resource parameters.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-transactionsearchconfig.html}
|
|
31
|
+
*/
|
|
32
|
+
export declare class XRayTransactionSearchConfig extends $Resource<"AWS::XRay::TransactionSearchConfig", XRayTransactionSearchConfigProperties, XRayTransactionSearchConfigAttributes> {
|
|
33
|
+
static readonly Type = "AWS::XRay::TransactionSearchConfig";
|
|
34
|
+
constructor(logicalId: string, properties: XRayTransactionSearchConfigProperties, options?: $ResourceOptions);
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=AWS-XRay-TransactionSearchConfig.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::XRay::TransactionSearchConfig`.
|
|
4
|
+
* This schema provides construct and validation rules for AWS-XRay TransactionSearchConfig resource parameters.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-transactionsearchconfig.html}
|
|
6
|
+
*/
|
|
7
|
+
export class XRayTransactionSearchConfig extends $Resource {
|
|
8
|
+
static Type = "AWS::XRay::TransactionSearchConfig";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, XRayTransactionSearchConfig.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-XRay-TransactionSearchConfig.js.map
|