@awboost/cfn-resource-types 0.1.392 → 0.1.393

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.
@@ -23,7 +23,7 @@ export type AppConfigConfigurationProfileProperties = {
23
23
  Description?: string;
24
24
  /**
25
25
  * The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
26
- * @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:[a-z]{2}(-gov|-iso(b?))?-[a-z]+-\d{1}:\d{12}:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
26
+ * @pattern `^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}|alias/[a-zA-Z0-9/_-]{1,250}|arn:aws[a-zA-Z-]*:kms:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(key/[0-9a-f-]{36}|alias/[a-zA-Z0-9/_-]{1,250})$`
27
27
  */
28
28
  KmsKeyIdentifier?: string;
29
29
  /**
@@ -42,7 +42,7 @@ export type AppConfigConfigurationProfileProperties = {
42
42
  * The ARN of an IAM role with permission to access the configuration at the specified LocationUri.
43
43
  * @minLength `20`
44
44
  * @maxLength `2048`
45
- * @pattern `^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):(iam)::\d{12}:role[/].*)$`
45
+ * @pattern `^((arn):(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov|aws-eusc):(iam)::\d{12}:role[/].*)$`
46
46
  */
47
47
  RetrievalRoleArn?: string;
48
48
  /**
@@ -73,7 +73,7 @@ export type AppConfigConfigurationProfileAttributes = {
73
73
  * The Amazon Resource Name of the AWS Key Management Service key to encrypt new configuration data versions in the AWS AppConfig hosted configuration store. This attribute is only used for hosted configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an AWS KMS key for that particular service.
74
74
  * @minLength `20`
75
75
  * @maxLength `2048`
76
- * @pattern `arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1})?:(\d{12})?:[a-zA-Z0-9-_/:.]+`
76
+ * @pattern `arn:(aws[a-zA-Z-]*)?:[a-z]+:((eusc-)?[a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1})?:(\d{12})?:[a-zA-Z0-9-_/:.]+`
77
77
  */
78
78
  KmsKeyArn: string;
79
79
  };
@@ -49,6 +49,10 @@ export type AppConfigDeploymentAttributes = {
49
49
  * The sequence number of the deployment.
50
50
  */
51
51
  DeploymentNumber: string;
52
+ /**
53
+ * The state of the deployment.
54
+ */
55
+ State: "BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED";
52
56
  };
53
57
  /**
54
58
  * Type definition for `AWS::AppConfig::Deployment.DynamicExtensionParameters`.
@@ -33,9 +33,13 @@ export type IoTSiteWiseAssetModelProperties = {
33
33
  */
34
34
  AssetModelProperties?: AssetModelProperty[];
35
35
  /**
36
- * The type of the asset model (ASSET_MODEL OR COMPONENT_MODEL)
36
+ * The type of the asset model (ASSET_MODEL OR COMPONENT_MODEL or INTERFACE)
37
37
  */
38
38
  AssetModelType?: string;
39
+ /**
40
+ * a list of asset model and interface relationships
41
+ */
42
+ EnforcedAssetModelInterfaceRelationships?: EnforcedAssetModelInterfaceRelationship[];
39
43
  /**
40
44
  * A list of key-value pairs that contain metadata for the asset model.
41
45
  */
@@ -324,6 +328,40 @@ export type DataType = "STRING" | "INTEGER" | "DOUBLE" | "BOOLEAN" | "STRUCT";
324
328
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-datatypespec.html}
325
329
  */
326
330
  export type DataTypeSpec = "AWS/ALARM_STATE";
331
+ /**
332
+ * Type definition for `AWS::IoTSiteWise::AssetModel.EnforcedAssetModelInterfacePropertyMapping`.
333
+ * Contains information about enforced interface property and asset model property
334
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacepropertymapping.html}
335
+ */
336
+ export type EnforcedAssetModelInterfacePropertyMapping = {
337
+ /**
338
+ * The external ID of the enforced asset model property
339
+ */
340
+ AssetModelPropertyExternalId?: string;
341
+ /**
342
+ * The logical ID of the enforced asset model property
343
+ */
344
+ AssetModelPropertyLogicalId?: string;
345
+ /**
346
+ * The external ID of the enforced interface property
347
+ */
348
+ InterfaceAssetModelPropertyExternalId: string;
349
+ };
350
+ /**
351
+ * Type definition for `AWS::IoTSiteWise::AssetModel.EnforcedAssetModelInterfaceRelationship`.
352
+ * Contains information about enforced interface hierarchy and asset model hierarchy
353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-enforcedassetmodelinterfacerelationship.html}
354
+ */
355
+ export type EnforcedAssetModelInterfaceRelationship = {
356
+ /**
357
+ * The ID of the interface that is enforced to the asset model
358
+ */
359
+ InterfaceAssetModelId?: string;
360
+ /**
361
+ * Contains information about enforced interface property and asset model property
362
+ */
363
+ PropertyMappings?: EnforcedAssetModelInterfacePropertyMapping[];
364
+ };
327
365
  /**
328
366
  * Type definition for `AWS::IoTSiteWise::AssetModel.ExpressionVariable`.
329
367
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-assetmodel-expressionvariable.html}
@@ -5,6 +5,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-firewall.html}
6
6
  */
7
7
  export type NetworkFirewallFirewallProperties = {
8
+ AvailabilityZoneChangeProtection?: boolean;
9
+ AvailabilityZoneMappings?: AvailabilityZoneMapping[];
8
10
  DeleteProtection?: boolean;
9
11
  /**
10
12
  * @maxLength `512`
@@ -30,17 +32,19 @@ export type NetworkFirewallFirewallProperties = {
30
32
  FirewallPolicyArn: string;
31
33
  FirewallPolicyChangeProtection?: boolean;
32
34
  SubnetChangeProtection?: boolean;
35
+ SubnetMappings?: SubnetMapping[];
36
+ Tags?: Tag[];
33
37
  /**
34
- * @minLength `1`
38
+ * @maxLength `128`
39
+ * @pattern `^tgw-[0-9a-z]+$`
35
40
  */
36
- SubnetMappings: SubnetMapping[];
37
- Tags?: Tag[];
41
+ TransitGatewayId?: string;
38
42
  /**
39
43
  * @minLength `1`
40
44
  * @maxLength `128`
41
45
  * @pattern `^vpc-[0-9a-f]+$`
42
46
  */
43
- VpcId: string;
47
+ VpcId?: string;
44
48
  };
45
49
  /**
46
50
  * Attribute type definition for `AWS::NetworkFirewall::Firewall`.
@@ -62,6 +66,16 @@ export type NetworkFirewallFirewallAttributes = {
62
66
  */
63
67
  FirewallId: string;
64
68
  };
69
+ /**
70
+ * Type definition for `AWS::NetworkFirewall::Firewall.AvailabilityZoneMapping`.
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewall-availabilityzonemapping.html}
72
+ */
73
+ export type AvailabilityZoneMapping = {
74
+ /**
75
+ * A AvailabilityZone
76
+ */
77
+ AvailabilityZone: string;
78
+ };
65
79
  /**
66
80
  * Type definition for `AWS::NetworkFirewall::Firewall.EnabledAnalysisType`.
67
81
  * An analysis type.
@@ -751,6 +751,9 @@ export type RDSDBInstanceProperties = {
751
751
  * The ID of the region that contains the source DB instance for the read replica.
752
752
  */
753
753
  SourceRegion?: string;
754
+ /**
755
+ * The status of a read replica. If the DB instance isn't a read replica, the value is blank.
756
+ */
754
757
  StatusInfos?: DBInstanceStatusInfo[];
755
758
  /**
756
759
  * A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted.
@@ -914,6 +917,7 @@ export type DBInstanceRole = {
914
917
  };
915
918
  /**
916
919
  * Type definition for `AWS::RDS::DBInstance.DBInstanceStatusInfo`.
920
+ * Provides a list of status information for a DB instance.
917
921
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html}
918
922
  */
919
923
  export type DBInstanceStatusInfo = {
@@ -930,7 +934,7 @@ export type DBInstanceStatusInfo = {
930
934
  */
931
935
  Status?: string;
932
936
  /**
933
- * The status type of the DB instance.
937
+ * This value is currently "read replication."
934
938
  */
935
939
  StatusType?: string;
936
940
  };
@@ -49,6 +49,12 @@ export type WorkSpacesWebPortalProperties = {
49
49
  * @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
50
50
  */
51
51
  NetworkSettingsArn?: string;
52
+ /**
53
+ * @minLength `20`
54
+ * @maxLength `2048`
55
+ * @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
56
+ */
57
+ SessionLoggerArn?: string;
52
58
  /**
53
59
  * @minLength `0`
54
60
  * @maxLength `200`
@@ -0,0 +1,138 @@
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
+ * Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html}
6
+ */
7
+ export type WorkSpacesWebSessionLoggerProperties = {
8
+ AdditionalEncryptionContext?: EncryptionContextMap;
9
+ /**
10
+ * @minLength `20`
11
+ * @maxLength `2048`
12
+ * @pattern `^arn:[\w+=\/,.@-]+:kms:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:key\/[a-zA-Z0-9-]+$`
13
+ */
14
+ CustomerManagedKey?: string;
15
+ /**
16
+ * @minLength `1`
17
+ * @maxLength `64`
18
+ * @pattern `^[ _\-\d\w]+$`
19
+ */
20
+ DisplayName?: string;
21
+ EventFilter: EventFilter;
22
+ LogConfiguration: LogConfiguration;
23
+ /**
24
+ * @minLength `0`
25
+ * @maxLength `200`
26
+ */
27
+ Tags?: Tag[];
28
+ };
29
+ /**
30
+ * Attribute type definition for `AWS::WorkSpacesWeb::SessionLogger`.
31
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html#aws-resource-workspacesweb-sessionlogger-return-values}
32
+ */
33
+ export type WorkSpacesWebSessionLoggerAttributes = {
34
+ AssociatedPortalArns: string[];
35
+ CreationDate: string;
36
+ /**
37
+ * @minLength `20`
38
+ * @maxLength `2048`
39
+ * @pattern `^arn:[\w+=\/,.@-]+:[a-zA-Z0-9\-]+:[a-zA-Z0-9\-]*:[a-zA-Z0-9]{1,12}:[a-zA-Z]+(\/[a-fA-F0-9\-]{36})+$`
40
+ */
41
+ SessionLoggerArn: string;
42
+ };
43
+ /**
44
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.EncryptionContextMap`.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-encryptioncontextmap.html}
46
+ */
47
+ export type EncryptionContextMap = Record<string, string>;
48
+ /**
49
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.Event`.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-event.html}
51
+ */
52
+ export type Event = "WebsiteInteract" | "FileDownloadFromSecureBrowserToRemoteDisk" | "FileTransferFromRemoteToLocalDisk" | "FileTransferFromLocalToRemoteDisk" | "FileUploadFromRemoteDiskToSecureBrowser" | "ContentPasteToWebsite" | "ContentTransferFromLocalToRemoteClipboard" | "ContentCopyFromWebsite" | "UrlLoad" | "TabOpen" | "TabClose" | "PrintJobSubmit" | "SessionConnect" | "SessionStart" | "SessionDisconnect" | "SessionEnd" | "UrlBlockByContentFilter";
53
+ /**
54
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.EventFilter`.
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-eventfilter.html}
56
+ */
57
+ export type EventFilter = {
58
+ All: Unit;
59
+ } | {
60
+ /**
61
+ * @minLength `1`
62
+ * @maxLength `100`
63
+ */
64
+ Include: Event[];
65
+ };
66
+ /**
67
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.FolderStructure`.
68
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-folderstructure.html}
69
+ */
70
+ export type FolderStructure = "Flat" | "NestedByDate";
71
+ /**
72
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.LogConfiguration`.
73
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logconfiguration.html}
74
+ */
75
+ export type LogConfiguration = {
76
+ S3?: S3LogConfiguration;
77
+ };
78
+ /**
79
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.LogFileFormat`.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logfileformat.html}
81
+ */
82
+ export type LogFileFormat = "JSONLines" | "Json";
83
+ /**
84
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.S3LogConfiguration`.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-s3logconfiguration.html}
86
+ */
87
+ export type S3LogConfiguration = {
88
+ /**
89
+ * @minLength `1`
90
+ * @maxLength `256`
91
+ * @pattern `^[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9]$`
92
+ */
93
+ Bucket: string;
94
+ /**
95
+ * @pattern `^[0-9]{12}$`
96
+ */
97
+ BucketOwner?: string;
98
+ FolderStructure: FolderStructure;
99
+ /**
100
+ * @minLength `1`
101
+ * @maxLength `256`
102
+ * @pattern `^[\d\w\-_/!().*']+$`
103
+ */
104
+ KeyPrefix?: string;
105
+ LogFileFormat: LogFileFormat;
106
+ };
107
+ /**
108
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.Tag`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-tag.html}
110
+ */
111
+ export type Tag = {
112
+ /**
113
+ * @minLength `1`
114
+ * @maxLength `128`
115
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
116
+ */
117
+ Key: string;
118
+ /**
119
+ * @minLength `0`
120
+ * @maxLength `256`
121
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
122
+ */
123
+ Value: string;
124
+ };
125
+ /**
126
+ * Type definition for `AWS::WorkSpacesWeb::SessionLogger.Unit`.
127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-unit.html}
128
+ */
129
+ export type Unit = Record<string, any>;
130
+ /**
131
+ * Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html}
133
+ */
134
+ export declare class WorkSpacesWebSessionLogger extends $Resource<"AWS::WorkSpacesWeb::SessionLogger", WorkSpacesWebSessionLoggerProperties, WorkSpacesWebSessionLoggerAttributes> {
135
+ static readonly Type = "AWS::WorkSpacesWeb::SessionLogger";
136
+ constructor(logicalId: string, properties: WorkSpacesWebSessionLoggerProperties, options?: $ResourceOptions);
137
+ }
138
+ //# sourceMappingURL=AWS-WorkSpacesWeb-SessionLogger.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::WorkSpacesWeb::SessionLogger Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-sessionlogger.html}
5
+ */
6
+ export class WorkSpacesWebSessionLogger extends $Resource {
7
+ static Type = "AWS::WorkSpacesWeb::SessionLogger";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, WorkSpacesWebSessionLogger.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-WorkSpacesWeb-SessionLogger.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.392",
3
+ "version": "0.1.393",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },