@intentius/chant-lexicon-aws 0.0.16 → 0.0.22
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 +6 -6
- package/dist/manifest.json +1 -1
- package/dist/meta.json +449 -93
- package/dist/rules/ext001.ts +4 -0
- package/dist/skills/chant-aws.md +1 -1
- package/dist/types/index.d.ts +406 -28
- package/package.json +20 -2
- package/src/codegen/docs.ts +3 -0
- package/src/composites/composites.test.ts +4 -2
- package/src/composites/lambda-sqs.ts +2 -2
- package/src/generated/index.d.ts +406 -28
- package/src/generated/index.ts +39 -6
- package/src/generated/lexicon-aws.json +449 -93
- package/src/lint/post-synth/ext001.ts +4 -0
- package/src/plugin.ts +87 -2
- package/src/skills/chant-eks.md +3 -0
package/src/generated/index.d.ts
CHANGED
|
@@ -643,11 +643,6 @@ export declare class AIPromptVersion {
|
|
|
643
643
|
|
|
644
644
|
export declare class Alarm {
|
|
645
645
|
constructor(props: {
|
|
646
|
-
/** The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand. */
|
|
647
|
-
ComparisonOperator: string;
|
|
648
|
-
/** The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and ``DatapointsToAlarm`` is the M.
|
|
649
|
-
For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*. */
|
|
650
|
-
EvaluationPeriods: number;
|
|
651
646
|
/** Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE. */
|
|
652
647
|
ActionsEnabled?: boolean;
|
|
653
648
|
/** The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*. */
|
|
@@ -658,6 +653,8 @@ export declare class Alarm {
|
|
|
658
653
|
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. */
|
|
659
654
|
AlarmName?: string;
|
|
660
655
|
Arn?: string;
|
|
656
|
+
/** The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand. */
|
|
657
|
+
ComparisonOperator?: string;
|
|
661
658
|
/** The number of datapoints that must be breaching to trigger the alarm. This is used only if you are setting an "M out of N" alarm. In that case, this value is the M, and the value that you set for ``EvaluationPeriods`` is the N value. For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
|
|
662
659
|
If you omit this parameter, CW uses the same value here that you set for ``EvaluationPeriods``, and the alarm goes to alarm state if that many consecutive periods are breaching. */
|
|
663
660
|
DatapointsToAlarm?: number;
|
|
@@ -665,6 +662,9 @@ export declare class Alarm {
|
|
|
665
662
|
Dimensions?: Alarm_Dimension[];
|
|
666
663
|
/** Used only for alarms based on percentiles. If ``ignore``, the alarm state does not change during periods with too few data points to be statistically significant. If ``evaluate`` or this parameter is not used, the alarm is always evaluated and possibly changes state no matter how many data points are available. */
|
|
667
664
|
EvaluateLowSampleCountPercentile?: string;
|
|
665
|
+
/** The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and ``DatapointsToAlarm`` is the M.
|
|
666
|
+
For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*. */
|
|
667
|
+
EvaluationPeriods?: number;
|
|
668
668
|
/** The percentile statistic for the metric associated with the alarm. Specify a value between p0.0 and p100.
|
|
669
669
|
For an alarm based on a metric, you must specify either ``Statistic`` or ``ExtendedStatistic`` but not both.
|
|
670
670
|
For an alarm based on a math expression, you can't specify ``ExtendedStatistic``. Instead, you use ``Metrics``. */
|
|
@@ -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;
|
|
@@ -6201,6 +6232,8 @@ export declare class ConnectQueue {
|
|
|
6201
6232
|
InstanceArn: string;
|
|
6202
6233
|
/** The name of the queue. */
|
|
6203
6234
|
Name: string;
|
|
6235
|
+
/** The email addresses that agents can use when replying to or initiating email contacts */
|
|
6236
|
+
AdditionalEmailAddresses?: ConnectQueue_EmailAddress[];
|
|
6204
6237
|
/** The description of the queue. */
|
|
6205
6238
|
Description?: string;
|
|
6206
6239
|
/** The maximum number of contacts that can be in the queue before it is considered full. */
|
|
@@ -6256,6 +6289,8 @@ export declare class ConnectSecurityProfile {
|
|
|
6256
6289
|
AllowedAccessControlHierarchyGroupId?: string;
|
|
6257
6290
|
/** The list of tags that a security profile uses to restrict access to resources in Amazon Connect. */
|
|
6258
6291
|
AllowedAccessControlTags?: ConnectSecurityProfile_Tag[];
|
|
6292
|
+
/** The list of flow-module resources to be linked to a security profile in Amazon Connect. */
|
|
6293
|
+
AllowedFlowModules?: ConnectSecurityProfile_FlowModule[];
|
|
6259
6294
|
/** A list of third-party applications that the security profile will give access to. */
|
|
6260
6295
|
Applications?: ConnectSecurityProfile_Application[];
|
|
6261
6296
|
/** The description of the security profile. */
|
|
@@ -6484,6 +6519,43 @@ export declare class ContactFlowModule {
|
|
|
6484
6519
|
readonly Status: string;
|
|
6485
6520
|
}
|
|
6486
6521
|
|
|
6522
|
+
export declare class ContactFlowModuleAlias {
|
|
6523
|
+
constructor(props: {
|
|
6524
|
+
/** The identifier of the contact flow module (ARN) this alias is tied to. */
|
|
6525
|
+
ContactFlowModuleId: string;
|
|
6526
|
+
/** The version number of the contact flow module this alias points to. */
|
|
6527
|
+
ContactFlowModuleVersion: number;
|
|
6528
|
+
/** The name of the alias. */
|
|
6529
|
+
Name: string;
|
|
6530
|
+
/** The unique identifier of the alias. */
|
|
6531
|
+
AliasId?: string;
|
|
6532
|
+
/** The identifier of the contact flow module alias (ARN). This is constructed from the ContactFlowModuleArn and AliasId. */
|
|
6533
|
+
ContactFlowModuleAliasARN?: string;
|
|
6534
|
+
/** The description of the alias. */
|
|
6535
|
+
Description?: string;
|
|
6536
|
+
}, attributes?: CFResourceAttributes);
|
|
6537
|
+
readonly AliasId: string;
|
|
6538
|
+
readonly ContactFlowModuleAliasARN: string;
|
|
6539
|
+
}
|
|
6540
|
+
|
|
6541
|
+
export declare class ContactFlowModuleVersion {
|
|
6542
|
+
constructor(props: {
|
|
6543
|
+
/** The identifier of the contact flow module (ARN) this version is tied to. */
|
|
6544
|
+
ContactFlowModuleId: string;
|
|
6545
|
+
/** The identifier of the contact flow module version (ARN). */
|
|
6546
|
+
ContactFlowModuleVersionARN?: string;
|
|
6547
|
+
/** The description of the version. */
|
|
6548
|
+
Description?: string;
|
|
6549
|
+
/** Indicates the checksum value of the latest published flow module content */
|
|
6550
|
+
FlowModuleContentSha256?: string;
|
|
6551
|
+
/** The version number of this revision */
|
|
6552
|
+
Version?: number;
|
|
6553
|
+
}, attributes?: CFResourceAttributes);
|
|
6554
|
+
readonly ContactFlowModuleVersionARN: string;
|
|
6555
|
+
readonly FlowModuleContentSha256: string;
|
|
6556
|
+
readonly Version: number;
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6487
6559
|
export declare class ContactFlowVersion {
|
|
6488
6560
|
constructor(props: {
|
|
6489
6561
|
/** The ARN of the contact flow this version is tied to. */
|
|
@@ -6556,6 +6628,8 @@ export declare class ContainerFleet {
|
|
|
6556
6628
|
PerInstanceContainerGroupDefinitionArn?: string;
|
|
6557
6629
|
/** The name of the container group definition that will be created per instance. This field is optional if you specify GameServerContainerGroupDefinitionName. */
|
|
6558
6630
|
PerInstanceContainerGroupDefinitionName?: string;
|
|
6631
|
+
/** The player gateway mode for the container fleet. */
|
|
6632
|
+
PlayerGatewayMode?: "DISABLED" | "ENABLED" | "REQUIRED";
|
|
6559
6633
|
/** A list of rules that control how a fleet is scaled. */
|
|
6560
6634
|
ScalingPolicies?: ContainerFleet_ScalingPolicy[];
|
|
6561
6635
|
/** The current status of the container fleet. */
|
|
@@ -6568,6 +6642,7 @@ export declare class ContainerFleet {
|
|
|
6568
6642
|
readonly FleetArn: string;
|
|
6569
6643
|
readonly FleetId: string;
|
|
6570
6644
|
readonly GameServerContainerGroupDefinitionArn: string;
|
|
6645
|
+
readonly Locations_Item_PlayerGatewayStatus: string;
|
|
6571
6646
|
readonly MaximumGameServerContainerGroupsPerInstance: number;
|
|
6572
6647
|
readonly PerInstanceContainerGroupDefinitionArn: string;
|
|
6573
6648
|
readonly Status: "ACTIVATING" | "ACTIVE" | "CREATED" | "CREATING" | "DELETING" | "PENDING" | "UPDATING";
|
|
@@ -12222,6 +12297,7 @@ export declare class EvaluationForm {
|
|
|
12222
12297
|
EvaluationFormArn?: string;
|
|
12223
12298
|
/** Configuration for language settings of this evaluation form. */
|
|
12224
12299
|
LanguageConfiguration?: EvaluationForm_EvaluationFormLanguageConfiguration;
|
|
12300
|
+
/** Configuration for evaluation review settings of this evaluation form. */
|
|
12225
12301
|
ReviewConfiguration?: EvaluationForm_EvaluationReviewConfiguration;
|
|
12226
12302
|
/** A scoring strategy of the evaluation form. */
|
|
12227
12303
|
ScoringStrategy?: EvaluationForm_ScoringStrategy;
|
|
@@ -14151,6 +14227,10 @@ export declare class GameLiftFleet {
|
|
|
14151
14227
|
PeerVpcAwsAccountId?: string;
|
|
14152
14228
|
/** A unique identifier for a VPC with resources to be accessed by your Amazon GameLift fleet. The VPC must be in the same Region as your fleet. To look up a VPC ID, use the VPC Dashboard in the AWS Management Console. */
|
|
14153
14229
|
PeerVpcId?: string;
|
|
14230
|
+
/** Configuration for player gateway. */
|
|
14231
|
+
PlayerGatewayConfiguration?: GameLiftFleet_PlayerGatewayConfiguration;
|
|
14232
|
+
/** The player gateway mode for the fleet. */
|
|
14233
|
+
PlayerGatewayMode?: "DISABLED" | "ENABLED" | "REQUIRED";
|
|
14154
14234
|
/** A policy that limits the number of game sessions an individual player can create over a span of time for this fleet. */
|
|
14155
14235
|
ResourceCreationLimitPolicy?: GameLiftFleet_ResourceCreationLimitPolicy;
|
|
14156
14236
|
/** Instructions for launching server processes on each instance in the fleet. Server processes run either a custom game build executable or a Realtime script. The runtime configuration defines the server executables or launch script file, launch parameters, and the number of processes to run concurrently on each instance. When creating a fleet, the runtime configuration must have at least one server process configuration; otherwise the request fails with an invalid request exception.
|
|
@@ -14172,6 +14252,7 @@ Note: It is not currently possible to use the !Ref command to reference a script
|
|
|
14172
14252
|
}, attributes?: CFResourceAttributes);
|
|
14173
14253
|
readonly FleetArn: string;
|
|
14174
14254
|
readonly FleetId: string;
|
|
14255
|
+
readonly Locations_Item_PlayerGatewayStatus: string;
|
|
14175
14256
|
}
|
|
14176
14257
|
|
|
14177
14258
|
export declare class GameServerGroup {
|
|
@@ -19132,6 +19213,8 @@ export declare class LocationFSxONTAP {
|
|
|
19132
19213
|
readonly FsxFilesystemArn: string;
|
|
19133
19214
|
readonly LocationArn: string;
|
|
19134
19215
|
readonly LocationUri: string;
|
|
19216
|
+
readonly Protocol_SMB_CmkSecretConfig_SecretArn: string;
|
|
19217
|
+
readonly Protocol_SMB_ManagedSecretConfig: string;
|
|
19135
19218
|
}
|
|
19136
19219
|
|
|
19137
19220
|
export declare class LocationFSxOpenZFS {
|
|
@@ -19160,6 +19243,8 @@ export declare class LocationFSxWindows {
|
|
|
19160
19243
|
SecurityGroupArns: string[];
|
|
19161
19244
|
/** The user who has the permissions to access files and folders in the FSx for Windows file system. */
|
|
19162
19245
|
User: string;
|
|
19246
|
+
CmkSecretConfig?: LocationFSxWindows_CmkSecretConfig;
|
|
19247
|
+
CustomSecretConfig?: LocationFSxWindows_CustomSecretConfig;
|
|
19163
19248
|
/** The name of the Windows domain that the FSx for Windows server belongs to. */
|
|
19164
19249
|
Domain?: string;
|
|
19165
19250
|
/** The Amazon Resource Name (ARN) for the FSx for Windows file system. */
|
|
@@ -19168,6 +19253,7 @@ export declare class LocationFSxWindows {
|
|
|
19168
19253
|
LocationArn?: string;
|
|
19169
19254
|
/** The URL of the FSx for Windows location that was described. */
|
|
19170
19255
|
LocationUri?: string;
|
|
19256
|
+
ManagedSecretConfig?: LocationFSxWindows_ManagedSecretConfig;
|
|
19171
19257
|
/** The password of the user who has the permissions to access files and folders in the FSx for Windows file system. */
|
|
19172
19258
|
Password?: string;
|
|
19173
19259
|
/** A subdirectory in the location's path. */
|
|
@@ -19175,8 +19261,10 @@ export declare class LocationFSxWindows {
|
|
|
19175
19261
|
/** An array of key-value pairs to apply to this resource. */
|
|
19176
19262
|
Tags?: LocationFSxWindows_Tag[];
|
|
19177
19263
|
}, attributes?: CFResourceAttributes);
|
|
19264
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
19178
19265
|
readonly LocationArn: string;
|
|
19179
19266
|
readonly LocationUri: string;
|
|
19267
|
+
readonly ManagedSecretConfig: LocationFSxWindows_ManagedSecretConfig;
|
|
19180
19268
|
}
|
|
19181
19269
|
|
|
19182
19270
|
export declare class LocationHDFS {
|
|
@@ -19189,6 +19277,8 @@ export declare class LocationHDFS {
|
|
|
19189
19277
|
NameNodes: LocationHDFS_NameNode[];
|
|
19190
19278
|
/** Size of chunks (blocks) in bytes that the data is divided into when stored in the HDFS cluster. */
|
|
19191
19279
|
BlockSize?: number;
|
|
19280
|
+
CmkSecretConfig?: LocationHDFS_CmkSecretConfig;
|
|
19281
|
+
CustomSecretConfig?: LocationHDFS_CustomSecretConfig;
|
|
19192
19282
|
/** The Base64 string representation of the Keytab file. */
|
|
19193
19283
|
KerberosKeytab?: string;
|
|
19194
19284
|
/** The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket. */
|
|
@@ -19201,6 +19291,7 @@ export declare class LocationHDFS {
|
|
|
19201
19291
|
LocationArn?: string;
|
|
19202
19292
|
/** The URL of the HDFS location that was described. */
|
|
19203
19293
|
LocationUri?: string;
|
|
19294
|
+
ManagedSecretConfig?: LocationHDFS_ManagedSecretConfig;
|
|
19204
19295
|
QopConfiguration?: LocationHDFS_QopConfiguration;
|
|
19205
19296
|
/** Number of copies of each block that exists inside the HDFS cluster. */
|
|
19206
19297
|
ReplicationFactor?: number;
|
|
@@ -19211,8 +19302,10 @@ export declare class LocationHDFS {
|
|
|
19211
19302
|
/** An array of key-value pairs to apply to this resource. */
|
|
19212
19303
|
Tags?: LocationHDFS_Tag[];
|
|
19213
19304
|
}, attributes?: CFResourceAttributes);
|
|
19305
|
+
readonly CmkSecretConfig_SecretArn: string;
|
|
19214
19306
|
readonly LocationArn: string;
|
|
19215
19307
|
readonly LocationUri: string;
|
|
19308
|
+
readonly ManagedSecretConfig: LocationHDFS_ManagedSecretConfig;
|
|
19216
19309
|
}
|
|
19217
19310
|
|
|
19218
19311
|
export declare class LocationNFS {
|
|
@@ -20504,6 +20597,7 @@ export declare class Memory {
|
|
|
20504
20597
|
MemoryId?: string;
|
|
20505
20598
|
MemoryStrategies?: any;
|
|
20506
20599
|
Status?: Memory_MemoryStatus;
|
|
20600
|
+
StreamDeliveryResources?: Memory_StreamDeliveryResources;
|
|
20507
20601
|
Tags?: Record<string, unknown>;
|
|
20508
20602
|
UpdatedAt?: string;
|
|
20509
20603
|
}, attributes?: CFResourceAttributes);
|
|
@@ -24216,6 +24310,37 @@ export declare class PolicyAssociation {
|
|
|
24216
24310
|
readonly UpdatedAt: string;
|
|
24217
24311
|
}
|
|
24218
24312
|
|
|
24313
|
+
export declare class PolicyEngine {
|
|
24314
|
+
constructor(props: {
|
|
24315
|
+
/** The customer-assigned immutable name for the policy engine */
|
|
24316
|
+
Name: string;
|
|
24317
|
+
/** The timestamp when the policy engine was created */
|
|
24318
|
+
CreatedAt?: string;
|
|
24319
|
+
/** A human-readable description of the policy engine's purpose and scope */
|
|
24320
|
+
Description?: string;
|
|
24321
|
+
/** The ARN of the KMS key used to encrypt the policy engine data */
|
|
24322
|
+
EncryptionKeyArn?: string;
|
|
24323
|
+
/** The Amazon Resource Name (ARN) of the policy engine */
|
|
24324
|
+
PolicyEngineArn?: string;
|
|
24325
|
+
/** The unique identifier for the policy engine */
|
|
24326
|
+
PolicyEngineId?: string;
|
|
24327
|
+
/** The current status of the policy engine */
|
|
24328
|
+
Status?: PolicyEngine_PolicyEngineStatus;
|
|
24329
|
+
/** Additional information about the policy engine status */
|
|
24330
|
+
StatusReasons?: string[];
|
|
24331
|
+
/** A list of tags to assign to the policy engine. */
|
|
24332
|
+
Tags?: PolicyEngine_Tag[];
|
|
24333
|
+
/** The timestamp when the policy engine was last updated */
|
|
24334
|
+
UpdatedAt?: string;
|
|
24335
|
+
}, attributes?: CFResourceAttributes);
|
|
24336
|
+
readonly CreatedAt: string;
|
|
24337
|
+
readonly PolicyEngineArn: string;
|
|
24338
|
+
readonly PolicyEngineId: string;
|
|
24339
|
+
readonly Status: PolicyEngine_PolicyEngineStatus;
|
|
24340
|
+
readonly StatusReasons: string[];
|
|
24341
|
+
readonly UpdatedAt: string;
|
|
24342
|
+
}
|
|
24343
|
+
|
|
24219
24344
|
export declare class PolicyGrant {
|
|
24220
24345
|
constructor(props: {
|
|
24221
24346
|
DomainIdentifier: string;
|
|
@@ -50461,6 +50586,19 @@ export declare class BedrockAgentCoreGateway_WorkloadIdentityDetails {
|
|
|
50461
50586
|
});
|
|
50462
50587
|
}
|
|
50463
50588
|
|
|
50589
|
+
export declare class BedrockAgentCorePolicy_CedarPolicy {
|
|
50590
|
+
constructor(props: {
|
|
50591
|
+
/** The Cedar policy statement that defines the authorization logic. */
|
|
50592
|
+
Statement: string;
|
|
50593
|
+
});
|
|
50594
|
+
}
|
|
50595
|
+
|
|
50596
|
+
export declare class BedrockAgentCorePolicy_PolicyDefinition {
|
|
50597
|
+
constructor(props: {
|
|
50598
|
+
Cedar: BedrockAgentCorePolicy_CedarPolicy;
|
|
50599
|
+
});
|
|
50600
|
+
}
|
|
50601
|
+
|
|
50464
50602
|
export declare class BedrockAgentIntentConfiguration {
|
|
50465
50603
|
constructor(props: {
|
|
50466
50604
|
BedrockAgentConfiguration?: Record<string, unknown>;
|
|
@@ -55460,6 +55598,13 @@ export declare class CdnConfiguration {
|
|
|
55460
55598
|
});
|
|
55461
55599
|
}
|
|
55462
55600
|
|
|
55601
|
+
export declare class CedarPolicy {
|
|
55602
|
+
constructor(props: {
|
|
55603
|
+
/** The Cedar policy statement that defines the authorization logic. */
|
|
55604
|
+
Statement: string;
|
|
55605
|
+
});
|
|
55606
|
+
}
|
|
55607
|
+
|
|
55463
55608
|
export declare class Cell_Tag {
|
|
55464
55609
|
constructor(props: {
|
|
55465
55610
|
Key: string;
|
|
@@ -61900,6 +62045,13 @@ export declare class ConnectPrompt_Tag {
|
|
|
61900
62045
|
});
|
|
61901
62046
|
}
|
|
61902
62047
|
|
|
62048
|
+
export declare class ConnectQueue_EmailAddress {
|
|
62049
|
+
constructor(props: {
|
|
62050
|
+
/** The Amazon Resource Name (ARN) of the email address */
|
|
62051
|
+
EmailAddressArn: string;
|
|
62052
|
+
});
|
|
62053
|
+
}
|
|
62054
|
+
|
|
61903
62055
|
export declare class ConnectQueue_OutboundCallerConfig {
|
|
61904
62056
|
constructor(props: {
|
|
61905
62057
|
OutboundCallerIdName?: string;
|
|
@@ -62053,6 +62205,8 @@ export declare class ConnectSecurityProfile_Application {
|
|
|
62053
62205
|
ApplicationPermissions: string[];
|
|
62054
62206
|
/** Namespace of the application that you want to give access to. */
|
|
62055
62207
|
Namespace: string;
|
|
62208
|
+
/** The type of the application. */
|
|
62209
|
+
Type?: "MCP" | "THIRD_PARTY_APPLICATION";
|
|
62056
62210
|
});
|
|
62057
62211
|
}
|
|
62058
62212
|
|
|
@@ -62062,6 +62216,15 @@ export declare class ConnectSecurityProfile_DataTableAccessControlConfiguration
|
|
|
62062
62216
|
});
|
|
62063
62217
|
}
|
|
62064
62218
|
|
|
62219
|
+
export declare class ConnectSecurityProfile_FlowModule {
|
|
62220
|
+
constructor(props: {
|
|
62221
|
+
/** The identifier of the application that you want to give access to. */
|
|
62222
|
+
FlowModuleId: string;
|
|
62223
|
+
/** The type of the first-party application */
|
|
62224
|
+
Type: string;
|
|
62225
|
+
});
|
|
62226
|
+
}
|
|
62227
|
+
|
|
62065
62228
|
export declare class ConnectSecurityProfile_PrimaryAttributeAccessControlConfigurationItem {
|
|
62066
62229
|
constructor(props: {
|
|
62067
62230
|
/** An array of PrimaryAttributeValue objects. */
|
|
@@ -62522,6 +62685,8 @@ export declare class ContainerFleet_LocationConfiguration {
|
|
|
62522
62685
|
constructor(props: {
|
|
62523
62686
|
Location: string;
|
|
62524
62687
|
LocationCapacity?: ContainerFleet_LocationCapacity;
|
|
62688
|
+
/** The player gateway status for the location. */
|
|
62689
|
+
PlayerGatewayStatus?: "DISABLED" | "ENABLED";
|
|
62525
62690
|
StoppedActions?: any;
|
|
62526
62691
|
});
|
|
62527
62692
|
}
|
|
@@ -62867,6 +63032,15 @@ export declare class ContainerServiceDeployment {
|
|
|
62867
63032
|
});
|
|
62868
63033
|
}
|
|
62869
63034
|
|
|
63035
|
+
export declare class ContentConfiguration {
|
|
63036
|
+
constructor(props: {
|
|
63037
|
+
/** The type of content to deliver */
|
|
63038
|
+
Type: "MEMORY_RECORDS";
|
|
63039
|
+
/** The level of content detail to deliver */
|
|
63040
|
+
Level?: "FULL_CONTENT" | "METADATA_ONLY";
|
|
63041
|
+
});
|
|
63042
|
+
}
|
|
63043
|
+
|
|
62870
63044
|
export declare class ContentFilterConfig {
|
|
62871
63045
|
constructor(props: {
|
|
62872
63046
|
InputStrength: Guardrail_FilterStrength;
|
|
@@ -63062,7 +63236,7 @@ export declare class ControlPlanePlacement {
|
|
|
63062
63236
|
export declare class ControlPlaneScalingConfig {
|
|
63063
63237
|
constructor(props: {
|
|
63064
63238
|
/** The scaling tier for the provisioned control plane. */
|
|
63065
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-xl";
|
|
63239
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-xl" | "ultra";
|
|
63066
63240
|
});
|
|
63067
63241
|
}
|
|
63068
63242
|
|
|
@@ -71025,6 +71199,7 @@ export declare class DestinationFlowConfig {
|
|
|
71025
71199
|
export declare class DestinationLogsConfiguration {
|
|
71026
71200
|
constructor(props: {
|
|
71027
71201
|
BackupConfiguration?: OrganizationCentralizationRule_LogsBackupConfiguration;
|
|
71202
|
+
LogGroupNameConfiguration?: OrganizationCentralizationRule_LogGroupNameConfiguration;
|
|
71028
71203
|
LogsEncryptionConfiguration?: OrganizationCentralizationRule_LogsEncryptionConfiguration;
|
|
71029
71204
|
});
|
|
71030
71205
|
}
|
|
@@ -75789,7 +75964,7 @@ export declare class EKSCluster_ControlPlanePlacement {
|
|
|
75789
75964
|
export declare class EKSCluster_ControlPlaneScalingConfig {
|
|
75790
75965
|
constructor(props: {
|
|
75791
75966
|
/** The scaling tier for the provisioned control plane. */
|
|
75792
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-xl";
|
|
75967
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-xl" | "ultra";
|
|
75793
75968
|
});
|
|
75794
75969
|
}
|
|
75795
75970
|
|
|
@@ -82078,6 +82253,15 @@ export declare class FlowLog_Tag {
|
|
|
82078
82253
|
});
|
|
82079
82254
|
}
|
|
82080
82255
|
|
|
82256
|
+
export declare class FlowModule {
|
|
82257
|
+
constructor(props: {
|
|
82258
|
+
/** The identifier of the application that you want to give access to. */
|
|
82259
|
+
FlowModuleId: string;
|
|
82260
|
+
/** The type of the first-party application */
|
|
82261
|
+
Type: string;
|
|
82262
|
+
});
|
|
82263
|
+
}
|
|
82264
|
+
|
|
82081
82265
|
export declare class FlowOutput_DestinationConfiguration {
|
|
82082
82266
|
constructor(props: {
|
|
82083
82267
|
/** The IP address where contents of the media stream will be sent. */
|
|
@@ -84034,6 +84218,8 @@ export declare class GameLiftFleet_LocationConfiguration {
|
|
|
84034
84218
|
constructor(props: {
|
|
84035
84219
|
Location: string;
|
|
84036
84220
|
LocationCapacity?: GameLiftFleet_LocationCapacity;
|
|
84221
|
+
/** The player gateway status for the location. */
|
|
84222
|
+
PlayerGatewayStatus?: "DISABLED" | "ENABLED";
|
|
84037
84223
|
});
|
|
84038
84224
|
}
|
|
84039
84225
|
|
|
@@ -84046,6 +84232,13 @@ export declare class GameLiftFleet_ManagedCapacityConfiguration {
|
|
|
84046
84232
|
});
|
|
84047
84233
|
}
|
|
84048
84234
|
|
|
84235
|
+
export declare class GameLiftFleet_PlayerGatewayConfiguration {
|
|
84236
|
+
constructor(props: {
|
|
84237
|
+
/** The IP protocol supported by the game server. */
|
|
84238
|
+
GameServerIpProtocolSupported?: "DUAL_STACK" | "IPv4";
|
|
84239
|
+
});
|
|
84240
|
+
}
|
|
84241
|
+
|
|
84049
84242
|
export declare class GameLiftFleet_ResourceCreationLimitPolicy {
|
|
84050
84243
|
constructor(props: {
|
|
84051
84244
|
/** The maximum number of game sessions that an individual can create during the policy period. */
|
|
@@ -95188,6 +95381,13 @@ export declare class KinesisFirehoseConfig {
|
|
|
95188
95381
|
});
|
|
95189
95382
|
}
|
|
95190
95383
|
|
|
95384
|
+
export declare class KinesisResource {
|
|
95385
|
+
constructor(props: {
|
|
95386
|
+
ContentConfigurations: Memory_ContentConfiguration[];
|
|
95387
|
+
DataStreamArn: string;
|
|
95388
|
+
});
|
|
95389
|
+
}
|
|
95390
|
+
|
|
95191
95391
|
export declare class KinesisSettings {
|
|
95192
95392
|
constructor(props: {
|
|
95193
95393
|
IncludeControlDetails?: boolean;
|
|
@@ -98429,6 +98629,31 @@ export declare class LocationFSxLustre_Tag {
|
|
|
98429
98629
|
});
|
|
98430
98630
|
}
|
|
98431
98631
|
|
|
98632
|
+
export declare class LocationFSxONTAP_CmkSecretConfig {
|
|
98633
|
+
constructor(props: {
|
|
98634
|
+
/** 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. */
|
|
98635
|
+
KmsKeyArn?: string;
|
|
98636
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98637
|
+
SecretArn?: string;
|
|
98638
|
+
});
|
|
98639
|
+
}
|
|
98640
|
+
|
|
98641
|
+
export declare class LocationFSxONTAP_CustomSecretConfig {
|
|
98642
|
+
constructor(props: {
|
|
98643
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98644
|
+
SecretAccessRoleArn: string;
|
|
98645
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98646
|
+
SecretArn: string;
|
|
98647
|
+
});
|
|
98648
|
+
}
|
|
98649
|
+
|
|
98650
|
+
export declare class LocationFSxONTAP_ManagedSecretConfig {
|
|
98651
|
+
constructor(props: {
|
|
98652
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98653
|
+
SecretArn: string;
|
|
98654
|
+
});
|
|
98655
|
+
}
|
|
98656
|
+
|
|
98432
98657
|
export declare class LocationFSxONTAP_NFS {
|
|
98433
98658
|
constructor(props: {
|
|
98434
98659
|
MountOptions: LocationFSxONTAP_NfsMountOptions;
|
|
@@ -98452,12 +98677,15 @@ export declare class LocationFSxONTAP_Protocol {
|
|
|
98452
98677
|
export declare class LocationFSxONTAP_SMB {
|
|
98453
98678
|
constructor(props: {
|
|
98454
98679
|
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
98680
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
98458
98681
|
User: string;
|
|
98682
|
+
CmkSecretConfig?: LocationFSxONTAP_CmkSecretConfig;
|
|
98683
|
+
CustomSecretConfig?: LocationFSxONTAP_CustomSecretConfig;
|
|
98459
98684
|
/** The name of the Windows domain that the SMB server belongs to. */
|
|
98460
98685
|
Domain?: string;
|
|
98686
|
+
ManagedSecretConfig?: LocationFSxONTAP_ManagedSecretConfig;
|
|
98687
|
+
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
98688
|
+
Password?: string;
|
|
98461
98689
|
});
|
|
98462
98690
|
}
|
|
98463
98691
|
|
|
@@ -98505,6 +98733,31 @@ export declare class LocationFSxOpenZFS_Tag {
|
|
|
98505
98733
|
});
|
|
98506
98734
|
}
|
|
98507
98735
|
|
|
98736
|
+
export declare class LocationFSxWindows_CmkSecretConfig {
|
|
98737
|
+
constructor(props: {
|
|
98738
|
+
/** 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. */
|
|
98739
|
+
KmsKeyArn?: string;
|
|
98740
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98741
|
+
SecretArn?: string;
|
|
98742
|
+
});
|
|
98743
|
+
}
|
|
98744
|
+
|
|
98745
|
+
export declare class LocationFSxWindows_CustomSecretConfig {
|
|
98746
|
+
constructor(props: {
|
|
98747
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98748
|
+
SecretAccessRoleArn: string;
|
|
98749
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98750
|
+
SecretArn: string;
|
|
98751
|
+
});
|
|
98752
|
+
}
|
|
98753
|
+
|
|
98754
|
+
export declare class LocationFSxWindows_ManagedSecretConfig {
|
|
98755
|
+
constructor(props: {
|
|
98756
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98757
|
+
SecretArn: string;
|
|
98758
|
+
});
|
|
98759
|
+
}
|
|
98760
|
+
|
|
98508
98761
|
export declare class LocationFSxWindows_Tag {
|
|
98509
98762
|
constructor(props: {
|
|
98510
98763
|
/** The key for an AWS resource tag. */
|
|
@@ -98514,6 +98767,31 @@ export declare class LocationFSxWindows_Tag {
|
|
|
98514
98767
|
});
|
|
98515
98768
|
}
|
|
98516
98769
|
|
|
98770
|
+
export declare class LocationHDFS_CmkSecretConfig {
|
|
98771
|
+
constructor(props: {
|
|
98772
|
+
/** 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. */
|
|
98773
|
+
KmsKeyArn?: string;
|
|
98774
|
+
/** Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. */
|
|
98775
|
+
SecretArn?: string;
|
|
98776
|
+
});
|
|
98777
|
+
}
|
|
98778
|
+
|
|
98779
|
+
export declare class LocationHDFS_CustomSecretConfig {
|
|
98780
|
+
constructor(props: {
|
|
98781
|
+
/** Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. */
|
|
98782
|
+
SecretAccessRoleArn: string;
|
|
98783
|
+
/** Specifies the ARN for a customer created AWS Secrets Manager secret. */
|
|
98784
|
+
SecretArn: string;
|
|
98785
|
+
});
|
|
98786
|
+
}
|
|
98787
|
+
|
|
98788
|
+
export declare class LocationHDFS_ManagedSecretConfig {
|
|
98789
|
+
constructor(props: {
|
|
98790
|
+
/** Specifies the ARN for an AWS Secrets Manager secret. */
|
|
98791
|
+
SecretArn: string;
|
|
98792
|
+
});
|
|
98793
|
+
}
|
|
98794
|
+
|
|
98517
98795
|
export declare class LocationHDFS_NameNode {
|
|
98518
98796
|
constructor(props: {
|
|
98519
98797
|
/** The DNS name or IP address of the Name Node in the customer's on premises HDFS cluster. */
|
|
@@ -98834,6 +99112,12 @@ export declare class LogGroup_Tag {
|
|
|
98834
99112
|
});
|
|
98835
99113
|
}
|
|
98836
99114
|
|
|
99115
|
+
export declare class LogGroupNameConfiguration {
|
|
99116
|
+
constructor(props: {
|
|
99117
|
+
LogGroupNamePattern: string;
|
|
99118
|
+
});
|
|
99119
|
+
}
|
|
99120
|
+
|
|
98837
99121
|
export declare class LogicallyAirGappedBackupVault_NotificationObjectType {
|
|
98838
99122
|
constructor(props: {
|
|
98839
99123
|
BackupVaultEvents: string[];
|
|
@@ -102883,13 +103167,13 @@ export declare class MediaPackageChannel_HlsIngest {
|
|
|
102883
103167
|
export declare class MediaPackageChannel_IngestEndpoint {
|
|
102884
103168
|
constructor(props: {
|
|
102885
103169
|
/** The system generated unique identifier for the IngestEndpoint */
|
|
102886
|
-
Id
|
|
103170
|
+
Id?: string;
|
|
102887
103171
|
/** The system generated password for ingest authentication. */
|
|
102888
|
-
Password
|
|
103172
|
+
Password?: string;
|
|
102889
103173
|
/** The ingest URL to which the source stream should be sent. */
|
|
102890
|
-
Url
|
|
103174
|
+
Url?: string;
|
|
102891
103175
|
/** The system generated username for ingest authentication. */
|
|
102892
|
-
Username
|
|
103176
|
+
Username?: string;
|
|
102893
103177
|
});
|
|
102894
103178
|
}
|
|
102895
103179
|
|
|
@@ -103842,6 +104126,15 @@ export declare class MemberSpecification {
|
|
|
103842
104126
|
});
|
|
103843
104127
|
}
|
|
103844
104128
|
|
|
104129
|
+
export declare class Memory_ContentConfiguration {
|
|
104130
|
+
constructor(props: {
|
|
104131
|
+
/** The type of content to deliver */
|
|
104132
|
+
Type: "MEMORY_RECORDS";
|
|
104133
|
+
/** The level of content detail to deliver */
|
|
104134
|
+
Level?: "FULL_CONTENT" | "METADATA_ONLY";
|
|
104135
|
+
});
|
|
104136
|
+
}
|
|
104137
|
+
|
|
103845
104138
|
export declare class Memory_CustomConfigurationInput {
|
|
103846
104139
|
constructor(props: {
|
|
103847
104140
|
EpisodicOverride?: Memory_EpisodicOverride;
|
|
@@ -103933,6 +104226,13 @@ export declare class Memory_InvocationConfigurationInput {
|
|
|
103933
104226
|
});
|
|
103934
104227
|
}
|
|
103935
104228
|
|
|
104229
|
+
export declare class Memory_KinesisResource {
|
|
104230
|
+
constructor(props: {
|
|
104231
|
+
ContentConfigurations: Memory_ContentConfiguration[];
|
|
104232
|
+
DataStreamArn: string;
|
|
104233
|
+
});
|
|
104234
|
+
}
|
|
104235
|
+
|
|
103936
104236
|
export declare class Memory_MemoryStrategy {
|
|
103937
104237
|
constructor(props: {
|
|
103938
104238
|
CustomMemoryStrategy?: Memory_CustomMemoryStrategy;
|
|
@@ -104021,6 +104321,18 @@ export declare class Memory_StrategyConfiguration {
|
|
|
104021
104321
|
});
|
|
104022
104322
|
}
|
|
104023
104323
|
|
|
104324
|
+
export declare class Memory_StreamDeliveryResource {
|
|
104325
|
+
constructor(props: {
|
|
104326
|
+
Kinesis?: Memory_KinesisResource;
|
|
104327
|
+
});
|
|
104328
|
+
}
|
|
104329
|
+
|
|
104330
|
+
export declare class Memory_StreamDeliveryResources {
|
|
104331
|
+
constructor(props: {
|
|
104332
|
+
Resources: Memory_StreamDeliveryResource[];
|
|
104333
|
+
});
|
|
104334
|
+
}
|
|
104335
|
+
|
|
104024
104336
|
export declare class Memory_SummaryConsolidationOverride {
|
|
104025
104337
|
constructor(props: {
|
|
104026
104338
|
AppendToPrompt: string;
|
|
@@ -111158,10 +111470,17 @@ export declare class OrganizationCentralizationRule_CentralizationRuleSource {
|
|
|
111158
111470
|
export declare class OrganizationCentralizationRule_DestinationLogsConfiguration {
|
|
111159
111471
|
constructor(props: {
|
|
111160
111472
|
BackupConfiguration?: OrganizationCentralizationRule_LogsBackupConfiguration;
|
|
111473
|
+
LogGroupNameConfiguration?: OrganizationCentralizationRule_LogGroupNameConfiguration;
|
|
111161
111474
|
LogsEncryptionConfiguration?: OrganizationCentralizationRule_LogsEncryptionConfiguration;
|
|
111162
111475
|
});
|
|
111163
111476
|
}
|
|
111164
111477
|
|
|
111478
|
+
export declare class OrganizationCentralizationRule_LogGroupNameConfiguration {
|
|
111479
|
+
constructor(props: {
|
|
111480
|
+
LogGroupNamePattern: string;
|
|
111481
|
+
});
|
|
111482
|
+
}
|
|
111483
|
+
|
|
111165
111484
|
export declare class OrganizationCentralizationRule_LogsBackupConfiguration {
|
|
111166
111485
|
constructor(props: {
|
|
111167
111486
|
Region: string;
|
|
@@ -115220,6 +115539,13 @@ export declare class PlaybackRestrictionPolicy_Tag {
|
|
|
115220
115539
|
});
|
|
115221
115540
|
}
|
|
115222
115541
|
|
|
115542
|
+
export declare class PlayerGatewayConfiguration {
|
|
115543
|
+
constructor(props: {
|
|
115544
|
+
/** The IP protocol supported by the game server. */
|
|
115545
|
+
GameServerIpProtocolSupported?: "DUAL_STACK" | "IPv4";
|
|
115546
|
+
});
|
|
115547
|
+
}
|
|
115548
|
+
|
|
115223
115549
|
export declare class PlayerLatencyPolicy {
|
|
115224
115550
|
constructor(props: {
|
|
115225
115551
|
/** The maximum latency value that is allowed for any player, in milliseconds. All policies must have a value set for this property. */
|
|
@@ -115285,19 +115611,6 @@ export declare class Point {
|
|
|
115285
115611
|
});
|
|
115286
115612
|
}
|
|
115287
115613
|
|
|
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
115614
|
export declare class PolicyDefinitionRule {
|
|
115302
115615
|
constructor(props: {
|
|
115303
115616
|
/** The SMT expression for this rule */
|
|
@@ -115369,6 +115682,13 @@ export declare class PolicyDetails {
|
|
|
115369
115682
|
});
|
|
115370
115683
|
}
|
|
115371
115684
|
|
|
115685
|
+
export declare class PolicyEngine_Tag {
|
|
115686
|
+
constructor(props: {
|
|
115687
|
+
Key: string;
|
|
115688
|
+
Value: string;
|
|
115689
|
+
});
|
|
115690
|
+
}
|
|
115691
|
+
|
|
115372
115692
|
export declare class PolicyGrant_AddToProjectMemberPoolPolicyGrantDetail {
|
|
115373
115693
|
constructor(props: {
|
|
115374
115694
|
IncludeChildDomainUnits?: boolean;
|
|
@@ -135897,6 +136217,24 @@ export declare class SamplingConfig {
|
|
|
135897
136217
|
});
|
|
135898
136218
|
}
|
|
135899
136219
|
|
|
136220
|
+
export declare class SamplingRateBoost {
|
|
136221
|
+
constructor(props: {
|
|
136222
|
+
/** Time window (in minutes) in which only one sampling rate boost can be triggered. After a boost occurs, no further boosts are allowed until the next window. */
|
|
136223
|
+
CooldownWindowMinutes: number;
|
|
136224
|
+
/** The maximum sampling rate X-Ray will apply when it detects anomalies. X-Ray determines the appropriate rate between your baseline and the maximum, depending on anomaly activity. */
|
|
136225
|
+
MaxRate: number;
|
|
136226
|
+
});
|
|
136227
|
+
}
|
|
136228
|
+
|
|
136229
|
+
export declare class SamplingRule_SamplingRateBoost {
|
|
136230
|
+
constructor(props: {
|
|
136231
|
+
/** Time window (in minutes) in which only one sampling rate boost can be triggered. After a boost occurs, no further boosts are allowed until the next window. */
|
|
136232
|
+
CooldownWindowMinutes: number;
|
|
136233
|
+
/** The maximum sampling rate X-Ray will apply when it detects anomalies. X-Ray determines the appropriate rate between your baseline and the maximum, depending on anomaly activity. */
|
|
136234
|
+
MaxRate: number;
|
|
136235
|
+
});
|
|
136236
|
+
}
|
|
136237
|
+
|
|
135900
136238
|
export declare class SamplingRule_SamplingRule {
|
|
135901
136239
|
constructor(props: {
|
|
135902
136240
|
/** The percentage of matching requests to instrument, after the reservoir is exhausted. */
|
|
@@ -135921,6 +136259,7 @@ export declare class SamplingRule_SamplingRule {
|
|
|
135921
136259
|
Attributes?: Record<string, unknown>;
|
|
135922
136260
|
RuleARN?: string;
|
|
135923
136261
|
RuleName?: string;
|
|
136262
|
+
SamplingRateBoost?: SamplingRule_SamplingRateBoost;
|
|
135924
136263
|
/** The version of the sampling rule format (1) */
|
|
135925
136264
|
Version?: number;
|
|
135926
136265
|
});
|
|
@@ -135954,6 +136293,7 @@ export declare class SamplingRule_SamplingRuleUpdate {
|
|
|
135954
136293
|
ResourceARN?: string;
|
|
135955
136294
|
RuleARN?: string;
|
|
135956
136295
|
RuleName?: string;
|
|
136296
|
+
SamplingRateBoost?: SamplingRule_SamplingRateBoost;
|
|
135957
136297
|
/** Matches the name that the service uses to identify itself in segments. */
|
|
135958
136298
|
ServiceName?: string;
|
|
135959
136299
|
/** Matches the origin that the service uses to identify its type in segments. */
|
|
@@ -136000,6 +136340,7 @@ export declare class SamplingRuleUpdate {
|
|
|
136000
136340
|
ResourceARN?: string;
|
|
136001
136341
|
RuleARN?: string;
|
|
136002
136342
|
RuleName?: string;
|
|
136343
|
+
SamplingRateBoost?: SamplingRule_SamplingRateBoost;
|
|
136003
136344
|
/** Matches the name that the service uses to identify itself in segments. */
|
|
136004
136345
|
ServiceName?: string;
|
|
136005
136346
|
/** Matches the origin that the service uses to identify its type in segments. */
|
|
@@ -139966,12 +140307,15 @@ export declare class SlurmRest {
|
|
|
139966
140307
|
export declare class SMB {
|
|
139967
140308
|
constructor(props: {
|
|
139968
140309
|
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
140310
|
/** The user who can mount the share, has the permissions to access files and folders in the SMB share. */
|
|
139972
140311
|
User: string;
|
|
140312
|
+
CmkSecretConfig?: LocationFSxONTAP_CmkSecretConfig;
|
|
140313
|
+
CustomSecretConfig?: LocationFSxONTAP_CustomSecretConfig;
|
|
139973
140314
|
/** The name of the Windows domain that the SMB server belongs to. */
|
|
139974
140315
|
Domain?: string;
|
|
140316
|
+
ManagedSecretConfig?: LocationFSxONTAP_ManagedSecretConfig;
|
|
140317
|
+
/** The password of the user who can mount the share and has the permissions to access files and folders in the SMB share. */
|
|
140318
|
+
Password?: string;
|
|
139975
140319
|
});
|
|
139976
140320
|
}
|
|
139977
140321
|
|
|
@@ -142759,6 +143103,18 @@ export declare class StreamConsumer_Tag {
|
|
|
142759
143103
|
});
|
|
142760
143104
|
}
|
|
142761
143105
|
|
|
143106
|
+
export declare class StreamDeliveryResource {
|
|
143107
|
+
constructor(props: {
|
|
143108
|
+
Kinesis?: Memory_KinesisResource;
|
|
143109
|
+
});
|
|
143110
|
+
}
|
|
143111
|
+
|
|
143112
|
+
export declare class StreamDeliveryResources {
|
|
143113
|
+
constructor(props: {
|
|
143114
|
+
Resources: Memory_StreamDeliveryResource[];
|
|
143115
|
+
});
|
|
143116
|
+
}
|
|
143117
|
+
|
|
142762
143118
|
export declare class StreamEncryption {
|
|
142763
143119
|
constructor(props: {
|
|
142764
143120
|
/** The encryption type to use. The only valid value is KMS. */
|
|
@@ -156816,6 +157172,19 @@ export type BedrockAgentCoreGateway_InboundTokenClaimValueType = "STRING" | "STR
|
|
|
156816
157172
|
|
|
156817
157173
|
export type BedrockAgentCoreGateway_SearchType = "SEMANTIC";
|
|
156818
157174
|
|
|
157175
|
+
export type BedrockAgentCorePolicy_PolicyStatus =
|
|
157176
|
+
| "ACTIVE"
|
|
157177
|
+
| "CREATE_FAILED"
|
|
157178
|
+
| "CREATING"
|
|
157179
|
+
| "DELETE_FAILED"
|
|
157180
|
+
| "DELETING"
|
|
157181
|
+
| "UPDATE_FAILED"
|
|
157182
|
+
| "UPDATING";
|
|
157183
|
+
|
|
157184
|
+
export type BedrockAgentCorePolicy_PolicyValidationMode =
|
|
157185
|
+
| "FAIL_ON_ANY_FINDINGS"
|
|
157186
|
+
| "IGNORE_ALL_FINDINGS";
|
|
157187
|
+
|
|
156819
157188
|
export type BedrockDataSource_ChunkingStrategy =
|
|
156820
157189
|
| "FIXED_SIZE"
|
|
156821
157190
|
| "HIERARCHICAL"
|
|
@@ -159507,6 +159876,15 @@ export type Plugin_PluginType =
|
|
|
159507
159876
|
| "ZENDESK"
|
|
159508
159877
|
| "ZENDESK_SUITE";
|
|
159509
159878
|
|
|
159879
|
+
export type PolicyEngine_PolicyEngineStatus =
|
|
159880
|
+
| "ACTIVE"
|
|
159881
|
+
| "CREATE_FAILED"
|
|
159882
|
+
| "CREATING"
|
|
159883
|
+
| "DELETE_FAILED"
|
|
159884
|
+
| "DELETING"
|
|
159885
|
+
| "UPDATE_FAILED"
|
|
159886
|
+
| "UPDATING";
|
|
159887
|
+
|
|
159510
159888
|
export type PolicyGrant_DomainUnitDesignation = "OWNER";
|
|
159511
159889
|
|
|
159512
159890
|
export type PolicyGrant_ManagedPolicyType =
|