@awboost/cfn-resource-types 0.1.324 → 0.1.325

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.
@@ -33,8 +33,8 @@ export type AppSyncResolverProperties = {
33
33
  FieldName: string;
34
34
  /**
35
35
  * The resolver type.
36
- + *UNIT*: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source.
37
- + *PIPELINE*: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of ``Function`` objects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
36
+ + *UNIT*: A UNIT resolver type. A UNIT resolver is the default resolver type. You can use a UNIT resolver to run a GraphQL query against a single data source.
37
+ + *PIPELINE*: A PIPELINE resolver type. You can use a PIPELINE resolver to invoke a series of ``Function`` objects in a serial manner. You can use a pipeline resolver to run a GraphQL query against multiple data sources.
38
38
  */
39
39
  Kind?: string;
40
40
  /**
@@ -132,7 +132,7 @@ export type LambdaConflictHandlerConfig = {
132
132
  /**
133
133
  * Type definition for `AWS::AppSync::Resolver.PipelineConfig`.
134
134
  * Use the ``PipelineConfig`` property type to specify ``PipelineConfig`` for an APSYlong resolver.
135
- ``PipelineConfig`` is a property of the [AWS::AppSync::Resolver](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html) resource.
135
+ ``PipelineConfig`` is a property of the [AWS::AppSync::Resolver](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html) resource.
136
136
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-pipelineconfig.html}
137
137
  */
138
138
  export type PipelineConfig = {
@@ -150,15 +150,15 @@ export type PipelineConfig = {
150
150
  export type SyncConfig = {
151
151
  /**
152
152
  * The Conflict Detection strategy to use.
153
- + *VERSION*: Detect conflicts based on object versions for this resolver.
154
- + *NONE*: Do not detect conflicts when invoking this resolver.
153
+ + *VERSION*: Detect conflicts based on object versions for this resolver.
154
+ + *NONE*: Do not detect conflicts when invoking this resolver.
155
155
  */
156
156
  ConflictDetection: string;
157
157
  /**
158
158
  * The Conflict Resolution strategy to perform in the event of a conflict.
159
- + *OPTIMISTIC_CONCURRENCY*: Resolve conflicts by rejecting mutations when versions don't match the latest version at the server.
160
- + *AUTOMERGE*: Resolve conflicts with the Automerge conflict resolution strategy.
161
- + *LAMBDA*: Resolve conflicts with an LAMlong function supplied in the ``LambdaConflictHandlerConfig``.
159
+ + *OPTIMISTIC_CONCURRENCY*: Resolve conflicts by rejecting mutations when versions don't match the latest version at the server.
160
+ + *AUTOMERGE*: Resolve conflicts with the Automerge conflict resolution strategy.
161
+ + *LAMBDA*: Resolve conflicts with an LAMlong function supplied in the ``LambdaConflictHandlerConfig``.
162
162
  */
163
163
  ConflictHandler?: string;
164
164
  /**
@@ -28,7 +28,7 @@ export type CassandraKeyspaceProperties = {
28
28
  export type ReplicationSpecification = {
29
29
  /**
30
30
  * @minLength `2`
31
- * @maxLength `6`
31
+ * @maxLength `17`
32
32
  */
33
33
  RegionList?: ("af-south-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
34
34
  ReplicationStrategy?: "SINGLE_REGION" | "MULTI_REGION";
@@ -16,16 +16,8 @@ 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'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.
20
- + 256 (.25 vCPU) - Available ``memory`` values: 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB)
21
- + 512 (.5 vCPU) - Available ``memory`` values: 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB)
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)
23
- + 2048 (2 vCPU) - Available ``memory`` values: 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB)
24
- + 4096 (4 vCPU) - Available ``memory`` values: 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB)
25
- + 8192 (8 vCPU) - Available ``memory`` values: 16 GB and 60 GB in 4 GB increments
26
- This option requires Linux platform ``1.4.0`` or later.
27
- + 16384 (16vCPU) - Available ``memory`` values: 32GB and 120 GB in 8 GB increments
28
- This option requires Linux platform ``1.4.0`` or later.
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).
20
+ This field is required for Fargate. For information about the valid values, see [Task size](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#task_size) in the *Amazon Elastic Container Service Developer Guide*.
29
21
  */
30
22
  Cpu?: string;
31
23
  /**
@@ -1,46 +1,69 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::SSMGuiConnect::Preferences
4
+ * Definition of AWS::SSMGuiConnect::Preferences Resource Type
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html}
6
6
  */
7
7
  export type SSMGuiConnectPreferencesProperties = {
8
- IdleConnection?: IdleConnectionPreferences[];
8
+ /**
9
+ * The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region. This includes details such as which S3 bucket recordings are stored in.
10
+ */
11
+ ConnectionRecordingPreferences?: {
12
+ /**
13
+ * The ARN of a AWS KMS key that is used to encrypt data while it is being processed by the service. This key must exist in the same AWS Region as the node you start an RDP connection to.
14
+ * @minLength `1`
15
+ * @maxLength `2048`
16
+ */
17
+ KMSKeyArn: string;
18
+ /**
19
+ * Determines where recordings of RDP connections are stored.
20
+ */
21
+ RecordingDestinations: RecordingDestinations;
22
+ };
9
23
  };
10
24
  /**
11
25
  * Attribute type definition for `AWS::SSMGuiConnect::Preferences`.
12
26
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html#aws-resource-ssmguiconnect-preferences-return-values}
13
27
  */
14
28
  export type SSMGuiConnectPreferencesAttributes = {
29
+ /**
30
+ * The AWS Account Id that the preference is associated with, used as the unique identifier for this resource.
31
+ * @pattern `\d{12}`
32
+ */
15
33
  AccountId: string;
16
- Id: string;
17
34
  };
18
35
  /**
19
- * Type definition for `AWS::SSMGuiConnect::Preferences.IdleConnectionAlert`.
20
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmguiconnect-preferences-idleconnectionalert.html}
36
+ * Type definition for `AWS::SSMGuiConnect::Preferences.RecordingDestinations`.
37
+ * Determines where recordings of RDP connections are stored.
38
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmguiconnect-preferences-recordingdestinations.html}
21
39
  */
22
- export type IdleConnectionAlert = {
23
- Type?: string;
24
- Value: number;
40
+ export type RecordingDestinations = {
41
+ /**
42
+ * The S3 bucket where RDP connection recordings are stored.
43
+ * @minLength `1`
44
+ * @maxLength `1`
45
+ */
46
+ S3Buckets: S3Bucket[];
25
47
  };
26
48
  /**
27
- * Type definition for `AWS::SSMGuiConnect::Preferences.IdleConnectionPreferences`.
28
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmguiconnect-preferences-idleconnectionpreferences.html}
49
+ * Type definition for `AWS::SSMGuiConnect::Preferences.S3Bucket`.
50
+ * The S3 bucket where RDP connection recordings are stored.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmguiconnect-preferences-s3bucket.html}
29
52
  */
30
- export type IdleConnectionPreferences = {
31
- Alert?: IdleConnectionAlert;
32
- Timeout?: IdleConnectionTimeout;
53
+ export type S3Bucket = {
54
+ /**
55
+ * The name of the S3 bucket where RDP connection recordings are stored.
56
+ * @pattern `(?=^.{3,63}$)(?!^(\d+\.)+\d+$)(^(([a-z0-9]|[a-z0-9][a-z0-9\-]*[a-z0-9])\.)*([a-z0-9]|[a-z0-9][a-z0-9\-]*[a-z0-9])$)`
57
+ */
58
+ BucketName: string;
59
+ /**
60
+ * The AWS account number that owns the S3 bucket.
61
+ * @pattern `^[0-9]{12}$`
62
+ */
63
+ BucketOwner: string;
33
64
  };
34
65
  /**
35
- * Type definition for `AWS::SSMGuiConnect::Preferences.IdleConnectionTimeout`.
36
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmguiconnect-preferences-idleconnectiontimeout.html}
37
- */
38
- export type IdleConnectionTimeout = {
39
- Type?: string;
40
- Value: number;
41
- };
42
- /**
43
- * Resource Type definition for AWS::SSMGuiConnect::Preferences
66
+ * Definition of AWS::SSMGuiConnect::Preferences Resource Type
44
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html}
45
68
  */
46
69
  export declare class SSMGuiConnectPreferences extends $Resource<"AWS::SSMGuiConnect::Preferences", SSMGuiConnectPreferencesProperties, SSMGuiConnectPreferencesAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::SSMGuiConnect::Preferences
3
+ * Definition of AWS::SSMGuiConnect::Preferences Resource Type
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html}
5
5
  */
6
6
  export class SSMGuiConnectPreferences extends $Resource {
@@ -12,6 +12,10 @@ export type VerifiedPermissionsPolicyStoreProperties = {
12
12
  */
13
13
  Description?: string;
14
14
  Schema?: SchemaDefinition;
15
+ /**
16
+ * The tags to add to the policy store
17
+ */
18
+ Tags?: Tag[];
15
19
  ValidationSettings: ValidationSettings;
16
20
  };
17
21
  /**
@@ -39,6 +43,14 @@ export type VerifiedPermissionsPolicyStoreAttributes = {
39
43
  export type SchemaDefinition = {
40
44
  CedarJson?: string;
41
45
  };
46
+ /**
47
+ * Type definition for `AWS::VerifiedPermissions::PolicyStore.Tag`.
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-policystore-tag.html}
49
+ */
50
+ export type Tag = {
51
+ Key: string;
52
+ Value: string;
53
+ };
42
54
  /**
43
55
  * Type definition for `AWS::VerifiedPermissions::PolicyStore.ValidationMode`.
44
56
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-policystore-validationmode.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.324",
3
+ "version": "0.1.325",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },