@awboost/cfntypes 1.0.0-beta.31 → 1.0.0-beta.32
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.
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.AttributeNames = exports.ResourceType = exports.ResourceSpecificationVersion = void 0;
|
4
|
-
exports.ResourceSpecificationVersion = "130.
|
4
|
+
exports.ResourceSpecificationVersion = "130.1.0";
|
5
5
|
exports.ResourceType = {
|
6
6
|
ACMPCACertificate: "AWS::ACMPCA::Certificate",
|
7
7
|
ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority",
|
package/lib/types.generated.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare const ResourceSpecificationVersion = "130.
|
1
|
+
export declare const ResourceSpecificationVersion = "130.1.0";
|
2
2
|
/**
|
3
3
|
* Type definition for AWS::ACMPCA::Certificate.ApiPassthrough
|
4
4
|
*
|
@@ -1783,6 +1783,7 @@ export interface AppFlowConnectorProfileSAPODataConnectorProfileProperties {
|
|
1783
1783
|
ApplicationServicePath?: string;
|
1784
1784
|
ApplicationHostUrl?: string;
|
1785
1785
|
OAuthProperties?: AppFlowConnectorProfileOAuthProperties;
|
1786
|
+
DisableSSO?: boolean;
|
1786
1787
|
LogonLanguage?: string;
|
1787
1788
|
PrivateLinkServiceName?: string;
|
1788
1789
|
PortNumber?: number;
|
@@ -6619,6 +6620,7 @@ export interface CleanRoomsConfiguredTableAnalysisRule {
|
|
6619
6620
|
* @group AWS::CleanRooms
|
6620
6621
|
*/
|
6621
6622
|
export interface CleanRoomsConfiguredTableAnalysisRuleAggregation {
|
6623
|
+
AllowedJoinOperators?: any[];
|
6622
6624
|
ScalarFunctions: any[];
|
6623
6625
|
OutputConstraints: any[];
|
6624
6626
|
DimensionColumns: any[];
|
@@ -6633,6 +6635,7 @@ export interface CleanRoomsConfiguredTableAnalysisRuleAggregation {
|
|
6633
6635
|
* @group AWS::CleanRooms
|
6634
6636
|
*/
|
6635
6637
|
export interface CleanRoomsConfiguredTableAnalysisRuleList {
|
6638
|
+
AllowedJoinOperators?: any[];
|
6636
6639
|
ListColumns: any[];
|
6637
6640
|
JoinColumns: any[];
|
6638
6641
|
}
|
@@ -20179,6 +20182,18 @@ export interface HealthLakeFHIRDatastoreCreatedAt {
|
|
20179
20182
|
Nanos: number;
|
20180
20183
|
Seconds: string;
|
20181
20184
|
}
|
20185
|
+
/**
|
20186
|
+
* Type definition for AWS::HealthLake::FHIRDatastore.IdentityProviderConfiguration
|
20187
|
+
*
|
20188
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-healthlake-fhirdatastore-identityproviderconfiguration.html | AWS::HealthLake::FHIRDatastore.IdentityProviderConfiguration}
|
20189
|
+
* @group AWS::HealthLake
|
20190
|
+
*/
|
20191
|
+
export interface HealthLakeFHIRDatastoreIdentityProviderConfiguration {
|
20192
|
+
AuthorizationStrategy: string;
|
20193
|
+
IdpLambdaArn?: string;
|
20194
|
+
FineGrainedAuthorizationEnabled?: boolean;
|
20195
|
+
Metadata?: string;
|
20196
|
+
}
|
20182
20197
|
/**
|
20183
20198
|
* Type definition for AWS::HealthLake::FHIRDatastore.KmsEncryptionConfig
|
20184
20199
|
*
|
@@ -53341,6 +53356,16 @@ export interface S3OutpostsBucketRule {
|
|
53341
53356
|
Id?: string;
|
53342
53357
|
AbortIncompleteMultipartUpload?: S3OutpostsBucketAbortIncompleteMultipartUpload;
|
53343
53358
|
}
|
53359
|
+
/**
|
53360
|
+
* Type definition for AWS::S3Outposts::Endpoint.FailedReason
|
53361
|
+
*
|
53362
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3outposts-endpoint-failedreason.html | AWS::S3Outposts::Endpoint.FailedReason}
|
53363
|
+
* @group AWS::S3Outposts
|
53364
|
+
*/
|
53365
|
+
export interface S3OutpostsEndpointFailedReason {
|
53366
|
+
Message?: string;
|
53367
|
+
ErrorCode?: string;
|
53368
|
+
}
|
53344
53369
|
/**
|
53345
53370
|
* Type definition for AWS::S3Outposts::Endpoint.NetworkInterface
|
53346
53371
|
*
|
@@ -59950,8 +59975,8 @@ export interface AlexaASKSkillSkillPackage {
|
|
59950
59975
|
* @group Tag
|
59951
59976
|
*/
|
59952
59977
|
export interface Tag {
|
59953
|
-
Value: string;
|
59954
59978
|
Key: string;
|
59979
|
+
Value: string;
|
59955
59980
|
}
|
59956
59981
|
/**
|
59957
59982
|
* Type definition for AWS::ACMPCA::Certificate
|
@@ -71464,6 +71489,7 @@ export interface GuardDutyThreatIntelSetProps {
|
|
71464
71489
|
export interface HealthLakeFHIRDatastoreProps {
|
71465
71490
|
DatastoreTypeVersion: string;
|
71466
71491
|
DatastoreName?: string;
|
71492
|
+
IdentityProviderConfiguration?: HealthLakeFHIRDatastoreIdentityProviderConfiguration;
|
71467
71493
|
Tags?: any[];
|
71468
71494
|
PreloadDataConfig?: HealthLakeFHIRDatastorePreloadDataConfig;
|
71469
71495
|
SseConfiguration?: HealthLakeFHIRDatastoreSseConfiguration;
|
@@ -80761,6 +80787,7 @@ export interface S3OutpostsBucketPolicyProps {
|
|
80761
80787
|
export interface S3OutpostsEndpointProps {
|
80762
80788
|
OutpostId: string;
|
80763
80789
|
SecurityGroupId: string;
|
80790
|
+
FailedReason?: S3OutpostsEndpointFailedReason;
|
80764
80791
|
SubnetId: string;
|
80765
80792
|
AccessType?: string;
|
80766
80793
|
CustomerOwnedIpv4Pool?: string;
|
package/lib/types.generated.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@awboost/cfntypes",
|
3
|
-
"version": "1.0.0-beta.
|
3
|
+
"version": "1.0.0-beta.32",
|
4
4
|
"private": false,
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"ts-node": "^10.9.1",
|
60
60
|
"typescript": "^4.9.5"
|
61
61
|
},
|
62
|
-
"awsResourceSpecificationVersion": "130.
|
62
|
+
"awsResourceSpecificationVersion": "130.1.0"
|
63
63
|
}
|