@awboost/cfn-resource-types 0.1.503 → 0.1.505
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-BedrockAgentCore-Gateway.d.ts +50 -1
- package/lib/AWS-DAX-SubnetGroup.d.ts +3 -10
- package/lib/AWS-DAX-SubnetGroup.js +1 -1
- package/lib/AWS-DataSync-Agent.d.ts +1 -1
- package/lib/AWS-DataSync-LocationAzureBlob.d.ts +7 -7
- package/lib/AWS-DataSync-LocationEFS.d.ts +5 -5
- package/lib/AWS-DataSync-LocationFSxLustre.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxONTAP.d.ts +3 -3
- package/lib/AWS-DataSync-LocationFSxOpenZFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxWindows.d.ts +2 -2
- package/lib/AWS-DataSync-LocationHDFS.d.ts +1 -1
- package/lib/AWS-DataSync-LocationNFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationObjectStorage.d.ts +7 -7
- package/lib/AWS-DataSync-LocationS3.d.ts +3 -3
- package/lib/AWS-DataSync-LocationSMB.d.ts +8 -8
- package/lib/AWS-DataSync-Task.d.ts +8 -8
- package/lib/AWS-EC2-NetworkInterfaceAttachment.d.ts +18 -8
- package/lib/AWS-EC2-NetworkInterfaceAttachment.js +2 -1
- package/lib/AWS-ECR-SigningConfiguration.d.ts +1 -1
- package/lib/AWS-ECS-Service.d.ts +2 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroupV2.d.ts +474 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroupV2.js +13 -0
- package/lib/AWS-KafkaConnect-Connector.d.ts +4 -0
- package/lib/AWS-Lex-Bot.d.ts +48 -5
- package/lib/AWS-Lex-Bot.js +1 -1
- package/lib/AWS-Lex-BotAlias.d.ts +3 -2
- package/lib/AWS-Lex-BotAlias.js +1 -1
- package/lib/AWS-S3-Bucket.d.ts +19 -4
- package/lib/AWS-SES-Tenant.d.ts +77 -0
- package/lib/AWS-SES-Tenant.js +12 -0
- package/lib/AWS-SSM-MaintenanceWindowTask.d.ts +52 -1
- package/lib/AWS-SecretsManager-Secret.d.ts +3 -0
- package/package.json +1 -1
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
|
|
8
8
|
*/
|
|
9
9
|
export type S3BucketProperties = {
|
|
10
|
+
/**
|
|
11
|
+
* The ABAC status of the general purpose bucket. When ABAC is enabled for the general purpose bucket, you can use tags to manage access to the general purpose buckets as well as for cost tracking purposes. When ABAC is disabled for the general purpose buckets, you can only use tags for cost tracking purposes. For more information, see [Using tags with S3 general purpose buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html).
|
|
12
|
+
*/
|
|
10
13
|
AbacStatus?: "Enabled" | "Disabled";
|
|
11
14
|
/**
|
|
12
15
|
* Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
|
|
@@ -249,12 +252,20 @@ export type AnalyticsConfiguration = {
|
|
|
249
252
|
};
|
|
250
253
|
/**
|
|
251
254
|
* Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
|
|
255
|
+
* A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
|
|
256
|
+
This data type is used with the following actions:
|
|
257
|
+
+ [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html)
|
|
258
|
+
+ [GetBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html)
|
|
259
|
+
+ [DeleteBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html)
|
|
260
|
+
|
|
261
|
+
+ Permissions You must have the s3:PutEncryptionConfiguration permission to block or unblock an encryption type for a bucket. You must have the s3:GetEncryptionConfiguration permission to view a bucket's encryption type.
|
|
252
262
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
|
|
253
263
|
*/
|
|
254
264
|
export type BlockedEncryptionTypes = {
|
|
255
265
|
/**
|
|
256
|
-
|
|
257
|
-
|
|
266
|
+
* The object encryption type that you want to block or unblock for an Amazon S3 general purpose bucket.
|
|
267
|
+
Currently, this parameter only supports blocking or unblocking server side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
|
|
268
|
+
*/
|
|
258
269
|
EncryptionType?: ("NONE" | "SSE-C")[];
|
|
259
270
|
};
|
|
260
271
|
/**
|
|
@@ -481,7 +492,7 @@ export type InventoryConfiguration = {
|
|
|
481
492
|
/**
|
|
482
493
|
* Contains the optional fields that are included in the inventory results.
|
|
483
494
|
*/
|
|
484
|
-
OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")[];
|
|
495
|
+
OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")[];
|
|
485
496
|
/**
|
|
486
497
|
* Specifies the inventory filter prefix.
|
|
487
498
|
*/
|
|
@@ -819,7 +830,7 @@ export type PartitionedPrefix = {
|
|
|
819
830
|
};
|
|
820
831
|
/**
|
|
821
832
|
* Type definition for `AWS::S3::Bucket.PublicAccessBlockConfiguration`.
|
|
822
|
-
* The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
|
|
833
|
+
* The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. Bucket-level settings work alongside account-level settings (which may inherit from organization-level policies). For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
|
|
823
834
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html}
|
|
824
835
|
*/
|
|
825
836
|
export type PublicAccessBlockConfiguration = {
|
|
@@ -1283,6 +1294,10 @@ export type ServerSideEncryptionByDefault = {
|
|
|
1283
1294
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
|
|
1284
1295
|
*/
|
|
1285
1296
|
export type ServerSideEncryptionRule = {
|
|
1297
|
+
/**
|
|
1298
|
+
* A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
|
|
1299
|
+
Currently, this parameter only supports blocking or unblocking server-side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
|
|
1300
|
+
*/
|
|
1286
1301
|
BlockedEncryptionTypes?: BlockedEncryptionTypes;
|
|
1287
1302
|
/**
|
|
1288
1303
|
* Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
|
|
@@ -0,0 +1,77 @@
|
|
|
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::SES::Tenant
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SESTenantProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The list of resources to associate with the tenant.
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
*/
|
|
12
|
+
ResourceAssociations?: ResourceAssociation[];
|
|
13
|
+
/**
|
|
14
|
+
* The tags (keys and values) associated with the tenant.
|
|
15
|
+
* @minLength `0`
|
|
16
|
+
* @maxLength `50`
|
|
17
|
+
*/
|
|
18
|
+
Tags?: Tag[];
|
|
19
|
+
/**
|
|
20
|
+
* The name of the tenant.
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `64`
|
|
23
|
+
* @pattern `^[\w\-_]+$`
|
|
24
|
+
*/
|
|
25
|
+
TenantName: string;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Attribute type definition for `AWS::SES::Tenant`.
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#aws-resource-ses-tenant-return-values}
|
|
30
|
+
*/
|
|
31
|
+
export type SESTenantAttributes = {
|
|
32
|
+
/**
|
|
33
|
+
* Amazon Resource Name (ARN) of the tenant.
|
|
34
|
+
* @minLength `1`
|
|
35
|
+
*/
|
|
36
|
+
Arn: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Type definition for `AWS::SES::Tenant.ResourceAssociation`.
|
|
40
|
+
* The resource to associate with the tenant
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-resourceassociation.html}
|
|
42
|
+
*/
|
|
43
|
+
export type ResourceAssociation = {
|
|
44
|
+
/**
|
|
45
|
+
* The ARN of the resource to associate with the tenant
|
|
46
|
+
* @minLength `1`
|
|
47
|
+
*/
|
|
48
|
+
ResourceArn: string;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Type definition for `AWS::SES::Tenant.Tag`.
|
|
52
|
+
* An object that defines the tags (keys and values) that you want to associate with the tenant.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-tag.html}
|
|
54
|
+
*/
|
|
55
|
+
export type Tag = {
|
|
56
|
+
/**
|
|
57
|
+
* The key of the key-value tag.
|
|
58
|
+
* @minLength `1`
|
|
59
|
+
* @maxLength `128`
|
|
60
|
+
*/
|
|
61
|
+
Key: string;
|
|
62
|
+
/**
|
|
63
|
+
* The value of the key-value tag.
|
|
64
|
+
* @minLength `0`
|
|
65
|
+
* @maxLength `256`
|
|
66
|
+
*/
|
|
67
|
+
Value: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Resource Type definition for AWS::SES::Tenant
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
|
|
72
|
+
*/
|
|
73
|
+
export declare class SESTenant extends $Resource<"AWS::SES::Tenant", SESTenantProperties, SESTenantAttributes> {
|
|
74
|
+
static readonly Type = "AWS::SES::Tenant";
|
|
75
|
+
constructor(logicalId: string, properties: SESTenantProperties, options?: $ResourceOptions);
|
|
76
|
+
}
|
|
77
|
+
//# sourceMappingURL=AWS-SES-Tenant.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::SES::Tenant
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SESTenant extends $Resource {
|
|
7
|
+
static Type = "AWS::SES::Tenant";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SESTenant.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SES-Tenant.js.map
|
|
@@ -5,19 +5,61 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html}
|
|
6
6
|
*/
|
|
7
7
|
export type SSMMaintenanceWindowTaskProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
|
|
10
|
+
*/
|
|
8
11
|
CutoffBehavior?: string;
|
|
12
|
+
/**
|
|
13
|
+
* A description of the task.
|
|
14
|
+
*/
|
|
9
15
|
Description?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Information about an Amazon S3 bucket to write Run Command task-level logs to.
|
|
18
|
+
*/
|
|
10
19
|
LoggingInfo?: LoggingInfo;
|
|
20
|
+
/**
|
|
21
|
+
* The maximum number of targets this task can be run for, in parallel.
|
|
22
|
+
*/
|
|
11
23
|
MaxConcurrency?: string;
|
|
24
|
+
/**
|
|
25
|
+
* The maximum number of errors allowed before this task stops being scheduled.
|
|
26
|
+
*/
|
|
12
27
|
MaxErrors?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The task name.
|
|
30
|
+
*/
|
|
13
31
|
Name?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The priority of the task in the maintenance window. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.
|
|
34
|
+
*/
|
|
14
35
|
Priority: number;
|
|
36
|
+
/**
|
|
37
|
+
* The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task.
|
|
38
|
+
*/
|
|
15
39
|
ServiceRoleArn?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The targets (either instances or window target ids).
|
|
42
|
+
*/
|
|
16
43
|
Targets?: Target[];
|
|
44
|
+
/**
|
|
45
|
+
* The resource that the task uses during execution.
|
|
46
|
+
*/
|
|
17
47
|
TaskArn: string;
|
|
48
|
+
/**
|
|
49
|
+
* The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty.
|
|
50
|
+
*/
|
|
18
51
|
TaskInvocationParameters?: TaskInvocationParameters;
|
|
52
|
+
/**
|
|
53
|
+
* The parameters to pass to the task when it runs.
|
|
54
|
+
*/
|
|
19
55
|
TaskParameters?: Record<string, any>;
|
|
56
|
+
/**
|
|
57
|
+
* The type of task.
|
|
58
|
+
*/
|
|
20
59
|
TaskType: string;
|
|
60
|
+
/**
|
|
61
|
+
* The ID of the maintenance window where the task is registered.
|
|
62
|
+
*/
|
|
21
63
|
WindowId: string;
|
|
22
64
|
};
|
|
23
65
|
/**
|
|
@@ -25,14 +67,23 @@ export type SSMMaintenanceWindowTaskProperties = {
|
|
|
25
67
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#aws-resource-ssm-maintenancewindowtask-return-values}
|
|
26
68
|
*/
|
|
27
69
|
export type SSMMaintenanceWindowTaskAttributes = {
|
|
28
|
-
|
|
70
|
+
/**
|
|
71
|
+
* Unique identifier of the maintenance window task.
|
|
72
|
+
*/
|
|
73
|
+
WindowTaskId: string;
|
|
29
74
|
};
|
|
30
75
|
/**
|
|
31
76
|
* Type definition for `AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig`.
|
|
32
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-cloudwatchoutputconfig.html}
|
|
33
78
|
*/
|
|
34
79
|
export type CloudWatchOutputConfig = {
|
|
80
|
+
/**
|
|
81
|
+
* The name of the CloudWatch log group where you want to send command output.
|
|
82
|
+
*/
|
|
35
83
|
CloudWatchLogGroupName?: string;
|
|
84
|
+
/**
|
|
85
|
+
* Enables Systems Manager to send command output to CloudWatch Logs.
|
|
86
|
+
*/
|
|
36
87
|
CloudWatchOutputEnabled?: boolean;
|
|
37
88
|
};
|
|
38
89
|
/**
|
|
@@ -57,6 +57,9 @@ export type SecretsManagerSecretProperties = {
|
|
|
57
57
|
+ If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
|
|
58
58
|
*/
|
|
59
59
|
Tags?: Tag[];
|
|
60
|
+
/**
|
|
61
|
+
* The exact string that identifies the third-party partner that holds the external secret. For more information, see [Managed external secret partners](https://docs.aws.amazon.com/secretsmanager/latest/userguide/mes-partners.html).
|
|
62
|
+
*/
|
|
60
63
|
Type?: string;
|
|
61
64
|
};
|
|
62
65
|
/**
|