@awboost/cfn-resource-types 0.1.463 → 0.1.464

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.
@@ -9,7 +9,7 @@ export type CEAnomalyMonitorProperties = {
9
9
  /**
10
10
  * The dimensions to evaluate
11
11
  */
12
- MonitorDimension?: "SERVICE";
12
+ MonitorDimension?: "SERVICE" | "LINKED_ACCOUNT" | "TAG" | "COST_CATEGORY";
13
13
  /**
14
14
  * The name of the monitor.
15
15
  * @minLength `0`
@@ -6,7 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type CodeBuildFleetProperties = {
8
8
  /**
9
- * @min `1`
9
+ * @min `0`
10
10
  */
11
11
  BaseCapacity?: number;
12
12
  ComputeConfiguration?: ComputeConfiguration;
@@ -19,7 +19,7 @@ export type CodeBuildFleetProperties = {
19
19
  FleetServiceRole?: string;
20
20
  FleetVpcConfig?: VpcConfig;
21
21
  /**
22
- * @pattern `^((aws/codebuild/[A-Za-z-]+:[0-9]+(-[0-9._]+)?)|ami-[a-z0-9]{1,1020})$`
22
+ * @pattern `^((aws/codebuild/([A-Za-z0-9._-]+|ami/[A-Za-z0-9._-]+):[A-Za-z0-9._-]+)|ami-[a-z0-9]{1,1020})$`
23
23
  */
24
24
  ImageId?: string;
25
25
  /**
@@ -21,6 +21,10 @@ export type DataZoneConnectionProperties = {
21
21
  * @pattern `^dzd[_-][a-zA-Z0-9_-]{1,36}$`
22
22
  */
23
23
  DomainIdentifier: string;
24
+ /**
25
+ * Specifies whether the trusted identity propagation is enabled
26
+ */
27
+ EnableTrustedIdentityPropagation?: boolean;
24
28
  /**
25
29
  * The identifier of the environment in which the connection is created.
26
30
  */
@@ -682,6 +682,14 @@ export type Secret = {
682
682
  */
683
683
  ValueFrom: string;
684
684
  };
685
+ /**
686
+ * Type definition for `AWS::ECS::Service.ServiceConnectAccessLogConfiguration`.
687
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnectaccesslogconfiguration.html}
688
+ */
689
+ export type ServiceConnectAccessLogConfiguration = {
690
+ Format: "TEXT" | "JSON";
691
+ IncludeQueryParameters?: "DISABLED" | "ENABLED";
692
+ };
685
693
  /**
686
694
  * Type definition for `AWS::ECS::Service.ServiceConnectClientAlias`.
687
695
  * Each alias ("endpoint") is a fully-qualified name and port number that other tasks ("clients") can use to connect to this service.
@@ -713,6 +721,7 @@ export type ServiceConnectClientAlias = {
713
721
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnectconfiguration.html}
714
722
  */
715
723
  export type ServiceConnectConfiguration = {
724
+ AccessLogConfiguration?: ServiceConnectAccessLogConfiguration;
716
725
  /**
717
726
  * Specifies whether to use Service Connect with this service.
718
727
  */
@@ -65,6 +65,12 @@ export type NetworkFirewallFirewallAttributes = {
65
65
  * @pattern `^([0-9a-f]{8})-([0-9a-f]{4}-){3}([0-9a-f]{12})$`
66
66
  */
67
67
  FirewallId: string;
68
+ /**
69
+ * @minLength `1`
70
+ * @maxLength `128`
71
+ * @pattern `^tgw-attach-[0-9a-z]+$`
72
+ */
73
+ TransitGatewayAttachmentId: string;
68
74
  };
69
75
  /**
70
76
  * Type definition for `AWS::NetworkFirewall::Firewall.AvailabilityZoneMapping`.
@@ -63,6 +63,10 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentAttributes = {
63
63
  * The Region where the edge is located.
64
64
  */
65
65
  EdgeLocation: string;
66
+ /**
67
+ * Errors from the last modification of the attachment.
68
+ */
69
+ LastModificationErrors: string[];
66
70
  /**
67
71
  * Owner account of the attachment.
68
72
  */
@@ -0,0 +1,90 @@
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::S3Vectors::Index
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-index.html}
6
+ */
7
+ export type S3VectorsIndexProperties = {
8
+ /**
9
+ * The data type of the vectors to be inserted into the vector index.
10
+ */
11
+ DataType: DataType;
12
+ /**
13
+ * The dimensions of the vectors to be inserted into the vector index.
14
+ * @min `1`
15
+ * @max `4096`
16
+ */
17
+ Dimension: number;
18
+ /**
19
+ * The distance metric to be used for similarity search.
20
+ */
21
+ DistanceMetric: DistanceMetric;
22
+ /**
23
+ * The name of the vector index to create.
24
+ * @minLength `3`
25
+ * @maxLength `63`
26
+ */
27
+ IndexName?: string;
28
+ /**
29
+ * The metadata configuration for the vector index.
30
+ */
31
+ MetadataConfiguration?: MetadataConfiguration;
32
+ /**
33
+ * The Amazon Resource Name (ARN) of the vector bucket.
34
+ */
35
+ VectorBucketArn?: string;
36
+ /**
37
+ * The name of the vector bucket that contains the vector index.
38
+ * @minLength `3`
39
+ * @maxLength `63`
40
+ */
41
+ VectorBucketName?: string;
42
+ };
43
+ /**
44
+ * Attribute type definition for `AWS::S3Vectors::Index`.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-index.html#aws-resource-s3vectors-index-return-values}
46
+ */
47
+ export type S3VectorsIndexAttributes = {
48
+ /**
49
+ * Date and time when the vector index was created.
50
+ */
51
+ CreationTime: string;
52
+ /**
53
+ * The Amazon Resource Name (ARN) of the index
54
+ */
55
+ IndexArn: string;
56
+ };
57
+ /**
58
+ * Type definition for `AWS::S3Vectors::Index.DataType`.
59
+ * The data type of the vectors to be inserted into the vector index.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-datatype.html}
61
+ */
62
+ export type DataType = "float32";
63
+ /**
64
+ * Type definition for `AWS::S3Vectors::Index.DistanceMetric`.
65
+ * The distance metric to be used for similarity search.
66
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-distancemetric.html}
67
+ */
68
+ export type DistanceMetric = "cosine" | "euclidean";
69
+ /**
70
+ * Type definition for `AWS::S3Vectors::Index.MetadataConfiguration`.
71
+ * The metadata configuration for the vector index.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-metadataconfiguration.html}
73
+ */
74
+ export type MetadataConfiguration = {
75
+ /**
76
+ * Non-filterable metadata keys allow you to enrich vectors with additional context during storage and retrieval. Unlike default metadata keys, these keys cannot be used as query filters. Non-filterable metadata keys can be retrieved but cannot be searched, queried, or filtered. You can access non-filterable metadata keys of your vectors after finding the vectors.
77
+ * @minLength `1`
78
+ * @maxLength `10`
79
+ */
80
+ NonFilterableMetadataKeys?: string[];
81
+ };
82
+ /**
83
+ * Resource Type definition for AWS::S3Vectors::Index
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-index.html}
85
+ */
86
+ export declare class S3VectorsIndex extends $Resource<"AWS::S3Vectors::Index", S3VectorsIndexProperties, S3VectorsIndexAttributes> {
87
+ static readonly Type = "AWS::S3Vectors::Index";
88
+ constructor(logicalId: string, properties: S3VectorsIndexProperties, options?: $ResourceOptions);
89
+ }
90
+ //# sourceMappingURL=AWS-S3Vectors-Index.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::S3Vectors::Index
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-index.html}
5
+ */
6
+ export class S3VectorsIndex extends $Resource {
7
+ static Type = "AWS::S3Vectors::Index";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, S3VectorsIndex.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-S3Vectors-Index.js.map
@@ -0,0 +1,59 @@
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::S3Vectors::VectorBucket
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html}
6
+ */
7
+ export type S3VectorsVectorBucketProperties = {
8
+ /**
9
+ * The encryption configuration for the vector bucket.
10
+ */
11
+ EncryptionConfiguration?: EncryptionConfiguration;
12
+ /**
13
+ * The name of the vector bucket.
14
+ * @minLength `3`
15
+ * @maxLength `63`
16
+ */
17
+ VectorBucketName?: string;
18
+ };
19
+ /**
20
+ * Attribute type definition for `AWS::S3Vectors::VectorBucket`.
21
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html#aws-resource-s3vectors-vectorbucket-return-values}
22
+ */
23
+ export type S3VectorsVectorBucketAttributes = {
24
+ /**
25
+ * Date and time when the vector bucket was created.
26
+ */
27
+ CreationTime: string;
28
+ /**
29
+ * The Amazon Resource Name (ARN) of the vector bucket.
30
+ */
31
+ VectorBucketArn: string;
32
+ };
33
+ /**
34
+ * Type definition for `AWS::S3Vectors::VectorBucket.EncryptionConfiguration`.
35
+ * The encryption configuration for the vector bucket.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-vectorbucket-encryptionconfiguration.html}
37
+ */
38
+ export type EncryptionConfiguration = {
39
+ /**
40
+ * AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
41
+ * @minLength `1`
42
+ * @maxLength `2048`
43
+ * @pattern `^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$`
44
+ */
45
+ KmsKeyArn?: string;
46
+ /**
47
+ * The server-side encryption type to use for the encryption configuration of the vector bucket. By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
48
+ */
49
+ SseType?: "AES256" | "aws:kms";
50
+ };
51
+ /**
52
+ * Resource Type definition for AWS::S3Vectors::VectorBucket
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html}
54
+ */
55
+ export declare class S3VectorsVectorBucket extends $Resource<"AWS::S3Vectors::VectorBucket", S3VectorsVectorBucketProperties, S3VectorsVectorBucketAttributes> {
56
+ static readonly Type = "AWS::S3Vectors::VectorBucket";
57
+ constructor(logicalId: string, properties: S3VectorsVectorBucketProperties, options?: $ResourceOptions);
58
+ }
59
+ //# sourceMappingURL=AWS-S3Vectors-VectorBucket.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::S3Vectors::VectorBucket
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html}
5
+ */
6
+ export class S3VectorsVectorBucket extends $Resource {
7
+ static Type = "AWS::S3Vectors::VectorBucket";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, S3VectorsVectorBucket.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-S3Vectors-VectorBucket.js.map
@@ -0,0 +1,37 @@
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::S3Vectors::VectorBucketPolicy
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html}
6
+ */
7
+ export type S3VectorsVectorBucketPolicyProperties = {
8
+ /**
9
+ * A policy document containing permissions to add to the specified vector bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
10
+ */
11
+ Policy: Policy;
12
+ /**
13
+ * The Amazon Resource Name (ARN) of the vector bucket.
14
+ */
15
+ VectorBucketArn?: string;
16
+ /**
17
+ * The name of the vector bucket
18
+ * @minLength `3`
19
+ * @maxLength `63`
20
+ */
21
+ VectorBucketName?: string;
22
+ };
23
+ /**
24
+ * Type definition for `AWS::S3Vectors::VectorBucketPolicy.Policy`.
25
+ * A policy document containing permissions to add to the specified vector bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-vectorbucketpolicy-policy.html}
27
+ */
28
+ export type Policy = Record<string, any> | string;
29
+ /**
30
+ * Resource Type definition for AWS::S3Vectors::VectorBucketPolicy
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html}
32
+ */
33
+ export declare class S3VectorsVectorBucketPolicy extends $Resource<"AWS::S3Vectors::VectorBucketPolicy", S3VectorsVectorBucketPolicyProperties, Record<string, never>> {
34
+ static readonly Type = "AWS::S3Vectors::VectorBucketPolicy";
35
+ constructor(logicalId: string, properties: S3VectorsVectorBucketPolicyProperties, options?: $ResourceOptions);
36
+ }
37
+ //# sourceMappingURL=AWS-S3Vectors-VectorBucketPolicy.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::S3Vectors::VectorBucketPolicy
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html}
5
+ */
6
+ export class S3VectorsVectorBucketPolicy extends $Resource {
7
+ static Type = "AWS::S3Vectors::VectorBucketPolicy";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, S3VectorsVectorBucketPolicy.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-S3Vectors-VectorBucketPolicy.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.463",
3
+ "version": "0.1.464",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },