@pulumi/aws-native 1.28.0-alpha.1744763027 → 1.28.0-alpha.1744892760
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/cleanrooms/collaboration.d.ts +2 -2
- package/emr/getStep.d.ts +27 -0
- package/emr/getStep.js +28 -0
- package/emr/getStep.js.map +1 -0
- package/emr/index.d.ts +6 -0
- package/emr/index.js +8 -1
- package/emr/index.js.map +1 -1
- package/emr/step.d.ts +71 -0
- package/emr/step.js +75 -0
- package/emr/step.js.map +1 -0
- package/events/apiDestination.d.ts +4 -0
- package/events/apiDestination.js +2 -0
- package/events/apiDestination.js.map +1 -1
- package/events/archive.d.ts +2 -0
- package/events/archive.js +2 -0
- package/events/archive.js.map +1 -1
- package/events/connection.d.ts +4 -0
- package/events/connection.js +2 -0
- package/events/connection.js.map +1 -1
- package/events/getApiDestination.d.ts +4 -0
- package/events/getApiDestination.js.map +1 -1
- package/events/getArchive.d.ts +1 -0
- package/events/getArchive.js.map +1 -1
- package/events/getConnection.d.ts +4 -0
- package/events/getConnection.js.map +1 -1
- package/launchwizard/deployment.d.ts +2 -2
- package/launchwizard/deployment.js +0 -3
- package/launchwizard/deployment.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/paymentcryptography/getKey.d.ts +3 -0
- package/paymentcryptography/getKey.js.map +1 -1
- package/paymentcryptography/key.d.ts +6 -0
- package/paymentcryptography/key.js.map +1 -1
- package/s3tables/getTableBucket.d.ts +1 -0
- package/s3tables/getTableBucket.js.map +1 -1
- package/s3tables/tableBucket.d.ts +2 -0
- package/s3tables/tableBucket.js +2 -0
- package/s3tables/tableBucket.js.map +1 -1
- package/ses/mailManagerIngressPoint.d.ts +2 -0
- package/ses/mailManagerIngressPoint.js +3 -1
- package/ses/mailManagerIngressPoint.js.map +1 -1
- package/types/enums/bedrock/index.d.ts +21 -0
- package/types/enums/bedrock/index.js +18 -1
- package/types/enums/bedrock/index.js.map +1 -1
- package/types/enums/s3tables/index.d.ts +8 -0
- package/types/enums/s3tables/index.js +5 -1
- package/types/enums/s3tables/index.js.map +1 -1
- package/types/enums/ses/index.d.ts +4 -0
- package/types/enums/ses/index.js +4 -1
- package/types/enums/ses/index.js.map +1 -1
- package/types/input.d.ts +278 -14
- package/types/output.d.ts +278 -14
- package/types/output.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -1738,6 +1738,7 @@ export declare namespace apigateway {
|
|
|
1738
1738
|
truststoreVersion?: string;
|
|
1739
1739
|
}
|
|
1740
1740
|
interface DomainNameV2EndpointConfiguration {
|
|
1741
|
+
ipAddressType?: string;
|
|
1741
1742
|
/**
|
|
1742
1743
|
* A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). For an edge-optimized API and its custom domain name, the endpoint type is `"EDGE"` . For a regional API and its custom domain name, the endpoint type is `REGIONAL` . For a private API, the endpoint type is `PRIVATE` .
|
|
1743
1744
|
*/
|
|
@@ -11512,6 +11513,8 @@ export declare namespace bedrock {
|
|
|
11512
11513
|
* Content filter config in content policy.
|
|
11513
11514
|
*/
|
|
11514
11515
|
interface GuardrailContentFilterConfig {
|
|
11516
|
+
inputAction?: enums.bedrock.GuardrailContentFilterAction;
|
|
11517
|
+
inputEnabled?: boolean;
|
|
11515
11518
|
/**
|
|
11516
11519
|
* List of modalities
|
|
11517
11520
|
*/
|
|
@@ -11520,6 +11523,8 @@ export declare namespace bedrock {
|
|
|
11520
11523
|
* The strength of the content filter to apply to prompts. As you increase the filter strength, the likelihood of filtering harmful content increases and the probability of seeing harmful content in your application reduces.
|
|
11521
11524
|
*/
|
|
11522
11525
|
inputStrength: enums.bedrock.GuardrailFilterStrength;
|
|
11526
|
+
outputAction?: enums.bedrock.GuardrailContentFilterAction;
|
|
11527
|
+
outputEnabled?: boolean;
|
|
11523
11528
|
/**
|
|
11524
11529
|
* List of modalities
|
|
11525
11530
|
*/
|
|
@@ -11546,6 +11551,8 @@ export declare namespace bedrock {
|
|
|
11546
11551
|
* A config for grounding filter.
|
|
11547
11552
|
*/
|
|
11548
11553
|
interface GuardrailContextualGroundingFilterConfig {
|
|
11554
|
+
action?: enums.bedrock.GuardrailContextualGroundingAction;
|
|
11555
|
+
enabled?: boolean;
|
|
11549
11556
|
/**
|
|
11550
11557
|
* The threshold for this filter.
|
|
11551
11558
|
*/
|
|
@@ -11568,6 +11575,10 @@ export declare namespace bedrock {
|
|
|
11568
11575
|
* A managed words config.
|
|
11569
11576
|
*/
|
|
11570
11577
|
interface GuardrailManagedWordsConfig {
|
|
11578
|
+
inputAction?: enums.bedrock.GuardrailWordAction;
|
|
11579
|
+
inputEnabled?: boolean;
|
|
11580
|
+
outputAction?: enums.bedrock.GuardrailWordAction;
|
|
11581
|
+
outputEnabled?: boolean;
|
|
11571
11582
|
/**
|
|
11572
11583
|
* The managed word type to configure for the guardrail.
|
|
11573
11584
|
*/
|
|
@@ -11581,6 +11592,10 @@ export declare namespace bedrock {
|
|
|
11581
11592
|
* Configure guardrail action when the PII entity is detected.
|
|
11582
11593
|
*/
|
|
11583
11594
|
action: enums.bedrock.GuardrailSensitiveInformationAction;
|
|
11595
|
+
inputAction?: enums.bedrock.GuardrailSensitiveInformationAction;
|
|
11596
|
+
inputEnabled?: boolean;
|
|
11597
|
+
outputAction?: enums.bedrock.GuardrailSensitiveInformationAction;
|
|
11598
|
+
outputEnabled?: boolean;
|
|
11584
11599
|
/**
|
|
11585
11600
|
* Configure guardrail type when the PII entity is detected.
|
|
11586
11601
|
*
|
|
@@ -11715,10 +11730,14 @@ export declare namespace bedrock {
|
|
|
11715
11730
|
* The regex description.
|
|
11716
11731
|
*/
|
|
11717
11732
|
description?: string;
|
|
11733
|
+
inputAction?: enums.bedrock.GuardrailSensitiveInformationAction;
|
|
11734
|
+
inputEnabled?: boolean;
|
|
11718
11735
|
/**
|
|
11719
11736
|
* The regex name.
|
|
11720
11737
|
*/
|
|
11721
11738
|
name: string;
|
|
11739
|
+
outputAction?: enums.bedrock.GuardrailSensitiveInformationAction;
|
|
11740
|
+
outputEnabled?: boolean;
|
|
11722
11741
|
/**
|
|
11723
11742
|
* The regex pattern.
|
|
11724
11743
|
*/
|
|
@@ -11749,10 +11768,14 @@ export declare namespace bedrock {
|
|
|
11749
11768
|
* List of text examples
|
|
11750
11769
|
*/
|
|
11751
11770
|
examples?: string[];
|
|
11771
|
+
inputAction?: enums.bedrock.GuardrailTopicAction;
|
|
11772
|
+
inputEnabled?: boolean;
|
|
11752
11773
|
/**
|
|
11753
11774
|
* Name of topic in topic policy
|
|
11754
11775
|
*/
|
|
11755
11776
|
name: string;
|
|
11777
|
+
outputAction?: enums.bedrock.GuardrailTopicAction;
|
|
11778
|
+
outputEnabled?: boolean;
|
|
11756
11779
|
/**
|
|
11757
11780
|
* Specifies to deny the topic.
|
|
11758
11781
|
*/
|
|
@@ -11771,6 +11794,10 @@ export declare namespace bedrock {
|
|
|
11771
11794
|
* A custom word config.
|
|
11772
11795
|
*/
|
|
11773
11796
|
interface GuardrailWordConfig {
|
|
11797
|
+
inputAction?: enums.bedrock.GuardrailWordAction;
|
|
11798
|
+
inputEnabled?: boolean;
|
|
11799
|
+
outputAction?: enums.bedrock.GuardrailWordAction;
|
|
11800
|
+
outputEnabled?: boolean;
|
|
11774
11801
|
/**
|
|
11775
11802
|
* The custom word text.
|
|
11776
11803
|
*/
|
|
@@ -11876,6 +11903,10 @@ export declare namespace bedrock {
|
|
|
11876
11903
|
* Contains the names of the fields to which to map information about the vector store.
|
|
11877
11904
|
*/
|
|
11878
11905
|
fieldMapping: outputs.bedrock.KnowledgeBaseMongoDbAtlasFieldMapping;
|
|
11906
|
+
/**
|
|
11907
|
+
* Name of a MongoDB Atlas text index.
|
|
11908
|
+
*/
|
|
11909
|
+
textIndexName?: string;
|
|
11879
11910
|
/**
|
|
11880
11911
|
* Name of a MongoDB Atlas index.
|
|
11881
11912
|
*/
|
|
@@ -12102,6 +12133,10 @@ export declare namespace bedrock {
|
|
|
12102
12133
|
* Contains the names of the fields to which to map information about the vector store.
|
|
12103
12134
|
*/
|
|
12104
12135
|
interface KnowledgeBaseRdsFieldMapping {
|
|
12136
|
+
/**
|
|
12137
|
+
* The name of the field in which Amazon Bedrock stores custom metadata about the vector store.
|
|
12138
|
+
*/
|
|
12139
|
+
customMetadataField?: string;
|
|
12105
12140
|
/**
|
|
12106
12141
|
* The name of the field in which Amazon Bedrock stores metadata about the vector store.
|
|
12107
12142
|
*/
|
|
@@ -24608,14 +24643,13 @@ export declare namespace ec2 {
|
|
|
24608
24643
|
ebsOptimized?: boolean;
|
|
24609
24644
|
/**
|
|
24610
24645
|
* Deprecated.
|
|
24611
|
-
* Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
24646
|
+
* Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
24612
24647
|
*/
|
|
24613
24648
|
elasticGpuSpecifications?: outputs.ec2.LaunchTemplateElasticGpuSpecification[];
|
|
24614
24649
|
/**
|
|
24615
24650
|
* Amazon Elastic Inference is no longer available.
|
|
24616
24651
|
* An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
24617
24652
|
* You cannot specify accelerators from different generations in the same request.
|
|
24618
|
-
* Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
24619
24653
|
*/
|
|
24620
24654
|
elasticInferenceAccelerators?: outputs.ec2.LaunchTemplateElasticInferenceAccelerator[];
|
|
24621
24655
|
/**
|
|
@@ -24789,7 +24823,7 @@ export declare namespace ec2 {
|
|
|
24789
24823
|
volumeType?: string;
|
|
24790
24824
|
}
|
|
24791
24825
|
/**
|
|
24792
|
-
* Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
24826
|
+
* Amazon Elastic Graphics reached end of life on January 8, 2024.
|
|
24793
24827
|
* Specifies a specification for an Elastic GPU for an Amazon EC2 launch template.
|
|
24794
24828
|
* ``ElasticGpuSpecification`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
24795
24829
|
*/
|
|
@@ -24800,7 +24834,8 @@ export declare namespace ec2 {
|
|
|
24800
24834
|
type?: string;
|
|
24801
24835
|
}
|
|
24802
24836
|
/**
|
|
24803
|
-
*
|
|
24837
|
+
* Amazon Elastic Inference is no longer available.
|
|
24838
|
+
* Specifies an elastic inference accelerator.
|
|
24804
24839
|
* ``LaunchTemplateElasticInferenceAccelerator`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
24805
24840
|
*/
|
|
24806
24841
|
interface LaunchTemplateElasticInferenceAccelerator {
|
|
@@ -24943,7 +24978,6 @@ export declare namespace ec2 {
|
|
|
24943
24978
|
* The accelerator types that must be on the instance type.
|
|
24944
24979
|
* + For instance types with FPGA accelerators, specify ``fpga``.
|
|
24945
24980
|
* + For instance types with GPU accelerators, specify ``gpu``.
|
|
24946
|
-
* + For instance types with Inference accelerators, specify ``inference``.
|
|
24947
24981
|
*
|
|
24948
24982
|
* Default: Any accelerator type
|
|
24949
24983
|
*/
|
|
@@ -25248,7 +25282,7 @@ export declare namespace ec2 {
|
|
|
25248
25282
|
*/
|
|
25249
25283
|
description?: string;
|
|
25250
25284
|
/**
|
|
25251
|
-
* The device index for the network interface attachment. If the network interface is of type ``interface``, you must specify a device index.
|
|
25285
|
+
* The device index for the network interface attachment. The primary network interface has a device index of 0. If the network interface is of type ``interface``, you must specify a device index.
|
|
25252
25286
|
* If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
|
|
25253
25287
|
*/
|
|
25254
25288
|
deviceIndex?: number;
|
|
@@ -25333,9 +25367,13 @@ export declare namespace ec2 {
|
|
|
25333
25367
|
*/
|
|
25334
25368
|
min?: number;
|
|
25335
25369
|
}
|
|
25370
|
+
/**
|
|
25371
|
+
* Contains settings for the network performance options for the instance.
|
|
25372
|
+
*/
|
|
25336
25373
|
interface LaunchTemplateNetworkPerformanceOptions {
|
|
25337
25374
|
/**
|
|
25338
|
-
*
|
|
25375
|
+
* Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:
|
|
25376
|
+
* + default This option uses the standard bandwidth configuration for your instance type. + vpc-1 This option boosts your networking baseline bandwidth and reduces your EBS baseline bandwidth. + ebs-1 This option boosts your EBS baseline bandwidth and reduces your networking baseline bandwidth.
|
|
25339
25377
|
*/
|
|
25340
25378
|
bandwidthWeighting?: string;
|
|
25341
25379
|
}
|
|
@@ -31387,6 +31425,34 @@ export declare namespace elasticloadbalancingv2 {
|
|
|
31387
31425
|
}
|
|
31388
31426
|
}
|
|
31389
31427
|
export declare namespace emr {
|
|
31428
|
+
interface StepHadoopJarStepConfig {
|
|
31429
|
+
/**
|
|
31430
|
+
* A list of command line arguments passed to the JAR file's main function when executed.
|
|
31431
|
+
*/
|
|
31432
|
+
args?: string[];
|
|
31433
|
+
/**
|
|
31434
|
+
* A path to a JAR file run during the step.
|
|
31435
|
+
*/
|
|
31436
|
+
jar: string;
|
|
31437
|
+
/**
|
|
31438
|
+
* The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file.
|
|
31439
|
+
*/
|
|
31440
|
+
mainClass?: string;
|
|
31441
|
+
/**
|
|
31442
|
+
* A list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.
|
|
31443
|
+
*/
|
|
31444
|
+
stepProperties?: outputs.emr.StepKeyValue[];
|
|
31445
|
+
}
|
|
31446
|
+
interface StepKeyValue {
|
|
31447
|
+
/**
|
|
31448
|
+
* The unique identifier of a key-value pair.
|
|
31449
|
+
*/
|
|
31450
|
+
key?: string;
|
|
31451
|
+
/**
|
|
31452
|
+
* The value part of the identified key.
|
|
31453
|
+
*/
|
|
31454
|
+
value?: string;
|
|
31455
|
+
}
|
|
31390
31456
|
}
|
|
31391
31457
|
export declare namespace emrcontainers {
|
|
31392
31458
|
interface VirtualClusterContainerInfo {
|
|
@@ -45856,6 +45922,9 @@ export declare namespace lex {
|
|
|
45856
45922
|
logPrefix: string;
|
|
45857
45923
|
}
|
|
45858
45924
|
interface BotCompositeSlotTypeSetting {
|
|
45925
|
+
/**
|
|
45926
|
+
* Subslots in the composite slot.
|
|
45927
|
+
*/
|
|
45859
45928
|
subSlots?: outputs.lex.BotSubSlotTypeComposition[];
|
|
45860
45929
|
}
|
|
45861
45930
|
interface BotCondition {
|
|
@@ -46779,7 +46848,13 @@ export declare namespace lex {
|
|
|
46779
46848
|
timeoutInSeconds: number;
|
|
46780
46849
|
}
|
|
46781
46850
|
interface BotSubSlotTypeComposition {
|
|
46851
|
+
/**
|
|
46852
|
+
* Name of a constituent sub slot inside a composite slot.
|
|
46853
|
+
*/
|
|
46782
46854
|
name: string;
|
|
46855
|
+
/**
|
|
46856
|
+
* The unique identifier assigned to a slot type. This refers to either a built-in slot type or the unique slotTypeId of a custom slot type.
|
|
46857
|
+
*/
|
|
46783
46858
|
slotTypeId: string;
|
|
46784
46859
|
}
|
|
46785
46860
|
interface BotTag {
|
|
@@ -50786,7 +50861,13 @@ export declare namespace memorydb {
|
|
|
50786
50861
|
export declare namespace msk {
|
|
50787
50862
|
interface ClusterBrokerLogs {
|
|
50788
50863
|
cloudWatchLogs?: outputs.msk.ClusterCloudWatchLogs;
|
|
50864
|
+
/**
|
|
50865
|
+
* Details of the Kinesis Data Firehose delivery stream that is the destination for broker logs.
|
|
50866
|
+
*/
|
|
50789
50867
|
firehose?: outputs.msk.ClusterFirehose;
|
|
50868
|
+
/**
|
|
50869
|
+
* Details of the Amazon S3 destination for broker logs.
|
|
50870
|
+
*/
|
|
50790
50871
|
s3?: outputs.msk.ClusterS3;
|
|
50791
50872
|
}
|
|
50792
50873
|
interface ClusterBrokerNodeGroupInfo {
|
|
@@ -50820,27 +50901,63 @@ export declare namespace msk {
|
|
|
50820
50901
|
storageInfo?: outputs.msk.ClusterStorageInfo;
|
|
50821
50902
|
}
|
|
50822
50903
|
interface ClusterClientAuthentication {
|
|
50904
|
+
/**
|
|
50905
|
+
* Details for client authentication using SASL. To turn on SASL, you must also turn on `EncryptionInTransit` by setting `inCluster` to true. You must set `clientBroker` to either `TLS` or `TLS_PLAINTEXT` . If you choose `TLS_PLAINTEXT` , then you must also set `unauthenticated` to true.
|
|
50906
|
+
*/
|
|
50823
50907
|
sasl?: outputs.msk.ClusterSasl;
|
|
50908
|
+
/**
|
|
50909
|
+
* Details for ClientAuthentication using TLS. To turn on TLS access control, you must also turn on `EncryptionInTransit` by setting `inCluster` to true and `clientBroker` to `TLS` .
|
|
50910
|
+
*/
|
|
50824
50911
|
tls?: outputs.msk.ClusterTls;
|
|
50912
|
+
/**
|
|
50913
|
+
* Details for ClientAuthentication using no authentication.
|
|
50914
|
+
*/
|
|
50825
50915
|
unauthenticated?: outputs.msk.ClusterUnauthenticated;
|
|
50826
50916
|
}
|
|
50827
50917
|
interface ClusterCloudWatchLogs {
|
|
50918
|
+
/**
|
|
50919
|
+
* Specifies whether broker logs get sent to the specified CloudWatch Logs destination.
|
|
50920
|
+
*/
|
|
50828
50921
|
enabled: boolean;
|
|
50922
|
+
/**
|
|
50923
|
+
* The CloudWatch log group that is the destination for broker logs.
|
|
50924
|
+
*/
|
|
50829
50925
|
logGroup?: string;
|
|
50830
50926
|
}
|
|
50831
50927
|
interface ClusterConfigurationInfo {
|
|
50928
|
+
/**
|
|
50929
|
+
* ARN of the configuration to use.
|
|
50930
|
+
*/
|
|
50832
50931
|
arn: string;
|
|
50932
|
+
/**
|
|
50933
|
+
* The revision of the configuration to use.
|
|
50934
|
+
*/
|
|
50833
50935
|
revision: number;
|
|
50834
50936
|
}
|
|
50835
50937
|
interface ClusterConnectivityInfo {
|
|
50938
|
+
/**
|
|
50939
|
+
* Access control settings for the cluster's brokers.
|
|
50940
|
+
*/
|
|
50836
50941
|
publicAccess?: outputs.msk.ClusterPublicAccess;
|
|
50942
|
+
/**
|
|
50943
|
+
* VPC connection control settings for brokers.
|
|
50944
|
+
*/
|
|
50837
50945
|
vpcConnectivity?: outputs.msk.ClusterVpcConnectivity;
|
|
50838
50946
|
}
|
|
50839
50947
|
interface ClusterEbsStorageInfo {
|
|
50948
|
+
/**
|
|
50949
|
+
* EBS volume provisioned throughput information.
|
|
50950
|
+
*/
|
|
50840
50951
|
provisionedThroughput?: outputs.msk.ClusterProvisionedThroughput;
|
|
50952
|
+
/**
|
|
50953
|
+
* The size in GiB of the EBS volume for the data drive on each broker node.
|
|
50954
|
+
*/
|
|
50841
50955
|
volumeSize?: number;
|
|
50842
50956
|
}
|
|
50843
50957
|
interface ClusterEncryptionAtRest {
|
|
50958
|
+
/**
|
|
50959
|
+
* The ARN of the Amazon KMS key for encrypting data at rest. If you don't specify a KMS key, MSK creates one for you and uses it.
|
|
50960
|
+
*/
|
|
50844
50961
|
dataVolumeKmsKeyId: string;
|
|
50845
50962
|
}
|
|
50846
50963
|
interface ClusterEncryptionInTransit {
|
|
@@ -50862,6 +50979,9 @@ export declare namespace msk {
|
|
|
50862
50979
|
inCluster?: boolean;
|
|
50863
50980
|
}
|
|
50864
50981
|
interface ClusterEncryptionInfo {
|
|
50982
|
+
/**
|
|
50983
|
+
* The data-volume encryption details.
|
|
50984
|
+
*/
|
|
50865
50985
|
encryptionAtRest?: outputs.msk.ClusterEncryptionAtRest;
|
|
50866
50986
|
/**
|
|
50867
50987
|
* The details for encryption in transit.
|
|
@@ -50869,75 +50989,165 @@ export declare namespace msk {
|
|
|
50869
50989
|
encryptionInTransit?: outputs.msk.ClusterEncryptionInTransit;
|
|
50870
50990
|
}
|
|
50871
50991
|
interface ClusterFirehose {
|
|
50992
|
+
/**
|
|
50993
|
+
* The Kinesis Data Firehose delivery stream that is the destination for broker logs.
|
|
50994
|
+
*/
|
|
50872
50995
|
deliveryStream?: string;
|
|
50996
|
+
/**
|
|
50997
|
+
* Specifies whether broker logs get send to the specified Kinesis Data Firehose delivery stream.
|
|
50998
|
+
*/
|
|
50873
50999
|
enabled: boolean;
|
|
50874
51000
|
}
|
|
50875
51001
|
interface ClusterIam {
|
|
51002
|
+
/**
|
|
51003
|
+
* SASL/IAM authentication is enabled or not.
|
|
51004
|
+
*/
|
|
50876
51005
|
enabled: boolean;
|
|
50877
51006
|
}
|
|
50878
51007
|
interface ClusterJmxExporter {
|
|
51008
|
+
/**
|
|
51009
|
+
* Indicates whether you want to enable or disable the JMX Exporter.
|
|
51010
|
+
*/
|
|
50879
51011
|
enabledInBroker: boolean;
|
|
50880
51012
|
}
|
|
50881
51013
|
interface ClusterLoggingInfo {
|
|
51014
|
+
/**
|
|
51015
|
+
* You can configure your MSK cluster to send broker logs to different destination types. This configuration specifies the details of these destinations.
|
|
51016
|
+
*/
|
|
50882
51017
|
brokerLogs: outputs.msk.ClusterBrokerLogs;
|
|
50883
51018
|
}
|
|
50884
51019
|
interface ClusterNodeExporter {
|
|
51020
|
+
/**
|
|
51021
|
+
* Indicates whether you want to enable or disable the Node Exporter.
|
|
51022
|
+
*/
|
|
50885
51023
|
enabledInBroker: boolean;
|
|
50886
51024
|
}
|
|
50887
51025
|
interface ClusterOpenMonitoring {
|
|
51026
|
+
/**
|
|
51027
|
+
* Prometheus exporter settings.
|
|
51028
|
+
*/
|
|
50888
51029
|
prometheus: outputs.msk.ClusterPrometheus;
|
|
50889
51030
|
}
|
|
50890
51031
|
interface ClusterPrometheus {
|
|
51032
|
+
/**
|
|
51033
|
+
* Indicates whether you want to enable or disable the JMX Exporter.
|
|
51034
|
+
*/
|
|
50891
51035
|
jmxExporter?: outputs.msk.ClusterJmxExporter;
|
|
51036
|
+
/**
|
|
51037
|
+
* Indicates whether you want to enable or disable the Node Exporter.
|
|
51038
|
+
*/
|
|
50892
51039
|
nodeExporter?: outputs.msk.ClusterNodeExporter;
|
|
50893
51040
|
}
|
|
50894
51041
|
interface ClusterProvisionedThroughput {
|
|
51042
|
+
/**
|
|
51043
|
+
* Provisioned throughput is on or off.
|
|
51044
|
+
*/
|
|
50895
51045
|
enabled?: boolean;
|
|
51046
|
+
/**
|
|
51047
|
+
* Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
|
|
51048
|
+
*/
|
|
50896
51049
|
volumeThroughput?: number;
|
|
50897
51050
|
}
|
|
50898
51051
|
interface ClusterPublicAccess {
|
|
51052
|
+
/**
|
|
51053
|
+
* DISABLED means that public access is turned off. SERVICE_PROVIDED_EIPS means that public access is turned on.
|
|
51054
|
+
*/
|
|
50899
51055
|
type?: string;
|
|
50900
51056
|
}
|
|
50901
51057
|
interface ClusterS3 {
|
|
51058
|
+
/**
|
|
51059
|
+
* The name of the S3 bucket that is the destination for broker logs.
|
|
51060
|
+
*/
|
|
50902
51061
|
bucket?: string;
|
|
51062
|
+
/**
|
|
51063
|
+
* Specifies whether broker logs get sent to the specified Amazon S3 destination.
|
|
51064
|
+
*/
|
|
50903
51065
|
enabled: boolean;
|
|
51066
|
+
/**
|
|
51067
|
+
* The S3 prefix that is the destination for broker logs.
|
|
51068
|
+
*/
|
|
50904
51069
|
prefix?: string;
|
|
50905
51070
|
}
|
|
50906
51071
|
interface ClusterSasl {
|
|
51072
|
+
/**
|
|
51073
|
+
* Details for ClientAuthentication using IAM.
|
|
51074
|
+
*/
|
|
50907
51075
|
iam?: outputs.msk.ClusterIam;
|
|
51076
|
+
/**
|
|
51077
|
+
* Details for SASL/SCRAM client authentication.
|
|
51078
|
+
*/
|
|
50908
51079
|
scram?: outputs.msk.ClusterScram;
|
|
50909
51080
|
}
|
|
50910
51081
|
interface ClusterScram {
|
|
51082
|
+
/**
|
|
51083
|
+
* SASL/SCRAM authentication is enabled or not.
|
|
51084
|
+
*/
|
|
50911
51085
|
enabled: boolean;
|
|
50912
51086
|
}
|
|
50913
51087
|
interface ClusterStorageInfo {
|
|
51088
|
+
/**
|
|
51089
|
+
* EBS volume information.
|
|
51090
|
+
*/
|
|
50914
51091
|
ebsStorageInfo?: outputs.msk.ClusterEbsStorageInfo;
|
|
50915
51092
|
}
|
|
50916
51093
|
interface ClusterTls {
|
|
51094
|
+
/**
|
|
51095
|
+
* List of AWS Private CA ARNs.
|
|
51096
|
+
*/
|
|
50917
51097
|
certificateAuthorityArnList?: string[];
|
|
51098
|
+
/**
|
|
51099
|
+
* TLS authentication is enabled or not.
|
|
51100
|
+
*/
|
|
50918
51101
|
enabled?: boolean;
|
|
50919
51102
|
}
|
|
50920
51103
|
interface ClusterUnauthenticated {
|
|
51104
|
+
/**
|
|
51105
|
+
* Unauthenticated is enabled or not.
|
|
51106
|
+
*/
|
|
50921
51107
|
enabled: boolean;
|
|
50922
51108
|
}
|
|
50923
51109
|
interface ClusterVpcConnectivity {
|
|
51110
|
+
/**
|
|
51111
|
+
* VPC connection control settings for brokers.
|
|
51112
|
+
*/
|
|
50924
51113
|
clientAuthentication?: outputs.msk.ClusterVpcConnectivityClientAuthentication;
|
|
50925
51114
|
}
|
|
50926
51115
|
interface ClusterVpcConnectivityClientAuthentication {
|
|
51116
|
+
/**
|
|
51117
|
+
* Details for VpcConnectivity ClientAuthentication using SASL.
|
|
51118
|
+
*/
|
|
50927
51119
|
sasl?: outputs.msk.ClusterVpcConnectivitySasl;
|
|
51120
|
+
/**
|
|
51121
|
+
* Details for VpcConnectivity ClientAuthentication using TLS.
|
|
51122
|
+
*/
|
|
50928
51123
|
tls?: outputs.msk.ClusterVpcConnectivityTls;
|
|
50929
51124
|
}
|
|
50930
51125
|
interface ClusterVpcConnectivityIam {
|
|
51126
|
+
/**
|
|
51127
|
+
* SASL/IAM authentication is enabled or not.
|
|
51128
|
+
*/
|
|
50931
51129
|
enabled: boolean;
|
|
50932
51130
|
}
|
|
50933
51131
|
interface ClusterVpcConnectivitySasl {
|
|
51132
|
+
/**
|
|
51133
|
+
* Details for ClientAuthentication using IAM for VpcConnectivity.
|
|
51134
|
+
*/
|
|
50934
51135
|
iam?: outputs.msk.ClusterVpcConnectivityIam;
|
|
51136
|
+
/**
|
|
51137
|
+
* Details for SASL/SCRAM client authentication for VpcConnectivity.
|
|
51138
|
+
*/
|
|
50935
51139
|
scram?: outputs.msk.ClusterVpcConnectivityScram;
|
|
50936
51140
|
}
|
|
50937
51141
|
interface ClusterVpcConnectivityScram {
|
|
51142
|
+
/**
|
|
51143
|
+
* SASL/SCRAM authentication is enabled or not.
|
|
51144
|
+
*/
|
|
50938
51145
|
enabled: boolean;
|
|
50939
51146
|
}
|
|
50940
51147
|
interface ClusterVpcConnectivityTls {
|
|
51148
|
+
/**
|
|
51149
|
+
* TLS authentication is enabled or not.
|
|
51150
|
+
*/
|
|
50941
51151
|
enabled: boolean;
|
|
50942
51152
|
}
|
|
50943
51153
|
interface ConfigurationLatestRevision {
|
|
@@ -51084,12 +51294,21 @@ export declare namespace msk {
|
|
|
51084
51294
|
topicsToReplicate: string[];
|
|
51085
51295
|
}
|
|
51086
51296
|
interface ServerlessClusterClientAuthentication {
|
|
51297
|
+
/**
|
|
51298
|
+
* Details for client authentication using SASL. To turn on SASL, you must also turn on `EncryptionInTransit` by setting `inCluster` to true. You must set `clientBroker` to either `TLS` or `TLS_PLAINTEXT` . If you choose `TLS_PLAINTEXT` , then you must also set `unauthenticated` to true.
|
|
51299
|
+
*/
|
|
51087
51300
|
sasl: outputs.msk.ServerlessClusterSasl;
|
|
51088
51301
|
}
|
|
51089
51302
|
interface ServerlessClusterIam {
|
|
51303
|
+
/**
|
|
51304
|
+
* SASL/IAM authentication is enabled or not.
|
|
51305
|
+
*/
|
|
51090
51306
|
enabled: boolean;
|
|
51091
51307
|
}
|
|
51092
51308
|
interface ServerlessClusterSasl {
|
|
51309
|
+
/**
|
|
51310
|
+
* Details for ClientAuthentication using IAM.
|
|
51311
|
+
*/
|
|
51093
51312
|
iam: outputs.msk.ServerlessClusterIam;
|
|
51094
51313
|
}
|
|
51095
51314
|
interface ServerlessClusterVpcConfig {
|
|
@@ -87714,6 +87933,19 @@ export declare namespace s3outposts {
|
|
|
87714
87933
|
}
|
|
87715
87934
|
}
|
|
87716
87935
|
export declare namespace s3tables {
|
|
87936
|
+
/**
|
|
87937
|
+
* Specifies encryption settings for the table bucket
|
|
87938
|
+
*/
|
|
87939
|
+
interface TableBucketEncryptionConfiguration {
|
|
87940
|
+
/**
|
|
87941
|
+
* ARN of the KMS key to use for encryption
|
|
87942
|
+
*/
|
|
87943
|
+
kmsKeyArn?: string;
|
|
87944
|
+
/**
|
|
87945
|
+
* Server-side encryption algorithm
|
|
87946
|
+
*/
|
|
87947
|
+
sseAlgorithm?: enums.s3tables.TableBucketEncryptionConfigurationSseAlgorithm;
|
|
87948
|
+
}
|
|
87717
87949
|
/**
|
|
87718
87950
|
* A policy document containing permissions to add to the specified table bucket. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
|
|
87719
87951
|
*/
|
|
@@ -94008,6 +94240,18 @@ export declare namespace ses {
|
|
|
94008
94240
|
interface MailManagerIngressPointIngressPointConfiguration1Properties {
|
|
94009
94241
|
secretArn: string;
|
|
94010
94242
|
}
|
|
94243
|
+
interface MailManagerIngressPointNetworkConfiguration0Properties {
|
|
94244
|
+
publicNetworkConfiguration: outputs.ses.MailManagerIngressPointPublicNetworkConfiguration;
|
|
94245
|
+
}
|
|
94246
|
+
interface MailManagerIngressPointNetworkConfiguration1Properties {
|
|
94247
|
+
privateNetworkConfiguration: outputs.ses.MailManagerIngressPointPrivateNetworkConfiguration;
|
|
94248
|
+
}
|
|
94249
|
+
interface MailManagerIngressPointPrivateNetworkConfiguration {
|
|
94250
|
+
vpcEndpointId: string;
|
|
94251
|
+
}
|
|
94252
|
+
interface MailManagerIngressPointPublicNetworkConfiguration {
|
|
94253
|
+
ipType: any;
|
|
94254
|
+
}
|
|
94011
94255
|
interface MailManagerRelayNoAuthentication {
|
|
94012
94256
|
}
|
|
94013
94257
|
interface MailManagerRelayRelayAuthentication0Properties {
|
|
@@ -94095,12 +94339,15 @@ export declare namespace ses {
|
|
|
94095
94339
|
deliverToQBusiness: outputs.ses.MailManagerRuleSetDeliverToQBusinessAction;
|
|
94096
94340
|
}
|
|
94097
94341
|
interface MailManagerRuleSetRuleBooleanExpression {
|
|
94098
|
-
evaluate: outputs.ses.
|
|
94342
|
+
evaluate: outputs.ses.MailManagerRuleSetRuleBooleanToEvaluate0Properties | outputs.ses.MailManagerRuleSetRuleBooleanToEvaluate1Properties;
|
|
94099
94343
|
operator: enums.ses.MailManagerRuleSetRuleBooleanOperator;
|
|
94100
94344
|
}
|
|
94101
|
-
interface
|
|
94345
|
+
interface MailManagerRuleSetRuleBooleanToEvaluate0Properties {
|
|
94102
94346
|
attribute: enums.ses.MailManagerRuleSetRuleBooleanEmailAttribute;
|
|
94103
94347
|
}
|
|
94348
|
+
interface MailManagerRuleSetRuleBooleanToEvaluate1Properties {
|
|
94349
|
+
analysis: outputs.ses.MailManagerRuleSetAnalysis;
|
|
94350
|
+
}
|
|
94104
94351
|
interface MailManagerRuleSetRuleCondition0Properties {
|
|
94105
94352
|
booleanExpression: outputs.ses.MailManagerRuleSetRuleBooleanExpression;
|
|
94106
94353
|
}
|
|
@@ -94140,7 +94387,7 @@ export declare namespace ses {
|
|
|
94140
94387
|
attribute: enums.ses.MailManagerRuleSetRuleNumberEmailAttribute;
|
|
94141
94388
|
}
|
|
94142
94389
|
interface MailManagerRuleSetRuleStringExpression {
|
|
94143
|
-
evaluate: outputs.ses.MailManagerRuleSetRuleStringToEvaluate0Properties | outputs.ses.MailManagerRuleSetRuleStringToEvaluate1Properties;
|
|
94390
|
+
evaluate: outputs.ses.MailManagerRuleSetRuleStringToEvaluate0Properties | outputs.ses.MailManagerRuleSetRuleStringToEvaluate1Properties | outputs.ses.MailManagerRuleSetRuleStringToEvaluate2Properties;
|
|
94144
94391
|
operator: enums.ses.MailManagerRuleSetRuleStringOperator;
|
|
94145
94392
|
values: string[];
|
|
94146
94393
|
}
|
|
@@ -94150,6 +94397,9 @@ export declare namespace ses {
|
|
|
94150
94397
|
interface MailManagerRuleSetRuleStringToEvaluate1Properties {
|
|
94151
94398
|
mimeHeaderAttribute: string;
|
|
94152
94399
|
}
|
|
94400
|
+
interface MailManagerRuleSetRuleStringToEvaluate2Properties {
|
|
94401
|
+
analysis: outputs.ses.MailManagerRuleSetAnalysis;
|
|
94402
|
+
}
|
|
94153
94403
|
interface MailManagerRuleSetRuleVerdictExpression {
|
|
94154
94404
|
evaluate: outputs.ses.MailManagerRuleSetRuleVerdictToEvaluate0Properties | outputs.ses.MailManagerRuleSetRuleVerdictToEvaluate1Properties;
|
|
94155
94405
|
operator: enums.ses.MailManagerRuleSetRuleVerdictOperator;
|
|
@@ -94191,14 +94441,25 @@ export declare namespace ses {
|
|
|
94191
94441
|
operator: enums.ses.MailManagerTrafficPolicyIngressIpOperator;
|
|
94192
94442
|
values: string[];
|
|
94193
94443
|
}
|
|
94444
|
+
interface MailManagerTrafficPolicyIngressIpv6Expression {
|
|
94445
|
+
evaluate: outputs.ses.MailManagerTrafficPolicyIngressIpv6ToEvaluateProperties;
|
|
94446
|
+
operator: enums.ses.MailManagerTrafficPolicyIngressIpOperator;
|
|
94447
|
+
values: string[];
|
|
94448
|
+
}
|
|
94449
|
+
interface MailManagerTrafficPolicyIngressIpv6ToEvaluateProperties {
|
|
94450
|
+
attribute: enums.ses.MailManagerTrafficPolicyIngressIpv6Attribute;
|
|
94451
|
+
}
|
|
94194
94452
|
interface MailManagerTrafficPolicyIngressStringExpression {
|
|
94195
|
-
evaluate: outputs.ses.
|
|
94453
|
+
evaluate: outputs.ses.MailManagerTrafficPolicyIngressStringToEvaluate0Properties | outputs.ses.MailManagerTrafficPolicyIngressStringToEvaluate1Properties;
|
|
94196
94454
|
operator: enums.ses.MailManagerTrafficPolicyIngressStringOperator;
|
|
94197
94455
|
values: string[];
|
|
94198
94456
|
}
|
|
94199
|
-
interface
|
|
94457
|
+
interface MailManagerTrafficPolicyIngressStringToEvaluate0Properties {
|
|
94200
94458
|
attribute: enums.ses.MailManagerTrafficPolicyIngressStringEmailAttribute;
|
|
94201
94459
|
}
|
|
94460
|
+
interface MailManagerTrafficPolicyIngressStringToEvaluate1Properties {
|
|
94461
|
+
analysis: outputs.ses.MailManagerTrafficPolicyIngressAnalysis;
|
|
94462
|
+
}
|
|
94202
94463
|
interface MailManagerTrafficPolicyIngressTlsProtocolExpression {
|
|
94203
94464
|
evaluate: outputs.ses.MailManagerTrafficPolicyIngressTlsProtocolToEvaluateProperties;
|
|
94204
94465
|
operator: enums.ses.MailManagerTrafficPolicyIngressTlsProtocolOperator;
|
|
@@ -94214,9 +94475,12 @@ export declare namespace ses {
|
|
|
94214
94475
|
ipExpression: outputs.ses.MailManagerTrafficPolicyIngressIpv4Expression;
|
|
94215
94476
|
}
|
|
94216
94477
|
interface MailManagerTrafficPolicyPolicyCondition2Properties {
|
|
94217
|
-
|
|
94478
|
+
ipv6Expression: outputs.ses.MailManagerTrafficPolicyIngressIpv6Expression;
|
|
94218
94479
|
}
|
|
94219
94480
|
interface MailManagerTrafficPolicyPolicyCondition3Properties {
|
|
94481
|
+
tlsExpression: outputs.ses.MailManagerTrafficPolicyIngressTlsProtocolExpression;
|
|
94482
|
+
}
|
|
94483
|
+
interface MailManagerTrafficPolicyPolicyCondition4Properties {
|
|
94220
94484
|
booleanExpression: outputs.ses.MailManagerTrafficPolicyIngressBooleanExpression;
|
|
94221
94485
|
}
|
|
94222
94486
|
interface MailManagerTrafficPolicyPolicyStatement {
|
|
@@ -94227,7 +94491,7 @@ export declare namespace ses {
|
|
|
94227
94491
|
/**
|
|
94228
94492
|
* The list of conditions to apply to incoming messages for filtering email traffic.
|
|
94229
94493
|
*/
|
|
94230
|
-
conditions: (outputs.ses.MailManagerTrafficPolicyPolicyCondition0Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition1Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition2Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition3Properties)[];
|
|
94494
|
+
conditions: (outputs.ses.MailManagerTrafficPolicyPolicyCondition0Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition1Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition2Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition3Properties | outputs.ses.MailManagerTrafficPolicyPolicyCondition4Properties)[];
|
|
94231
94495
|
}
|
|
94232
94496
|
/**
|
|
94233
94497
|
* The content of the email, composed of a subject line, an HTML part, and a text-only part
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAi7kBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;;QACrD,uCACO,GAAG,KACN,qBAAqB,EAAE,MAAA,CAAC,GAAG,CAAC,qBAAqB,CAAC,mCAAI,CAAC,IACzD;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}
|