@awboost/cfn-resource-types 0.1.381 → 0.1.382
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-Bedrock-DataSource.d.ts +2 -2
- package/lib/AWS-GameLift-ContainerFleet.d.ts +1 -1
- package/lib/AWS-GameLift-Fleet.d.ts +1 -1
- package/lib/AWS-QuickSight-DataSource.d.ts +7 -2
- package/lib/AWS-RDS-DBInstance.d.ts +28 -0
- package/lib/AWS-SSM-PatchBaseline.d.ts +4 -0
- package/lib/AWS-Wisdom-MessageTemplate.d.ts +30 -0
- package/package.json +1 -1
|
@@ -108,7 +108,7 @@ export type BedrockFoundationModelConfiguration = {
|
|
|
108
108
|
* The model's ARN.
|
|
109
109
|
* @minLength `1`
|
|
110
110
|
* @maxLength `2048`
|
|
111
|
-
* @pattern `^arn:aws(-[
|
|
111
|
+
* @pattern `^(arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:(bedrock):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-zA-Z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$`
|
|
112
112
|
*/
|
|
113
113
|
ModelArn: string;
|
|
114
114
|
/**
|
|
@@ -134,7 +134,7 @@ export type BedrockFoundationModelContextEnrichmentConfiguration = {
|
|
|
134
134
|
* The model's ARN.
|
|
135
135
|
* @minLength `1`
|
|
136
136
|
* @maxLength `2048`
|
|
137
|
-
* @pattern `^arn:aws(-[
|
|
137
|
+
* @pattern `^(arn:aws(-cn|-us-gov|-eusc|-iso(-[b-f])?)?:(bedrock):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-zA-Z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$`
|
|
138
138
|
*/
|
|
139
139
|
ModelArn: string;
|
|
140
140
|
};
|
|
@@ -257,7 +257,7 @@ export type IpPermission = {
|
|
|
257
257
|
*/
|
|
258
258
|
export type LocationCapacity = {
|
|
259
259
|
/**
|
|
260
|
-
* The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits.
|
|
260
|
+
* The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits. If any auto-scaling policy is defined for the container fleet, the desired instance will only be applied once during fleet creation and will be ignored in updates to avoid conflicts with auto-scaling. During updates with any auto-scaling policy defined, if current desired instance is lower than the new MinSize, it will be increased to the new MinSize; if current desired instance is larger than the new MaxSize, it will be decreased to the new MaxSize.
|
|
261
261
|
* @min `0`
|
|
262
262
|
*/
|
|
263
263
|
DesiredEC2Instances: number;
|
|
@@ -10,7 +10,7 @@ export type GameLiftFleetProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
AnywhereConfiguration?: AnywhereConfiguration;
|
|
12
12
|
/**
|
|
13
|
-
* Determines when and how to apply fleet or location capacities. If you choose ON_CREATE_AND_UPDATE_WITH_AUTOSCALING, MinSize and MaxSize will still be applied on creation and on updates, but DesiredEC2Instances will only be applied once on fleet creation and will be ignored during updates to prevent conflicts with auto-scaling.
|
|
13
|
+
* Determines when and how to apply fleet or location capacities. Allowed options are ON_UPDATE (default), ON_CREATE_AND_UPDATE and ON_CREATE_AND_UPDATE_WITH_AUTOSCALING. If you choose ON_CREATE_AND_UPDATE_WITH_AUTOSCALING, MinSize and MaxSize will still be applied on creation and on updates, but DesiredEC2Instances will only be applied once on fleet creation and will be ignored during updates to prevent conflicts with auto-scaling. During updates with ON_CREATE_AND_UPDATE_WITH_AUTOSCALING chosen, if current desired instance is lower than the new MinSize, it will be increased to the new MinSize; if current desired instance is larger than the new MaxSize, it will be decreased to the new MaxSize.
|
|
14
14
|
*/
|
|
15
15
|
ApplyCapacity?: "ON_UPDATE" | "ON_CREATE_AND_UPDATE" | "ON_CREATE_AND_UPDATE_WITH_AUTOSCALING";
|
|
16
16
|
/**
|
|
@@ -123,6 +123,10 @@ export type AmazonOpenSearchParameters = {
|
|
|
123
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-athenaparameters.html}
|
|
124
124
|
*/
|
|
125
125
|
export type AthenaParameters = {
|
|
126
|
+
/**
|
|
127
|
+
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
128
|
+
*/
|
|
129
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
126
130
|
/**
|
|
127
131
|
* <p>Use the <code>RoleArn</code> structure to override an account-wide role for a specific Athena data source. For example, say an account administrator has turned off all Athena access with an account-wide role. The administrator can then use <code>RoleArn</code> to bypass the account-wide role and allow Athena access for the single Athena data source that is specified in the structure, even if the account-wide role forbidding Athena access is still active.</p>
|
|
128
132
|
* @minLength `20`
|
|
@@ -387,7 +391,7 @@ export type DataSourceParameters = {
|
|
|
387
391
|
* Type definition for `AWS::QuickSight::DataSource.DataSourceType`.
|
|
388
392
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-datasourcetype.html}
|
|
389
393
|
*/
|
|
390
|
-
export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "S3_TABLES" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE";
|
|
394
|
+
export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "QBUSINESS" | "REDSHIFT" | "S3" | "S3_TABLES" | "S3_KNOWLEDGE_BASE" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SPICE" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER";
|
|
391
395
|
/**
|
|
392
396
|
* Type definition for `AWS::QuickSight::DataSource.IdentityCenterConfiguration`.
|
|
393
397
|
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
@@ -517,6 +521,7 @@ export type OracleParameters = {
|
|
|
517
521
|
* @max `65535`
|
|
518
522
|
*/
|
|
519
523
|
Port: number;
|
|
524
|
+
UseServiceName?: boolean;
|
|
520
525
|
};
|
|
521
526
|
/**
|
|
522
527
|
* Type definition for `AWS::QuickSight::DataSource.PostgreSqlParameters`.
|
|
@@ -699,7 +704,7 @@ export type ResourcePermission = {
|
|
|
699
704
|
* Type definition for `AWS::QuickSight::DataSource.ResourceStatus`.
|
|
700
705
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-resourcestatus.html}
|
|
701
706
|
*/
|
|
702
|
-
export type ResourceStatus = "CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "DELETED";
|
|
707
|
+
export type ResourceStatus = "CREATION_IN_PROGRESS" | "CREATION_SUCCESSFUL" | "CREATION_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_SUCCESSFUL" | "UPDATE_FAILED" | "PENDING_UPDATE" | "DELETED";
|
|
703
708
|
/**
|
|
704
709
|
* Type definition for `AWS::QuickSight::DataSource.S3Parameters`.
|
|
705
710
|
* <p>The parameters for S3.</p>
|
|
@@ -820,6 +820,7 @@ export type RDSDBInstanceAttributes = {
|
|
|
820
820
|
ValidTill: string;
|
|
821
821
|
};
|
|
822
822
|
DBInstanceArn: string;
|
|
823
|
+
DBInstanceStatus: string;
|
|
823
824
|
DbiResourceId: string;
|
|
824
825
|
/**
|
|
825
826
|
* This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:
|
|
@@ -843,6 +844,31 @@ export type RDSDBInstanceAttributes = {
|
|
|
843
844
|
*/
|
|
844
845
|
Port: string;
|
|
845
846
|
};
|
|
847
|
+
InstanceCreateTime: string;
|
|
848
|
+
IsStorageConfigUpgradeAvailable: boolean;
|
|
849
|
+
LatestRestorableTime: string;
|
|
850
|
+
/**
|
|
851
|
+
* This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:
|
|
852
|
+
+ ``CreateDBInstance``
|
|
853
|
+
+ ``DescribeDBInstances``
|
|
854
|
+
+ ``DeleteDBInstance``
|
|
855
|
+
|
|
856
|
+
For the data structure that represents Amazon Aurora DB cluster endpoints, see ``DBClusterEndpoint``.
|
|
857
|
+
*/
|
|
858
|
+
ListenerEndpoint: {
|
|
859
|
+
/**
|
|
860
|
+
* Specifies the DNS address of the DB instance.
|
|
861
|
+
*/
|
|
862
|
+
Address: string;
|
|
863
|
+
/**
|
|
864
|
+
* Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
|
|
865
|
+
*/
|
|
866
|
+
HostedZoneId: string;
|
|
867
|
+
/**
|
|
868
|
+
* Specifies the port that the database engine is listening on.
|
|
869
|
+
*/
|
|
870
|
+
Port: string;
|
|
871
|
+
};
|
|
846
872
|
/**
|
|
847
873
|
* The secret managed by RDS in AWS Secrets Manager for the master user password.
|
|
848
874
|
For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide.*
|
|
@@ -853,6 +879,8 @@ export type RDSDBInstanceAttributes = {
|
|
|
853
879
|
*/
|
|
854
880
|
SecretArn: string;
|
|
855
881
|
};
|
|
882
|
+
ReadReplicaDBClusterIdentifiers: string[];
|
|
883
|
+
ReadReplicaDBInstanceIdentifiers: string[];
|
|
856
884
|
};
|
|
857
885
|
/**
|
|
858
886
|
* Type definition for `AWS::RDS::DBInstance.DBInstanceRole`.
|
|
@@ -23,6 +23,10 @@ export type SSMPatchBaselineProperties = {
|
|
|
23
23
|
* Indicates whether the list of approved patches includes non-security updates that should be applied to the instances. The default value is 'false'. Applies to Linux instances only.
|
|
24
24
|
*/
|
|
25
25
|
ApprovedPatchesEnableNonSecurity?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* The compliance status for vendor recommended security updates that are not approved by this patch baseline.
|
|
28
|
+
*/
|
|
29
|
+
AvailableSecurityUpdatesComplianceStatus?: "NON_COMPLIANT" | "COMPLIANT";
|
|
26
30
|
/**
|
|
27
31
|
* Set the baseline as default baseline. Only registering to default patch baseline is allowed.
|
|
28
32
|
*/
|
|
@@ -39,6 +39,10 @@ export type WisdomMessageTemplateProperties = {
|
|
|
39
39
|
* @maxLength `5`
|
|
40
40
|
*/
|
|
41
41
|
Language?: string;
|
|
42
|
+
/**
|
|
43
|
+
* List of message template attachments
|
|
44
|
+
*/
|
|
45
|
+
MessageTemplateAttachments?: MessageTemplateAttachment[];
|
|
42
46
|
/**
|
|
43
47
|
* The name of the message template.
|
|
44
48
|
* @minLength `1`
|
|
@@ -61,6 +65,15 @@ export type WisdomMessageTemplateAttributes = {
|
|
|
61
65
|
* @pattern `^arn:[a-z-]*?:wisdom:[a-z0-9-]*?:[0-9]{12}:[a-z-]*?/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(?:/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})?$`
|
|
62
66
|
*/
|
|
63
67
|
MessageTemplateArn: string;
|
|
68
|
+
/**
|
|
69
|
+
* List of message template attachments
|
|
70
|
+
*/
|
|
71
|
+
MessageTemplateAttachments: {
|
|
72
|
+
/**
|
|
73
|
+
* @minLength `1`
|
|
74
|
+
*/
|
|
75
|
+
AttachmentId: string;
|
|
76
|
+
}[];
|
|
64
77
|
/**
|
|
65
78
|
* The content SHA256 of the message template.
|
|
66
79
|
* @minLength `1`
|
|
@@ -547,6 +560,23 @@ export type GroupingConfiguration = {
|
|
|
547
560
|
*/
|
|
548
561
|
Values: string[];
|
|
549
562
|
};
|
|
563
|
+
/**
|
|
564
|
+
* Type definition for `AWS::Wisdom::MessageTemplate.MessageTemplateAttachment`.
|
|
565
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplateattachment.html}
|
|
566
|
+
*/
|
|
567
|
+
export type MessageTemplateAttachment = {
|
|
568
|
+
/**
|
|
569
|
+
* The name of the attachment file being uploaded. The name should include the file extension.
|
|
570
|
+
* @minLength `1`
|
|
571
|
+
* @maxLength `255`
|
|
572
|
+
*/
|
|
573
|
+
AttachmentName: string;
|
|
574
|
+
/**
|
|
575
|
+
* The S3 Presigned URL for the attachment file. When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI (https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html).
|
|
576
|
+
* @minLength `1`
|
|
577
|
+
*/
|
|
578
|
+
S3PresignedUrl: string;
|
|
579
|
+
};
|
|
550
580
|
/**
|
|
551
581
|
* Type definition for `AWS::Wisdom::MessageTemplate.MessageTemplateAttributes`.
|
|
552
582
|
* An object that specifies the default values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template. The corresponding value defines the default value for that variable.
|