@awboost/cfn-resource-types 0.1.280 → 0.1.282

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.
@@ -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, Record<string, never>> {
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`
@@ -91,7 +91,7 @@ export type CustomActionAttachmentVariables = Record<string, string>;
91
91
  export type CustomActionDefinition = {
92
92
  /**
93
93
  * @minLength `1`
94
- * @maxLength `100`
94
+ * @maxLength `5000`
95
95
  */
96
96
  CommandText: string;
97
97
  };
@@ -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
- + ``PROVISIONED`` - We recommend using ``PROVISIONED`` for predictable workloads. ``PROVISIONED`` sets the billing mode to [Provisioned Mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual).
22
- + ``PAY_PER_REQUEST`` - We recommend using ``PAY_PER_REQUEST`` for unpredictable workloads. ``PAY_PER_REQUEST`` sets the billing mode to [On-Demand Mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand).
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 `(?:[a-z0-9]+(?:[._-][a-z0-9]+)/‍*)*[a-z0-9]+(?:[._-][a-z0-9]+)*`
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.
@@ -15,7 +15,7 @@ export type ECSServiceProperties = {
15
15
  /**
16
16
  * The capacity provider strategy to use for the service.
17
17
  If a ``capacityProviderStrategy`` is specified, the ``launchType`` parameter must be omitted. If no ``capacityProviderStrategy`` or ``launchType`` is specified, the ``defaultCapacityProviderStrategy`` for the cluster is used.
18
- A capacity provider strategy may contain a maximum of 6 capacity providers.
18
+ A capacity provider strategy can contain a maximum of 20 capacity providers.
19
19
  To remove this property from your service resource, specify an empty ``CapacityProviderStrategyItem`` array.
20
20
  */
21
21
  CapacityProviderStrategy?: CapacityProviderStrategyItem[];
@@ -157,8 +157,12 @@ export type ECSServiceAttributes = {
157
157
  */
158
158
  export type AwsVpcConfiguration = {
159
159
  /**
160
- * Whether the task's elastic network interface receives a public IP address. The default value is ``ENABLED``.
161
- */
160
+ * Whether the task's elastic network interface receives a public IP address.
161
+ Consider the following when you set this value:
162
+ + When you use ``create-service`` or ``update-service``, the default is ``DISABLED``.
163
+ + When the service ``deploymentController`` is ``ECS``, the value must be ``DISABLED``.
164
+ + When you use ``create-service`` or ``update-service``, the default is ``ENABLED``.
165
+ */
162
166
  AssignPublicIp?: "DISABLED" | "ENABLED";
163
167
  /**
164
168
  * The IDs of the security groups associated with the task or service. If you don't specify a security group, the default security group for the VPC is used. There's a limit of 5 security groups that can be specified.
@@ -691,6 +695,13 @@ export type ServiceVolumeConfiguration = {
691
695
  + If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
692
696
  + Tag keys and values are case-sensitive.
693
697
  + Do not use ``aws:``, ``AWS:``, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for AWS use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.
698
+
699
+ In order to tag a service that has the following ARN format, you need to migrate the service to the long ARN. You must use the API, CLI or console to migrate the service ARN. For more information, see [Migrate an short service ARN to a long ARN](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-arn-migration.html) in the *Developer Guide*.
700
+ ``arn:aws:ecs:region:aws_account_id:service/service-name``
701
+ After the migration is complete, the following are true:
702
+ + The service ARN is: ``arn:aws:ecs:region:aws_account_id:service/cluster-name/service-name``
703
+ + You can use CFN to tag the service as you would a service with a long ARN format.
704
+ + When the ``PhysicalResourceId`` in the CFN stack represents a service, the value does not change and will be the short service ARN.
694
705
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-tag.html}
695
706
  */
696
707
  export type Tag = {
@@ -16,8 +16,7 @@ export type ECSTaskDefinitionProperties = {
16
16
  ContainerDefinitions?: ContainerDefinition[];
17
17
  /**
18
18
  * The number of ``cpu`` units used by the task. If you use the EC2 launch type, this field is optional. Any value can be used. If you use the Fargate launch type, this field is required. You must use one of the following values. The value that you choose determines your range of valid values for the ``memory`` parameter.
19
- If you use the EC2 launch type, this field is optional. Supported values are between ``128`` CPU units (``0.125`` vCPUs) and ``10240`` CPU units (``10`` vCPUs).
20
- The CPU units cannot be less than 1 vCPU when you use Windows containers on Fargate.
19
+ If you're using the EC2 launch type or the external launch type, this field is optional. Supported values are between ``128`` CPU units (``0.125`` vCPUs) and ``196608`` CPU units (``192`` vCPUs). The CPU units cannot be less than 1 vCPU when you use Windows containers on Fargate.
21
20
  + 256 (.25 vCPU) - Available ``memory`` values: 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB)
22
21
  + 512 (.5 vCPU) - Available ``memory`` values: 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB)
23
22
  + 1024 (1 vCPU) - Available ``memory`` values: 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB)
@@ -633,20 +632,20 @@ export type HealthCheck = {
633
632
  */
634
633
  Command?: string[];
635
634
  /**
636
- * The time period in seconds between each health check execution. You may specify between 5 and 300 seconds. The default value is 30 seconds.
635
+ * The time period in seconds between each health check execution. You may specify between 5 and 300 seconds. The default value is 30 seconds. This value applies only when you specify a ``command``.
637
636
  */
638
637
  Interval?: number;
639
638
  /**
640
- * The number of times to retry a failed health check before the container is considered unhealthy. You may specify between 1 and 10 retries. The default value is 3.
639
+ * The number of times to retry a failed health check before the container is considered unhealthy. You may specify between 1 and 10 retries. The default value is 3. This value applies only when you specify a ``command``.
641
640
  */
642
641
  Retries?: number;
643
642
  /**
644
- * The optional grace period to provide containers time to bootstrap before failed health checks count towards the maximum number of retries. You can specify between 0 and 300 seconds. By default, the ``startPeriod`` is off.
643
+ * The optional grace period to provide containers time to bootstrap before failed health checks count towards the maximum number of retries. You can specify between 0 and 300 seconds. By default, the ``startPeriod`` is off. This value applies only when you specify a ``command``.
645
644
  If a health check succeeds within the ``startPeriod``, then the container is considered healthy and any subsequent failures count toward the maximum number of retries.
646
645
  */
647
646
  StartPeriod?: number;
648
647
  /**
649
- * The time period in seconds to wait for a health check to succeed before it is considered a failure. You may specify between 2 and 60 seconds. The default value is 5.
648
+ * The time period in seconds to wait for a health check to succeed before it is considered a failure. You may specify between 2 and 60 seconds. The default value is 5. This value applies only when you specify a ``command``.
650
649
  */
651
650
  Timeout?: number;
652
651
  };
@@ -695,6 +694,12 @@ export type InferenceAccelerator = {
695
694
  /**
696
695
  * Type definition for `AWS::ECS::TaskDefinition.KernelCapabilities`.
697
696
  * The Linux capabilities to add or remove from the default Docker configuration for a container defined in the task definition. For more detailed information about these Linux capabilities, see the [capabilities(7)](https://docs.aws.amazon.com/http://man7.org/linux/man-pages/man7/capabilities.7.html) Linux manual page.
697
+ The following describes how Docker processes the Linux capabilities specified in the ``add`` and ``drop`` request parameters. For information about the latest behavior, see [Docker Compose: order of cap_drop and cap_add](https://docs.aws.amazon.com/https://forums.docker.com/t/docker-compose-order-of-cap-drop-and-cap-add/97136/1) in the Docker Community Forum.
698
+ + When the container is a privleged container, the container capabilities are all of the default Docker capabilities. The capabilities specified in the ``add`` request parameter, and the ``drop`` request parameter are ignored.
699
+ + When the ``add`` request parameter is set to ALL, the container capabilities are all of the default Docker capabilities, excluding those specified in the ``drop`` request parameter.
700
+ + When the ``drop`` request parameter is set to ALL, the container capabilities are the capabilities specified in the ``add`` request parameter.
701
+ + When the ``add`` request parameter and the ``drop`` request parameter are both empty, the capabilities the container capabilities are all of the default Docker capabilities.
702
+ + The default is to first drop the capabilities specified in the ``drop`` request parameter, and then add the capabilities specified in the ``add`` request parameter.
698
703
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-kernelcapabilities.html}
699
704
  */
700
705
  export type KernelCapabilities = {
@@ -281,17 +281,20 @@ export type ListenerAttribute = {
281
281
  };
282
282
  /**
283
283
  * Type definition for `AWS::ElasticLoadBalancingV2::Listener.MutualAuthentication`.
284
- * Specifies the configuration information for mutual authentication.
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. Options are ``off``, ``passthrough`` or ``verify``. The default value is ``off``.
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.
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.280",
3
+ "version": "0.1.282",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },