@intentius/chant-lexicon-aws 0.0.16 → 0.0.18
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/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +277 -15
- package/dist/types/index.d.ts +259 -17
- package/package.json +2 -2
- package/src/codegen/docs.ts +3 -0
- package/src/generated/index.d.ts +259 -17
- package/src/generated/index.ts +22 -4
- package/src/generated/lexicon-aws.json +277 -15
package/src/generated/index.d.ts
CHANGED
|
@@ -3137,6 +3137,37 @@ export declare class BedrockAgentCoreGateway {
|
|
|
3137
3137
|
readonly WorkloadIdentityDetails: BedrockAgentCoreGateway_WorkloadIdentityDetails;
|
|
3138
3138
|
}
|
|
3139
3139
|
|
|
3140
|
+
export declare class BedrockAgentCorePolicy {
|
|
3141
|
+
constructor(props: {
|
|
3142
|
+
Definition: BedrockAgentCorePolicy_PolicyDefinition;
|
|
3143
|
+
/** The customer-assigned immutable name for the policy. Must be unique within the policy engine. */
|
|
3144
|
+
Name: string;
|
|
3145
|
+
/** The identifier of the policy engine which contains this policy. */
|
|
3146
|
+
PolicyEngineId: string;
|
|
3147
|
+
/** The timestamp when the policy was created. */
|
|
3148
|
+
CreatedAt?: string;
|
|
3149
|
+
/** A human-readable description of the policy's purpose and functionality. */
|
|
3150
|
+
Description?: string;
|
|
3151
|
+
/** The Amazon Resource Name (ARN) of the policy. */
|
|
3152
|
+
PolicyArn?: string;
|
|
3153
|
+
/** The unique identifier for the policy. */
|
|
3154
|
+
PolicyId?: string;
|
|
3155
|
+
/** The current status of the policy. */
|
|
3156
|
+
Status?: BedrockAgentCorePolicy_PolicyStatus;
|
|
3157
|
+
/** Additional information about the policy status. */
|
|
3158
|
+
StatusReasons?: string[];
|
|
3159
|
+
/** The timestamp when the policy was last updated. */
|
|
3160
|
+
UpdatedAt?: string;
|
|
3161
|
+
ValidationMode?: BedrockAgentCorePolicy_PolicyValidationMode;
|
|
3162
|
+
}, attributes?: CFResourceAttributes);
|
|
3163
|
+
readonly CreatedAt: string;
|
|
3164
|
+
readonly PolicyArn: string;
|
|
3165
|
+
readonly PolicyId: string;
|
|
3166
|
+
readonly Status: BedrockAgentCorePolicy_PolicyStatus;
|
|
3167
|
+
readonly StatusReasons: string[];
|
|
3168
|
+
readonly UpdatedAt: string;
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3140
3171
|
export declare class BedrockDataSource {
|
|
3141
3172
|
constructor(props: {
|
|
3142
3173
|
DataSourceConfiguration: BedrockDataSource_DataSourceConfiguration;
|
|
@@ -6484,6 +6515,43 @@ export declare class ContactFlowModule {
|
|
|
6484
6515
|
readonly Status: string;
|
|
6485
6516
|
}
|
|
6486
6517
|
|
|
6518
|
+
export declare class ContactFlowModuleAlias {
|
|
6519
|
+
constructor(props: {
|
|
6520
|
+
/** The identifier of the contact flow module (ARN) this alias is tied to. */
|
|
6521
|
+
ContactFlowModuleId: string;
|
|
6522
|
+
/** The version number of the contact flow module this alias points to. */
|
|
6523
|
+
ContactFlowModuleVersion: number;
|
|
6524
|
+
/** The name of the alias. */
|
|
6525
|
+
Name: string;
|
|
6526
|
+
/** The unique identifier of the alias. */
|
|
6527
|
+
AliasId?: string;
|
|
6528
|
+
/** The identifier of the contact flow module alias (ARN). This is constructed from the ContactFlowModuleArn and AliasId. */
|
|
6529
|
+
ContactFlowModuleAliasARN?: string;
|
|
6530
|
+
/** The description of the alias. */
|
|
6531
|
+
Description?: string;
|
|
6532
|
+
}, attributes?: CFResourceAttributes);
|
|
6533
|
+
readonly AliasId: string;
|
|
6534
|
+
readonly ContactFlowModuleAliasARN: string;
|
|
6535
|
+
}
|
|
6536
|
+
|
|
6537
|
+
export declare class ContactFlowModuleVersion {
|
|
6538
|
+
constructor(props: {
|
|
6539
|
+
/** The identifier of the contact flow module (ARN) this version is tied to. */
|
|
6540
|
+
ContactFlowModuleId: string;
|
|
6541
|
+
/** The identifier of the contact flow module version (ARN). */
|
|
6542
|
+
ContactFlowModuleVersionARN?: string;
|
|
6543
|
+
/** The description of the version. */
|
|
6544
|
+
Description?: string;
|
|
6545
|
+
/** Indicates the checksum value of the latest published flow module content */
|
|
6546
|
+
FlowModuleContentSha256?: string;
|
|
6547
|
+
/** The version number of this revision */
|
|
6548
|
+
Version?: number;
|
|
6549
|
+
}, attributes?: CFResourceAttributes);
|
|
6550
|
+
readonly ContactFlowModuleVersionARN: string;
|
|
6551
|
+
readonly FlowModuleContentSha256: string;
|
|
6552
|
+
readonly Version: number;
|
|
6553
|
+
}
|
|
6554
|
+
|
|
6487
6555
|
export declare class ContactFlowVersion {
|
|
6488
6556
|
constructor(props: {
|
|
6489
6557
|
/** The ARN of the contact flow this version is tied to. */
|
|
@@ -19132,6 +19200,8 @@ export declare class LocationFSxONTAP {
|
|
|
19132
19200
|
readonly FsxFilesystemArn: string;
|
|
19133
19201
|
readonly LocationArn: string;
|
|
19134
19202
|
readonly LocationUri: string;
|
|
19203
|
+
readonly Protocol_SMB_CmkSecretConfig_SecretArn: string;
|
|
19204
|
+
readonly Protocol_SMB_ManagedSecretConfig: string;
|
|
19135
19205
|
}
|
|
19136
19206
|
|
|
19137
19207
|
export declare class LocationFSxOpenZFS {
|
|
@@ -19160,6 +19230,8 @@ export declare class LocationFSxWindows {
|
|
|
19160
19230
|
SecurityGroupArns: string[];
|
|
19161
19231
|
/** The user who has the permissions to access files and folders in the FSx for Windows file system. */
|
|
19162
19232
|
User: string;
|
|
19233
|
+
CmkSecretConfig?: LocationFSxWindows_CmkSecretConfig;
|
|
19234
|
+
CustomSecretConfig?: LocationFSxWindows_CustomSecretConfig;
|
|
19163
19235
|
/** The name of the Windows domain that the FSx for Windows server belongs to. */
|
|
19164
19236
|
Domain?: string;
|
|
19165
19237
|
/** The Amazon Resource Name (ARN) for the FSx for Windows file system. */
|
|
@@ -19168,6 +19240,7 @@ export declare class LocationFSxWindows {
|
|
|
19168
19240
|
LocationArn?: string;
|
|
19169
19241
|
/** The URL of the FSx for Windows location that was described. */
|
|
19170
19242
|
LocationUri?: string;
|
|
19243
|
+
ManagedSecretConfig?: LocationFSxWindows_ManagedSecretConfig;
|
|
19171
19244
|
/** The password of the user who has the permissions to access files and folders in the FSx for Windows file system. */
|
|
19172
19245
|
Password?: string;
|
|
19173
19246
|
/** A subdirectory in the location's path. */
|
|
@@ -19175,8 +19248,10 @@ export declare class LocationFSxWindows {
|
|
|
19175
19248
|
/** An array of key-value pairs to apply to this resource. */
|
|
19176
19249
|
Tags?: LocationFSxWindows_Tag[];
|
|
19177
19250
|
}, attributes?: CFResourceAttributes);
|
|
19251
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
19178
19252
|
readonly LocationArn: string;
|
|
19179
19253
|
readonly LocationUri: string;
|
|
19254
|
+
readonly ManagedSecretConfig: LocationFSxWindows_ManagedSecretConfig;
|
|
19180
19255
|
}
|
|
19181
19256
|
|
|
19182
19257
|
export declare class LocationHDFS {
|
|
@@ -19189,6 +19264,8 @@ export declare class LocationHDFS {
|
|
|
19189
19264
|
NameNodes: LocationHDFS_NameNode[];
|
|
19190
19265
|
/** Size of chunks (blocks) in bytes that the data is divided into when stored in the HDFS cluster. */
|
|
19191
19266
|
BlockSize?: number;
|
|
19267
|
+
CmkSecretConfig?: LocationHDFS_CmkSecretConfig;
|
|
19268
|
+
CustomSecretConfig?: LocationHDFS_CustomSecretConfig;
|
|
19192
19269
|
/** The Base64 string representation of the Keytab file. */
|
|
19193
19270
|
KerberosKeytab?: string;
|
|
19194
19271
|
/** The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket. */
|
|
@@ -19201,6 +19278,7 @@ export declare class LocationHDFS {
|
|
|
19201
19278
|
LocationArn?: string;
|
|
19202
19279
|
/** The URL of the HDFS location that was described. */
|
|
19203
19280
|
LocationUri?: string;
|
|
19281
|
+
ManagedSecretConfig?: LocationHDFS_ManagedSecretConfig;
|
|
19204
19282
|
QopConfiguration?: LocationHDFS_QopConfiguration;
|
|
19205
19283
|
/** Number of copies of each block that exists inside the HDFS cluster. */
|
|
19206
19284
|
ReplicationFactor?: number;
|
|
@@ -19211,8 +19289,10 @@ export declare class LocationHDFS {
|
|
|
19211
19289
|
/** An array of key-value pairs to apply to this resource. */
|
|
19212
19290
|
Tags?: LocationHDFS_Tag[];
|
|
19213
19291
|
}, attributes?: CFResourceAttributes);
|
|
19292
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
19214
19293
|
readonly LocationArn: string;
|
|
19215
19294
|
readonly LocationUri: string;
|
|
19295
|
+
readonly ManagedSecretConfig: LocationHDFS_ManagedSecretConfig;
|
|
19216
19296
|
}
|
|
19217
19297
|
|
|
19218
19298
|
export declare class LocationNFS {
|
|
@@ -24216,6 +24296,37 @@ export declare class PolicyAssociation {
|
|
|
24216
24296
|
readonly UpdatedAt: string;
|
|
24217
24297
|
}
|
|
24218
24298
|
|
|
24299
|
+
export declare class PolicyEngine {
|
|
24300
|
+
constructor(props: {
|
|
24301
|
+
/** The customer-assigned immutable name for the policy engine */
|
|
24302
|
+
Name: string;
|
|
24303
|
+
/** The timestamp when the policy engine was created */
|
|
24304
|
+
CreatedAt?: string;
|
|
24305
|
+
/** A human-readable description of the policy engine's purpose and scope */
|
|
24306
|
+
Description?: string;
|
|
24307
|
+
/** The ARN of the KMS key used to encrypt the policy engine data */
|
|
24308
|
+
EncryptionKeyArn?: string;
|
|
24309
|
+
/** The Amazon Resource Name (ARN) of the policy engine */
|
|
24310
|
+
PolicyEngineArn?: string;
|
|
24311
|
+
/** The unique identifier for the policy engine */
|
|
24312
|
+
PolicyEngineId?: string;
|
|
24313
|
+
/** The current status of the policy engine */
|
|
24314
|
+
Status?: PolicyEngine_PolicyEngineStatus;
|
|
24315
|
+
/** Additional information about the policy engine status */
|
|
24316
|
+
StatusReasons?: string[];
|
|
24317
|
+
/** A list of tags to assign to the policy engine. */
|
|
24318
|
+
Tags?: PolicyEngine_Tag[];
|
|
24319
|
+
/** The timestamp when the policy engine was last updated */
|
|
24320
|
+
UpdatedAt?: string;
|
|
24321
|
+
}, attributes?: CFResourceAttributes);
|
|
24322
|
+
readonly CreatedAt: string;
|
|
24323
|
+
readonly PolicyEngineArn: string;
|
|
24324
|
+
readonly PolicyEngineId: string;
|
|
24325
|
+
readonly Status: PolicyEngine_PolicyEngineStatus;
|
|
24326
|
+
readonly StatusReasons: string[];
|
|
24327
|
+
readonly UpdatedAt: string;
|
|
24328
|
+
}
|
|
24329
|
+
|
|
24219
24330
|
export declare class PolicyGrant {
|
|
24220
24331
|
constructor(props: {
|
|
24221
24332
|
DomainIdentifier: string;
|
|
@@ -50461,6 +50572,19 @@ export declare class BedrockAgentCoreGateway_WorkloadIdentityDetails {
|
|
|
50461
50572
|
});
|
|
50462
50573
|
}
|
|
50463
50574
|
|
|
50575
|
+
export declare class BedrockAgentCorePolicy_CedarPolicy {
|
|
50576
|
+
constructor(props: {
|
|
50577
|
+
/** The Cedar policy statement that defines the authorization logic. */
|
|
50578
|
+
Statement: string;
|
|
50579
|
+
});
|
|
50580
|
+
}
|
|
50581
|
+
|
|
50582
|
+
export declare class BedrockAgentCorePolicy_PolicyDefinition {
|
|
50583
|
+
constructor(props: {
|
|
50584
|
+
Cedar: BedrockAgentCorePolicy_CedarPolicy;
|
|
50585
|
+
});
|
|
50586
|
+
}
|
|
50587
|
+
|
|
50464
50588
|
export declare class BedrockAgentIntentConfiguration {
|
|
50465
50589
|
constructor(props: {
|
|
50466
50590
|
BedrockAgentConfiguration?: Record<string, unknown>;
|
|
@@ -55460,6 +55584,13 @@ export declare class CdnConfiguration {
|
|
|
55460
55584
|
});
|
|
55461
55585
|
}
|
|
55462
55586
|
|
|
55587
|
+
export declare class CedarPolicy {
|
|
55588
|
+
constructor(props: {
|
|
55589
|
+
/** The Cedar policy statement that defines the authorization logic. */
|
|
55590
|
+
Statement: string;
|
|
55591
|
+
});
|
|
55592
|
+
}
|
|
55593
|
+
|
|
55463
55594
|
export declare class Cell_Tag {
|
|
55464
55595
|
constructor(props: {
|
|
55465
55596
|
Key: string;
|
|
@@ -71025,6 +71156,7 @@ export declare class DestinationFlowConfig {
|
|
|
71025
71156
|
export declare class DestinationLogsConfiguration {
|
|
71026
71157
|
constructor(props: {
|
|
71027
71158
|
BackupConfiguration?: OrganizationCentralizationRule_LogsBackupConfiguration;
|
|
71159
|
+
LogGroupNameConfiguration?: OrganizationCentralizationRule_LogGroupNameConfiguration;
|
|
71028
71160
|
LogsEncryptionConfiguration?: OrganizationCentralizationRule_LogsEncryptionConfiguration;
|
|
71029
71161
|
});
|
|
71030
71162
|
}
|
|
@@ -98429,6 +98561,31 @@ export declare class LocationFSxLustre_Tag {
|
|
|
98429
98561
|
});
|
|
98430
98562
|
}
|
|
98431
98563
|
|
|
98564
|
+
export declare class LocationFSxONTAP_CmkSecretConfig {
|
|
98565
|
+
constructor(props: {
|
|
98566
|
+
/** Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager. */
|
|
98567
|
+
KmsKeyArn?: string;
|
|
98568
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98569
|
+
SecretArn?: string;
|
|
98570
|
+
});
|
|
98571
|
+
}
|
|
98572
|
+
|
|
98573
|
+
export declare class LocationFSxONTAP_CustomSecretConfig {
|
|
98574
|
+
constructor(props: {
|
|
98575
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98576
|
+
SecretAccessRoleArn: string;
|
|
98577
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98578
|
+
SecretArn: string;
|
|
98579
|
+
});
|
|
98580
|
+
}
|
|
98581
|
+
|
|
98582
|
+
export declare class LocationFSxONTAP_ManagedSecretConfig {
|
|
98583
|
+
constructor(props: {
|
|
98584
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98585
|
+
SecretArn: string;
|
|
98586
|
+
});
|
|
98587
|
+
}
|
|
98588
|
+
|
|
98432
98589
|
export declare class LocationFSxONTAP_NFS {
|
|
98433
98590
|
constructor(props: {
|
|
98434
98591
|
MountOptions: LocationFSxONTAP_NfsMountOptions;
|
|
@@ -98452,12 +98609,15 @@ export declare class LocationFSxONTAP_Protocol {
|
|
|
98452
98609
|
export declare class LocationFSxONTAP_SMB {
|
|
98453
98610
|
constructor(props: {
|
|
98454
98611
|
MountOptions: LocationFSxONTAP_SmbMountOptions;
|
|
98455
|
-
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
98456
|
-
Password: string;
|
|
98457
98612
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
98458
98613
|
User: string;
|
|
98614
|
+
CmkSecretConfig?: LocationFSxONTAP_CmkSecretConfig;
|
|
98615
|
+
CustomSecretConfig?: LocationFSxONTAP_CustomSecretConfig;
|
|
98459
98616
|
/** The name of the Windows domain that the SMB server belongs to. */
|
|
98460
98617
|
Domain?: string;
|
|
98618
|
+
ManagedSecretConfig?: LocationFSxONTAP_ManagedSecretConfig;
|
|
98619
|
+
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
98620
|
+
Password?: string;
|
|
98461
98621
|
});
|
|
98462
98622
|
}
|
|
98463
98623
|
|
|
@@ -98505,6 +98665,31 @@ export declare class LocationFSxOpenZFS_Tag {
|
|
|
98505
98665
|
});
|
|
98506
98666
|
}
|
|
98507
98667
|
|
|
98668
|
+
export declare class LocationFSxWindows_CmkSecretConfig {
|
|
98669
|
+
constructor(props: {
|
|
98670
|
+
/** Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager. */
|
|
98671
|
+
KmsKeyArn?: string;
|
|
98672
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98673
|
+
SecretArn?: string;
|
|
98674
|
+
});
|
|
98675
|
+
}
|
|
98676
|
+
|
|
98677
|
+
export declare class LocationFSxWindows_CustomSecretConfig {
|
|
98678
|
+
constructor(props: {
|
|
98679
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98680
|
+
SecretAccessRoleArn: string;
|
|
98681
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98682
|
+
SecretArn: string;
|
|
98683
|
+
});
|
|
98684
|
+
}
|
|
98685
|
+
|
|
98686
|
+
export declare class LocationFSxWindows_ManagedSecretConfig {
|
|
98687
|
+
constructor(props: {
|
|
98688
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98689
|
+
SecretArn: string;
|
|
98690
|
+
});
|
|
98691
|
+
}
|
|
98692
|
+
|
|
98508
98693
|
export declare class LocationFSxWindows_Tag {
|
|
98509
98694
|
constructor(props: {
|
|
98510
98695
|
/** The key for an AWS resource tag. */
|
|
@@ -98514,6 +98699,31 @@ export declare class LocationFSxWindows_Tag {
|
|
|
98514
98699
|
});
|
|
98515
98700
|
}
|
|
98516
98701
|
|
|
98702
|
+
export declare class LocationHDFS_CmkSecretConfig {
|
|
98703
|
+
constructor(props: {
|
|
98704
|
+
/** Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager. */
|
|
98705
|
+
KmsKeyArn?: string;
|
|
98706
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98707
|
+
SecretArn?: string;
|
|
98708
|
+
});
|
|
98709
|
+
}
|
|
98710
|
+
|
|
98711
|
+
export declare class LocationHDFS_CustomSecretConfig {
|
|
98712
|
+
constructor(props: {
|
|
98713
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98714
|
+
SecretAccessRoleArn: string;
|
|
98715
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98716
|
+
SecretArn: string;
|
|
98717
|
+
});
|
|
98718
|
+
}
|
|
98719
|
+
|
|
98720
|
+
export declare class LocationHDFS_ManagedSecretConfig {
|
|
98721
|
+
constructor(props: {
|
|
98722
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98723
|
+
SecretArn: string;
|
|
98724
|
+
});
|
|
98725
|
+
}
|
|
98726
|
+
|
|
98517
98727
|
export declare class LocationHDFS_NameNode {
|
|
98518
98728
|
constructor(props: {
|
|
98519
98729
|
/** The DNS name or IP address of the Name Node in the customer's on premises HDFS cluster. */
|
|
@@ -98834,6 +99044,12 @@ export declare class LogGroup_Tag {
|
|
|
98834
99044
|
});
|
|
98835
99045
|
}
|
|
98836
99046
|
|
|
99047
|
+
export declare class LogGroupNameConfiguration {
|
|
99048
|
+
constructor(props: {
|
|
99049
|
+
LogGroupNamePattern: string;
|
|
99050
|
+
});
|
|
99051
|
+
}
|
|
99052
|
+
|
|
98837
99053
|
export declare class LogicallyAirGappedBackupVault_NotificationObjectType {
|
|
98838
99054
|
constructor(props: {
|
|
98839
99055
|
BackupVaultEvents: string[];
|
|
@@ -111158,10 +111374,17 @@ export declare class OrganizationCentralizationRule_CentralizationRuleSource {
|
|
|
111158
111374
|
export declare class OrganizationCentralizationRule_DestinationLogsConfiguration {
|
|
111159
111375
|
constructor(props: {
|
|
111160
111376
|
BackupConfiguration?: OrganizationCentralizationRule_LogsBackupConfiguration;
|
|
111377
|
+
LogGroupNameConfiguration?: OrganizationCentralizationRule_LogGroupNameConfiguration;
|
|
111161
111378
|
LogsEncryptionConfiguration?: OrganizationCentralizationRule_LogsEncryptionConfiguration;
|
|
111162
111379
|
});
|
|
111163
111380
|
}
|
|
111164
111381
|
|
|
111382
|
+
export declare class OrganizationCentralizationRule_LogGroupNameConfiguration {
|
|
111383
|
+
constructor(props: {
|
|
111384
|
+
LogGroupNamePattern: string;
|
|
111385
|
+
});
|
|
111386
|
+
}
|
|
111387
|
+
|
|
111165
111388
|
export declare class OrganizationCentralizationRule_LogsBackupConfiguration {
|
|
111166
111389
|
constructor(props: {
|
|
111167
111390
|
Region: string;
|
|
@@ -115285,19 +115508,6 @@ export declare class Point {
|
|
|
115285
115508
|
});
|
|
115286
115509
|
}
|
|
115287
115510
|
|
|
115288
|
-
export declare class PolicyDefinition {
|
|
115289
|
-
constructor(props: {
|
|
115290
|
-
/** The rules definition block of an AutomatedReasoningPolicyDefinition. */
|
|
115291
|
-
Rules?: any;
|
|
115292
|
-
/** The types definition block of an AutomatedReasoningPolicyDefinition. */
|
|
115293
|
-
Types?: any;
|
|
115294
|
-
/** The variables definition block of an AutomatedReasoningPolicyDefinition. */
|
|
115295
|
-
Variables?: any;
|
|
115296
|
-
/** The policy format version. */
|
|
115297
|
-
Version?: string;
|
|
115298
|
-
});
|
|
115299
|
-
}
|
|
115300
|
-
|
|
115301
115511
|
export declare class PolicyDefinitionRule {
|
|
115302
115512
|
constructor(props: {
|
|
115303
115513
|
/** The SMT expression for this rule */
|
|
@@ -115369,6 +115579,13 @@ export declare class PolicyDetails {
|
|
|
115369
115579
|
});
|
|
115370
115580
|
}
|
|
115371
115581
|
|
|
115582
|
+
export declare class PolicyEngine_Tag {
|
|
115583
|
+
constructor(props: {
|
|
115584
|
+
Key: string;
|
|
115585
|
+
Value: string;
|
|
115586
|
+
});
|
|
115587
|
+
}
|
|
115588
|
+
|
|
115372
115589
|
export declare class PolicyGrant_AddToProjectMemberPoolPolicyGrantDetail {
|
|
115373
115590
|
constructor(props: {
|
|
115374
115591
|
IncludeChildDomainUnits?: boolean;
|
|
@@ -139966,12 +140183,15 @@ export declare class SlurmRest {
|
|
|
139966
140183
|
export declare class SMB {
|
|
139967
140184
|
constructor(props: {
|
|
139968
140185
|
MountOptions: LocationFSxONTAP_SmbMountOptions;
|
|
139969
|
-
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
139970
|
-
Password: string;
|
|
139971
140186
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
139972
140187
|
User: string;
|
|
140188
|
+
CmkSecretConfig?: LocationFSxONTAP_CmkSecretConfig;
|
|
140189
|
+
CustomSecretConfig?: LocationFSxONTAP_CustomSecretConfig;
|
|
139973
140190
|
/** The name of the Windows domain that the SMB server belongs to. */
|
|
139974
140191
|
Domain?: string;
|
|
140192
|
+
ManagedSecretConfig?: LocationFSxONTAP_ManagedSecretConfig;
|
|
140193
|
+
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
140194
|
+
Password?: string;
|
|
139975
140195
|
});
|
|
139976
140196
|
}
|
|
139977
140197
|
|
|
@@ -156816,6 +157036,19 @@ export type BedrockAgentCoreGateway_InboundTokenClaimValueType = "STRING" | "STR
|
|
|
156816
157036
|
|
|
156817
157037
|
export type BedrockAgentCoreGateway_SearchType = "SEMANTIC";
|
|
156818
157038
|
|
|
157039
|
+
export type BedrockAgentCorePolicy_PolicyStatus =
|
|
157040
|
+
| "ACTIVE"
|
|
157041
|
+
| "CREATE_FAILED"
|
|
157042
|
+
| "CREATING"
|
|
157043
|
+
| "DELETE_FAILED"
|
|
157044
|
+
| "DELETING"
|
|
157045
|
+
| "UPDATE_FAILED"
|
|
157046
|
+
| "UPDATING";
|
|
157047
|
+
|
|
157048
|
+
export type BedrockAgentCorePolicy_PolicyValidationMode =
|
|
157049
|
+
| "FAIL_ON_ANY_FINDINGS"
|
|
157050
|
+
| "IGNORE_ALL_FINDINGS";
|
|
157051
|
+
|
|
156819
157052
|
export type BedrockDataSource_ChunkingStrategy =
|
|
156820
157053
|
| "FIXED_SIZE"
|
|
156821
157054
|
| "HIERARCHICAL"
|
|
@@ -159507,6 +159740,15 @@ export type Plugin_PluginType =
|
|
|
159507
159740
|
| "ZENDESK"
|
|
159508
159741
|
| "ZENDESK_SUITE";
|
|
159509
159742
|
|
|
159743
|
+
export type PolicyEngine_PolicyEngineStatus =
|
|
159744
|
+
| "ACTIVE"
|
|
159745
|
+
| "CREATE_FAILED"
|
|
159746
|
+
| "CREATING"
|
|
159747
|
+
| "DELETE_FAILED"
|
|
159748
|
+
| "DELETING"
|
|
159749
|
+
| "UPDATE_FAILED"
|
|
159750
|
+
| "UPDATING";
|
|
159751
|
+
|
|
159510
159752
|
export type PolicyGrant_DomainUnitDesignation = "OWNER";
|
|
159511
159753
|
|
|
159512
159754
|
export type PolicyGrant_ManagedPolicyType =
|
package/src/generated/index.ts
CHANGED
|
@@ -147,6 +147,7 @@ export const BasePathMappingV2 = createResource("AWS::ApiGateway::BasePathMappin
|
|
|
147
147
|
export const BatchScramSecret = createResource("AWS::MSK::BatchScramSecret", "aws", {});
|
|
148
148
|
export const BedrockAgent = createResource("AWS::Bedrock::Agent", "aws", {"AgentArn":"AgentArn","AgentId":"AgentId","AgentStatus":"AgentStatus","AgentVersion":"AgentVersion","CreatedAt":"CreatedAt","FailureReasons":"FailureReasons","PreparedAt":"PreparedAt","RecommendedActions":"RecommendedActions","UpdatedAt":"UpdatedAt"});
|
|
149
149
|
export const BedrockAgentCoreGateway = createResource("AWS::BedrockAgentCore::Gateway", "aws", {"CreatedAt":"CreatedAt","GatewayArn":"GatewayArn","GatewayIdentifier":"GatewayIdentifier","GatewayUrl":"GatewayUrl","Status":"Status","StatusReasons":"StatusReasons","UpdatedAt":"UpdatedAt","WorkloadIdentityDetails":"WorkloadIdentityDetails"});
|
|
150
|
+
export const BedrockAgentCorePolicy = createResource("AWS::BedrockAgentCore::Policy", "aws", {"PolicyId":"PolicyId","PolicyArn":"PolicyArn","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","Status":"Status","StatusReasons":"StatusReasons"});
|
|
150
151
|
export const BedrockDataSource = createResource("AWS::Bedrock::DataSource", "aws", {"DataSourceId":"DataSourceId","DataSourceStatus":"DataSourceStatus","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","FailureReasons":"FailureReasons","DataSourceConfiguration_WebConfiguration_CrawlerConfiguration_UserAgentHeader":"DataSourceConfiguration.WebConfiguration.CrawlerConfiguration.UserAgentHeader"});
|
|
151
152
|
export const BedrockFlow = createResource("AWS::Bedrock::Flow", "aws", {"Arn":"Arn","CreatedAt":"CreatedAt","Id":"Id","Status":"Status","UpdatedAt":"UpdatedAt","Version":"Version","Validations":"Validations"});
|
|
152
153
|
export const BedrockKnowledgeBase = createResource("AWS::Bedrock::KnowledgeBase", "aws", {"KnowledgeBaseId":"KnowledgeBaseId","KnowledgeBaseArn":"KnowledgeBaseArn","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","FailureReasons":"FailureReasons","Status":"Status"});
|
|
@@ -282,6 +283,8 @@ export const Contact = createResource("AWS::SSMContacts::Contact", "aws", {"Arn"
|
|
|
282
283
|
export const ContactChannel = createResource("AWS::SSMContacts::ContactChannel", "aws", {"Arn":"Arn"});
|
|
283
284
|
export const ContactFlow = createResource("AWS::Connect::ContactFlow", "aws", {"ContactFlowArn":"ContactFlowArn"});
|
|
284
285
|
export const ContactFlowModule = createResource("AWS::Connect::ContactFlowModule", "aws", {"ContactFlowModuleArn":"ContactFlowModuleArn","Status":"Status"});
|
|
286
|
+
export const ContactFlowModuleAlias = createResource("AWS::Connect::ContactFlowModuleAlias", "aws", {"ContactFlowModuleAliasARN":"ContactFlowModuleAliasARN","AliasId":"AliasId"});
|
|
287
|
+
export const ContactFlowModuleVersion = createResource("AWS::Connect::ContactFlowModuleVersion", "aws", {"ContactFlowModuleVersionARN":"ContactFlowModuleVersionARN","Version":"Version","FlowModuleContentSha256":"FlowModuleContentSha256"});
|
|
285
288
|
export const ContactFlowVersion = createResource("AWS::Connect::ContactFlowVersion", "aws", {"ContactFlowVersionARN":"ContactFlowVersionARN","Version":"Version","FlowContentSha256":"FlowContentSha256"});
|
|
286
289
|
export const ContactList = createResource("AWS::SES::ContactList", "aws", {});
|
|
287
290
|
export const ContainerFleet = createResource("AWS::GameLift::ContainerFleet", "aws", {"CreationTime":"CreationTime","Status":"Status","FleetId":"FleetId","FleetArn":"FleetArn","DeploymentDetails":"DeploymentDetails","GameServerContainerGroupDefinitionArn":"GameServerContainerGroupDefinitionArn","PerInstanceContainerGroupDefinitionArn":"PerInstanceContainerGroupDefinitionArn","MaximumGameServerContainerGroupsPerInstance":"MaximumGameServerContainerGroupsPerInstance"});
|
|
@@ -769,10 +772,10 @@ export const Location = createResource("AWS::GameLift::Location", "aws", {"Locat
|
|
|
769
772
|
export const LocationAzureBlob = createResource("AWS::DataSync::LocationAzureBlob", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri","ManagedSecretConfig":"ManagedSecretConfig","CmkSecretConfig_SecretArn":"CmkSecretConfig.SecretArn"});
|
|
770
773
|
export const LocationEFS = createResource("AWS::DataSync::LocationEFS", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
771
774
|
export const LocationFSxLustre = createResource("AWS::DataSync::LocationFSxLustre", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
772
|
-
export const LocationFSxONTAP = createResource("AWS::DataSync::LocationFSxONTAP", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri","FsxFilesystemArn":"FsxFilesystemArn"});
|
|
775
|
+
export const LocationFSxONTAP = createResource("AWS::DataSync::LocationFSxONTAP", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri","FsxFilesystemArn":"FsxFilesystemArn","Protocol_SMB_ManagedSecretConfig":"Protocol.SMB.ManagedSecretConfig","Protocol_SMB_CmkSecretConfig_SecretArn":"Protocol.SMB.CmkSecretConfig.SecretArn"});
|
|
773
776
|
export const LocationFSxOpenZFS = createResource("AWS::DataSync::LocationFSxOpenZFS", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
774
|
-
export const LocationFSxWindows = createResource("AWS::DataSync::LocationFSxWindows", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
775
|
-
export const LocationHDFS = createResource("AWS::DataSync::LocationHDFS", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
777
|
+
export const LocationFSxWindows = createResource("AWS::DataSync::LocationFSxWindows", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri","ManagedSecretConfig":"ManagedSecretConfig","CmkSecretConfig_SecretArn":"CmkSecretConfig.SecretArn"});
|
|
778
|
+
export const LocationHDFS = createResource("AWS::DataSync::LocationHDFS", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri","ManagedSecretConfig":"ManagedSecretConfig","CmkSecretConfig_SecretArn":"CmkSecretConfig.SecretArn"});
|
|
776
779
|
export const LocationNFS = createResource("AWS::DataSync::LocationNFS", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
777
780
|
export const LocationObjectStorage = createResource("AWS::DataSync::LocationObjectStorage", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri","ManagedSecretConfig":"ManagedSecretConfig","CmkSecretConfig_SecretArn":"CmkSecretConfig.SecretArn"});
|
|
778
781
|
export const LocationS3 = createResource("AWS::DataSync::LocationS3", "aws", {"LocationArn":"LocationArn","LocationUri":"LocationUri"});
|
|
@@ -995,6 +998,7 @@ export const Plugin = createResource("AWS::QBusiness::Plugin", "aws", {"BuildSta
|
|
|
995
998
|
export const PodIdentityAssociation = createResource("AWS::EKS::PodIdentityAssociation", "aws", {"AssociationArn":"AssociationArn","AssociationId":"AssociationId","ExternalId":"ExternalId"});
|
|
996
999
|
export const Policy = createResource("AWS::IAM::Policy", "aws", {"Id":"Id"});
|
|
997
1000
|
export const PolicyAssociation = createResource("AWS::SecurityHub::PolicyAssociation", "aws", {"AssociationStatus":"AssociationStatus","AssociationType":"AssociationType","AssociationStatusMessage":"AssociationStatusMessage","UpdatedAt":"UpdatedAt","AssociationIdentifier":"AssociationIdentifier"});
|
|
1001
|
+
export const PolicyEngine = createResource("AWS::BedrockAgentCore::PolicyEngine", "aws", {"PolicyEngineId":"PolicyEngineId","CreatedAt":"CreatedAt","UpdatedAt":"UpdatedAt","PolicyEngineArn":"PolicyEngineArn","Status":"Status","StatusReasons":"StatusReasons"});
|
|
998
1002
|
export const PolicyGrant = createResource("AWS::DataZone::PolicyGrant", "aws", {"GrantId":"GrantId","CreatedAt":"CreatedAt","CreatedBy":"CreatedBy"});
|
|
999
1003
|
export const PolicyPrincipalAttachment = createResource("AWS::IoT::PolicyPrincipalAttachment", "aws", {"Id":"Id"});
|
|
1000
1004
|
export const PolicyStatement = createResource("AWS::EntityResolution::PolicyStatement", "aws", {});
|
|
@@ -3147,6 +3151,8 @@ export const BedrockAgentCoreGateway_InterceptorInputConfiguration = createPrope
|
|
|
3147
3151
|
export const BedrockAgentCoreGateway_LambdaInterceptorConfiguration = createProperty("AWS::BedrockAgentCore::Gateway.LambdaInterceptorConfiguration", "aws");
|
|
3148
3152
|
export const BedrockAgentCoreGateway_MCPGatewayConfiguration = createProperty("AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration", "aws");
|
|
3149
3153
|
export const BedrockAgentCoreGateway_WorkloadIdentityDetails = createProperty("AWS::BedrockAgentCore::Gateway.WorkloadIdentityDetails", "aws");
|
|
3154
|
+
export const BedrockAgentCorePolicy_CedarPolicy = createProperty("AWS::BedrockAgentCore::Policy.CedarPolicy", "aws");
|
|
3155
|
+
export const BedrockAgentCorePolicy_PolicyDefinition = createProperty("AWS::BedrockAgentCore::Policy.PolicyDefinition", "aws");
|
|
3150
3156
|
export const BedrockAgentIntentConfiguration = createProperty("AWS::Lex::Bot.BedrockAgentIntentConfiguration", "aws");
|
|
3151
3157
|
export const BedrockDataAutomationConfiguration = createProperty("AWS::Bedrock::DataSource.BedrockDataAutomationConfiguration", "aws");
|
|
3152
3158
|
export const BedrockDataSource_BedrockDataAutomationConfiguration = createProperty("AWS::Bedrock::DataSource.BedrockDataAutomationConfiguration", "aws");
|
|
@@ -3697,6 +3703,7 @@ export const CdcSpecification = createProperty("AWS::Cassandra::Table.CdcSpecifi
|
|
|
3697
3703
|
export const CdiInputSpecification = createProperty("AWS::MediaLive::Channel.CdiInputSpecification", "aws");
|
|
3698
3704
|
export const CdnAuthConfiguration = createProperty("AWS::MediaPackageV2::OriginEndpointPolicy.CdnAuthConfiguration", "aws");
|
|
3699
3705
|
export const CdnConfiguration = createProperty("AWS::MediaTailor::PlaybackConfiguration.CdnConfiguration", "aws");
|
|
3706
|
+
export const CedarPolicy = createProperty("AWS::BedrockAgentCore::Policy.CedarPolicy", "aws");
|
|
3700
3707
|
export const Cell_Tag = createProperty("AWS::Route53RecoveryReadiness::Cell.Tag", "aws");
|
|
3701
3708
|
export const CellValueSynonym = createProperty("AWS::QuickSight::Topic.CellValueSynonym", "aws");
|
|
3702
3709
|
export const CentralizationRule = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRule", "aws");
|
|
@@ -8272,6 +8279,9 @@ export const LocationAzureBlob_Tag = createProperty("AWS::DataSync::LocationAzur
|
|
|
8272
8279
|
export const LocationEFS_Ec2Config = createProperty("AWS::DataSync::LocationEFS.Ec2Config", "aws");
|
|
8273
8280
|
export const LocationEFS_Tag = createProperty("AWS::DataSync::LocationEFS.Tag", "aws");
|
|
8274
8281
|
export const LocationFSxLustre_Tag = createProperty("AWS::DataSync::LocationFSxLustre.Tag", "aws");
|
|
8282
|
+
export const LocationFSxONTAP_CmkSecretConfig = createProperty("AWS::DataSync::LocationFSxONTAP.CmkSecretConfig", "aws");
|
|
8283
|
+
export const LocationFSxONTAP_CustomSecretConfig = createProperty("AWS::DataSync::LocationFSxONTAP.CustomSecretConfig", "aws");
|
|
8284
|
+
export const LocationFSxONTAP_ManagedSecretConfig = createProperty("AWS::DataSync::LocationFSxONTAP.ManagedSecretConfig", "aws");
|
|
8275
8285
|
export const LocationFSxONTAP_NFS = createProperty("AWS::DataSync::LocationFSxONTAP.NFS", "aws");
|
|
8276
8286
|
export const LocationFSxONTAP_NfsMountOptions = createProperty("AWS::DataSync::LocationFSxONTAP.NfsMountOptions", "aws");
|
|
8277
8287
|
export const LocationFSxONTAP_Protocol = createProperty("AWS::DataSync::LocationFSxONTAP.Protocol", "aws");
|
|
@@ -8282,7 +8292,13 @@ export const LocationFSxOpenZFS_MountOptions = createProperty("AWS::DataSync::Lo
|
|
|
8282
8292
|
export const LocationFSxOpenZFS_NFS = createProperty("AWS::DataSync::LocationFSxOpenZFS.NFS", "aws");
|
|
8283
8293
|
export const LocationFSxOpenZFS_Protocol = createProperty("AWS::DataSync::LocationFSxOpenZFS.Protocol", "aws");
|
|
8284
8294
|
export const LocationFSxOpenZFS_Tag = createProperty("AWS::DataSync::LocationFSxOpenZFS.Tag", "aws");
|
|
8295
|
+
export const LocationFSxWindows_CmkSecretConfig = createProperty("AWS::DataSync::LocationFSxWindows.CmkSecretConfig", "aws");
|
|
8296
|
+
export const LocationFSxWindows_CustomSecretConfig = createProperty("AWS::DataSync::LocationFSxWindows.CustomSecretConfig", "aws");
|
|
8297
|
+
export const LocationFSxWindows_ManagedSecretConfig = createProperty("AWS::DataSync::LocationFSxWindows.ManagedSecretConfig", "aws");
|
|
8285
8298
|
export const LocationFSxWindows_Tag = createProperty("AWS::DataSync::LocationFSxWindows.Tag", "aws");
|
|
8299
|
+
export const LocationHDFS_CmkSecretConfig = createProperty("AWS::DataSync::LocationHDFS.CmkSecretConfig", "aws");
|
|
8300
|
+
export const LocationHDFS_CustomSecretConfig = createProperty("AWS::DataSync::LocationHDFS.CustomSecretConfig", "aws");
|
|
8301
|
+
export const LocationHDFS_ManagedSecretConfig = createProperty("AWS::DataSync::LocationHDFS.ManagedSecretConfig", "aws");
|
|
8286
8302
|
export const LocationHDFS_NameNode = createProperty("AWS::DataSync::LocationHDFS.NameNode", "aws");
|
|
8287
8303
|
export const LocationHDFS_QopConfiguration = createProperty("AWS::DataSync::LocationHDFS.QopConfiguration", "aws");
|
|
8288
8304
|
export const LocationHDFS_Tag = createProperty("AWS::DataSync::LocationHDFS.Tag", "aws");
|
|
@@ -8321,6 +8337,7 @@ export const LoggingDestination = createProperty("AWS::APS::Workspace.LoggingDes
|
|
|
8321
8337
|
export const LoggingProperties = createProperty("AWS::Redshift::Cluster.LoggingProperties", "aws");
|
|
8322
8338
|
export const LoggingTypeConfig = createProperty("AWS::EKS::Cluster.LoggingTypeConfig", "aws");
|
|
8323
8339
|
export const LogGroup_Tag = createProperty("AWS::Logs::LogGroup.Tag", "aws");
|
|
8340
|
+
export const LogGroupNameConfiguration = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogGroupNameConfiguration", "aws");
|
|
8324
8341
|
export const LogicallyAirGappedBackupVault_NotificationObjectType = createProperty("AWS::Backup::LogicallyAirGappedBackupVault.NotificationObjectType", "aws");
|
|
8325
8342
|
export const LogicalTable = createProperty("AWS::QuickSight::DataSet.LogicalTable", "aws");
|
|
8326
8343
|
export const LogicalTableSource = createProperty("AWS::QuickSight::DataSet.LogicalTableSource", "aws");
|
|
@@ -9608,6 +9625,7 @@ export const OrganizationCentralizationRule_CentralizationRule = createProperty(
|
|
|
9608
9625
|
export const OrganizationCentralizationRule_CentralizationRuleDestination = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRuleDestination", "aws");
|
|
9609
9626
|
export const OrganizationCentralizationRule_CentralizationRuleSource = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRuleSource", "aws");
|
|
9610
9627
|
export const OrganizationCentralizationRule_DestinationLogsConfiguration = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.DestinationLogsConfiguration", "aws");
|
|
9628
|
+
export const OrganizationCentralizationRule_LogGroupNameConfiguration = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogGroupNameConfiguration", "aws");
|
|
9611
9629
|
export const OrganizationCentralizationRule_LogsBackupConfiguration = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogsBackupConfiguration", "aws");
|
|
9612
9630
|
export const OrganizationCentralizationRule_LogsEncryptionConfiguration = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogsEncryptionConfiguration", "aws");
|
|
9613
9631
|
export const OrganizationCentralizationRule_SourceLogsConfiguration = createProperty("AWS::ObservabilityAdmin::OrganizationCentralizationRule.SourceLogsConfiguration", "aws");
|
|
@@ -10071,13 +10089,13 @@ export const Plugin_S3 = createProperty("AWS::QBusiness::Plugin.S3", "aws");
|
|
|
10071
10089
|
export const Plugin_Tag = createProperty("AWS::QBusiness::Plugin.Tag", "aws");
|
|
10072
10090
|
export const PodIdentityAssociation_Tag = createProperty("AWS::EKS::PodIdentityAssociation.Tag", "aws");
|
|
10073
10091
|
export const Point = createProperty("AWS::Rekognition::StreamProcessor.Point", "aws");
|
|
10074
|
-
export const PolicyDefinition = createProperty("AWS::Bedrock::AutomatedReasoningPolicy.PolicyDefinition", "aws");
|
|
10075
10092
|
export const PolicyDefinitionRule = createProperty("AWS::Bedrock::AutomatedReasoningPolicy.PolicyDefinitionRule", "aws");
|
|
10076
10093
|
export const PolicyDefinitionType = createProperty("AWS::Bedrock::AutomatedReasoningPolicy.PolicyDefinitionType", "aws");
|
|
10077
10094
|
export const PolicyDefinitionTypeValue = createProperty("AWS::Bedrock::AutomatedReasoningPolicy.PolicyDefinitionTypeValue", "aws");
|
|
10078
10095
|
export const PolicyDefinitionVariable = createProperty("AWS::Bedrock::AutomatedReasoningPolicy.PolicyDefinitionVariable", "aws");
|
|
10079
10096
|
export const PolicyDetail = createProperty("AWS::ImageBuilder::LifecyclePolicy.PolicyDetail", "aws");
|
|
10080
10097
|
export const PolicyDetails = createProperty("AWS::DLM::LifecyclePolicy.PolicyDetails", "aws");
|
|
10098
|
+
export const PolicyEngine_Tag = createProperty("AWS::BedrockAgentCore::PolicyEngine.Tag", "aws");
|
|
10081
10099
|
export const PolicyGrant_AddToProjectMemberPoolPolicyGrantDetail = createProperty("AWS::DataZone::PolicyGrant.AddToProjectMemberPoolPolicyGrantDetail", "aws");
|
|
10082
10100
|
export const PolicyGrant_CreateAssetTypePolicyGrantDetail = createProperty("AWS::DataZone::PolicyGrant.CreateAssetTypePolicyGrantDetail", "aws");
|
|
10083
10101
|
export const PolicyGrant_CreateDomainUnitPolicyGrantDetail = createProperty("AWS::DataZone::PolicyGrant.CreateDomainUnitPolicyGrantDetail", "aws");
|