@pulumi/aws-native 1.38.0-alpha.1761716526 → 1.38.0-alpha.1761739268
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/amazonmq/broker.d.ts +28 -35
- package/amazonmq/broker.js.map +1 -1
- package/amazonmq/getBroker.d.ts +6 -13
- package/amazonmq/getBroker.js.map +1 -1
- package/batch/jobDefinition.d.ts +2 -0
- package/batch/jobDefinition.js +2 -0
- package/batch/jobDefinition.js.map +1 -1
- package/datazone/connection.d.ts +12 -4
- package/datazone/connection.js +3 -4
- package/datazone/connection.js.map +1 -1
- package/ec2/capacityManagerDataExport.d.ts +80 -0
- package/ec2/capacityManagerDataExport.js +77 -0
- package/ec2/capacityManagerDataExport.js.map +1 -0
- package/ec2/getCapacityManagerDataExport.d.ts +32 -0
- package/ec2/getCapacityManagerDataExport.js +28 -0
- package/ec2/getCapacityManagerDataExport.js.map +1 -0
- package/ec2/index.d.ts +6 -0
- package/ec2/index.js +13 -6
- package/ec2/index.js.map +1 -1
- package/elasticloadbalancingv2/loadBalancer.d.ts +2 -2
- package/imagebuilder/image.d.ts +8 -0
- package/imagebuilder/image.js +2 -0
- package/imagebuilder/image.js.map +1 -1
- package/networkfirewall/firewall.d.ts +1 -0
- package/networkfirewall/firewall.js +2 -0
- package/networkfirewall/firewall.js.map +1 -1
- package/networkfirewall/getFirewall.d.ts +1 -0
- package/networkfirewall/getFirewall.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/rtbfabric/getLink.d.ts +30 -0
- package/rtbfabric/getLink.js +28 -0
- package/rtbfabric/getLink.js.map +1 -0
- package/rtbfabric/index.d.ts +6 -0
- package/rtbfabric/index.js +8 -1
- package/rtbfabric/index.js.map +1 -1
- package/rtbfabric/link.d.ts +56 -0
- package/rtbfabric/link.js +89 -0
- package/rtbfabric/link.js.map +1 -0
- package/transfer/connector.d.ts +20 -2
- package/transfer/connector.js +6 -3
- package/transfer/connector.js.map +1 -1
- package/transfer/getConnector.d.ts +10 -0
- package/transfer/getConnector.js.map +1 -1
- package/types/enums/amazonmq/index.d.ts +4 -12
- package/types/enums/amazonmq/index.js.map +1 -1
- package/types/enums/bedrockagentcore/index.d.ts +1 -0
- package/types/enums/bedrockagentcore/index.js +1 -0
- package/types/enums/bedrockagentcore/index.js.map +1 -1
- package/types/enums/ec2/index.d.ts +15 -0
- package/types/enums/ec2/index.js +9 -2
- package/types/enums/ec2/index.js.map +1 -1
- package/types/enums/ecs/index.d.ts +10 -0
- package/types/enums/ecs/index.js +9 -1
- package/types/enums/ecs/index.js.map +1 -1
- package/types/enums/networkfirewall/index.d.ts +2 -0
- package/types/enums/networkfirewall/index.js +2 -0
- package/types/enums/networkfirewall/index.js.map +1 -1
- package/types/enums/rtbfabric/index.d.ts +33 -0
- package/types/enums/rtbfabric/index.js +30 -1
- package/types/enums/rtbfabric/index.js.map +1 -1
- package/types/enums/sagemaker/index.d.ts +2 -169
- package/types/enums/sagemaker/index.js +3 -166
- package/types/enums/sagemaker/index.js.map +1 -1
- package/types/enums/transfer/index.d.ts +11 -0
- package/types/enums/transfer/index.js +10 -1
- package/types/enums/transfer/index.js.map +1 -1
- package/types/input.d.ts +109 -48
- package/types/output.d.ts +109 -48
- package/types/output.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -714,7 +714,7 @@ export declare namespace aiops {
|
|
|
714
714
|
export declare namespace amazonmq {
|
|
715
715
|
interface BrokerConfigurationId {
|
|
716
716
|
/**
|
|
717
|
-
* The unique ID that Amazon MQ generates for the configuration.
|
|
717
|
+
* Required. The unique ID that Amazon MQ generates for the configuration.
|
|
718
718
|
*/
|
|
719
719
|
id: string;
|
|
720
720
|
/**
|
|
@@ -736,49 +736,16 @@ export declare namespace amazonmq {
|
|
|
736
736
|
useAwsOwnedKey: boolean;
|
|
737
737
|
}
|
|
738
738
|
interface BrokerLdapServerMetadata {
|
|
739
|
-
/**
|
|
740
|
-
* Specifies the location of the LDAP server such as AWS Directory Service for Microsoft Active Directory . Optional failover server.
|
|
741
|
-
*/
|
|
742
739
|
hosts: string[];
|
|
743
|
-
/**
|
|
744
|
-
* The distinguished name of the node in the directory information tree (DIT) to search for roles or groups. For example, `ou=group` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
|
|
745
|
-
*/
|
|
746
740
|
roleBase: string;
|
|
747
|
-
/**
|
|
748
|
-
* The group name attribute in a role entry whose value is the name of that role. For example, you can specify `cn` for a group entry's common name. If authentication succeeds, then the user is assigned the the value of the `cn` attribute for each role entry that they are a member of.
|
|
749
|
-
*/
|
|
750
741
|
roleName?: string;
|
|
751
|
-
/**
|
|
752
|
-
* The LDAP search filter used to find roles within the roleBase. The distinguished name of the user matched by userSearchMatching is substituted into the `{0}` placeholder in the search filter. The client's username is substituted into the `{1}` placeholder. For example, if you set this option to `(member=uid={1})` for the user janedoe, the search filter becomes `(member=uid=janedoe)` after string substitution. It matches all role entries that have a member attribute equal to `uid=janedoe` under the subtree selected by the `RoleBases` .
|
|
753
|
-
*/
|
|
754
742
|
roleSearchMatching: string;
|
|
755
|
-
/**
|
|
756
|
-
* The directory search scope for the role. If set to true, scope is to search the entire subtree.
|
|
757
|
-
*/
|
|
758
743
|
roleSearchSubtree?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* Service account password. A service account is an account in your LDAP server that has access to initiate a connection. For example, `cn=admin` , `dc=corp` , `dc=example` , `dc=com` .
|
|
761
|
-
*/
|
|
762
744
|
serviceAccountPassword?: string;
|
|
763
|
-
/**
|
|
764
|
-
* Service account username. A service account is an account in your LDAP server that has access to initiate a connection. For example, `cn=admin` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
|
|
765
|
-
*/
|
|
766
745
|
serviceAccountUsername: string;
|
|
767
|
-
/**
|
|
768
|
-
* Select a particular subtree of the directory information tree (DIT) to search for user entries. The subtree is specified by a DN, which specifies the base node of the subtree. For example, by setting this option to `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` , the search for user entries is restricted to the subtree beneath `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
|
|
769
|
-
*/
|
|
770
746
|
userBase: string;
|
|
771
|
-
/**
|
|
772
|
-
* The name of the LDAP attribute in the user's directory entry for the user's group membership. In some cases, user roles may be identified by the value of an attribute in the user's directory entry. The `UserRoleName` option allows you to provide the name of this attribute.
|
|
773
|
-
*/
|
|
774
747
|
userRoleName?: string;
|
|
775
|
-
/**
|
|
776
|
-
* The LDAP search filter used to find users within the `userBase` . The client's username is substituted into the `{0}` placeholder in the search filter. For example, if this option is set to `(uid={0})` and the received username is `janedoe` , the search filter becomes `(uid=janedoe)` after string substitution. It will result in matching an entry like `uid=janedoe` , `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
|
|
777
|
-
*/
|
|
778
748
|
userSearchMatching: string;
|
|
779
|
-
/**
|
|
780
|
-
* The directory search scope for the user. If set to true, scope is to search the entire subtree.
|
|
781
|
-
*/
|
|
782
749
|
userSearchSubtree?: boolean;
|
|
783
750
|
}
|
|
784
751
|
interface BrokerLogList {
|
|
@@ -808,7 +775,7 @@ export declare namespace amazonmq {
|
|
|
808
775
|
}
|
|
809
776
|
interface BrokerUser {
|
|
810
777
|
/**
|
|
811
|
-
* Enables access to the ActiveMQ
|
|
778
|
+
* Enables access to the ActiveMQ Web Console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
|
|
812
779
|
*/
|
|
813
780
|
consoleAccess?: boolean;
|
|
814
781
|
/**
|
|
@@ -816,7 +783,7 @@ export declare namespace amazonmq {
|
|
|
816
783
|
*/
|
|
817
784
|
groups?: string[];
|
|
818
785
|
/**
|
|
819
|
-
* The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).
|
|
786
|
+
* Required. The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).
|
|
820
787
|
*/
|
|
821
788
|
password: string;
|
|
822
789
|
/**
|
|
@@ -824,7 +791,10 @@ export declare namespace amazonmq {
|
|
|
824
791
|
*/
|
|
825
792
|
replicationUser?: boolean;
|
|
826
793
|
/**
|
|
827
|
-
* The username of the broker user.
|
|
794
|
+
* The username of the broker user. The following restrictions apply to broker usernames:
|
|
795
|
+
*
|
|
796
|
+
* - For Amazon MQ for ActiveMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
|
|
797
|
+
* - For Amazon MQ for RabbitMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores (- . _). This value must not contain a tilde (~) character. Amazon MQ prohibts using `guest` as a valid usename. This value must be 2-100 characters long.
|
|
828
798
|
*
|
|
829
799
|
* > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other AWS services, including CloudWatch Logs . Broker usernames are not intended to be used for private or sensitive data.
|
|
830
800
|
*/
|
|
@@ -10133,6 +10103,9 @@ export declare namespace batch {
|
|
|
10133
10103
|
*/
|
|
10134
10104
|
value?: string;
|
|
10135
10105
|
}
|
|
10106
|
+
interface JobDefinitionResourceRetentionPolicy {
|
|
10107
|
+
skipDeregisterOnUpdate?: boolean;
|
|
10108
|
+
}
|
|
10136
10109
|
interface JobDefinitionRetryStrategy {
|
|
10137
10110
|
/**
|
|
10138
10111
|
* The number of times to move a job to the `RUNNABLE` status. You can specify between 1 and 10 attempts. If the value of `attempts` is greater than one, the job is retried on failure the same number of attempts as the value.
|
|
@@ -24304,6 +24277,9 @@ export declare namespace datazone {
|
|
|
24304
24277
|
interface ConnectionPropertiesInput6Properties {
|
|
24305
24278
|
sparkGlueProperties: outputs.datazone.ConnectionSparkGluePropertiesInput;
|
|
24306
24279
|
}
|
|
24280
|
+
interface ConnectionPropertiesInput7Properties {
|
|
24281
|
+
s3Properties: outputs.datazone.ConnectionS3PropertiesInput;
|
|
24282
|
+
}
|
|
24307
24283
|
interface ConnectionRedshiftCredentials0Properties {
|
|
24308
24284
|
secretArn: string;
|
|
24309
24285
|
}
|
|
@@ -24334,6 +24310,19 @@ export declare namespace datazone {
|
|
|
24334
24310
|
interface ConnectionRedshiftStorageProperties1Properties {
|
|
24335
24311
|
workgroupName: string;
|
|
24336
24312
|
}
|
|
24313
|
+
/**
|
|
24314
|
+
* S3 Properties Input
|
|
24315
|
+
*/
|
|
24316
|
+
interface ConnectionS3PropertiesInput {
|
|
24317
|
+
/**
|
|
24318
|
+
* The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.
|
|
24319
|
+
*/
|
|
24320
|
+
s3AccessGrantLocationId?: string;
|
|
24321
|
+
/**
|
|
24322
|
+
* The Amazon S3 URI that's part of the Amazon S3 properties of a connection.
|
|
24323
|
+
*/
|
|
24324
|
+
s3Uri: string;
|
|
24325
|
+
}
|
|
24337
24326
|
/**
|
|
24338
24327
|
* Spark EMR Properties Input.
|
|
24339
24328
|
*/
|
|
@@ -27824,7 +27813,7 @@ export declare namespace ec2 {
|
|
|
27824
27813
|
/**
|
|
27825
27814
|
* The number of I/O operations per second (IOPS). For ``gp3``, ``io1``, and ``io2`` volumes, this represents the number of IOPS that are provisioned for the volume. For ``gp2`` volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.
|
|
27826
27815
|
* The following are the supported values for each volume type:
|
|
27827
|
-
* + ``gp3``: 3,000 -
|
|
27816
|
+
* + ``gp3``: 3,000 - 80,000 IOPS
|
|
27828
27817
|
* + ``io1``: 100 - 64,000 IOPS
|
|
27829
27818
|
* + ``io2``: 100 - 256,000 IOPS
|
|
27830
27819
|
*
|
|
@@ -27841,8 +27830,8 @@ export declare namespace ec2 {
|
|
|
27841
27830
|
*/
|
|
27842
27831
|
snapshotId?: string;
|
|
27843
27832
|
/**
|
|
27844
|
-
* The throughput to provision for a ``gp3`` volume, with a maximum of
|
|
27845
|
-
* Valid Range: Minimum value of 125. Maximum value of
|
|
27833
|
+
* The throughput to provision for a ``gp3`` volume, with a maximum of 2,000 MiB/s.
|
|
27834
|
+
* Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
27846
27835
|
*/
|
|
27847
27836
|
throughput?: number;
|
|
27848
27837
|
/**
|
|
@@ -27858,7 +27847,8 @@ export declare namespace ec2 {
|
|
|
27858
27847
|
volumeInitializationRate?: number;
|
|
27859
27848
|
/**
|
|
27860
27849
|
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
27861
|
-
* + ``gp2
|
|
27850
|
+
* + ``gp2``: 1 - 16,384 GiB
|
|
27851
|
+
* + ``gp3``: 1 - 65,536 GiB
|
|
27862
27852
|
* + ``io1``: 4 - 16,384 GiB
|
|
27863
27853
|
* + ``io2``: 4 - 65,536 GiB
|
|
27864
27854
|
* + ``st1`` and ``sc1``: 125 - 16,384 GiB
|
|
@@ -31632,6 +31622,10 @@ export declare namespace ecs {
|
|
|
31632
31622
|
*/
|
|
31633
31623
|
subnets?: string[];
|
|
31634
31624
|
}
|
|
31625
|
+
interface ServiceCanaryConfiguration {
|
|
31626
|
+
canaryBakeTimeInMinutes?: number;
|
|
31627
|
+
canaryPercent?: number;
|
|
31628
|
+
}
|
|
31635
31629
|
/**
|
|
31636
31630
|
* The details of a capacity provider strategy. A capacity provider strategy can be set when using the ``RunTask`` or ``CreateService`` APIs or as the default capacity provider strategy for a cluster with the ``CreateCluster`` API.
|
|
31637
31631
|
* Only capacity providers that are already associated with a cluster and have an ``ACTIVE`` or ``UPDATING`` status can be used in a capacity provider strategy. The ``PutClusterCapacityProviders`` API is used to associate a capacity provider with a cluster.
|
|
@@ -31672,6 +31666,10 @@ export declare namespace ecs {
|
|
|
31672
31666
|
*/
|
|
31673
31667
|
weight?: number;
|
|
31674
31668
|
}
|
|
31669
|
+
interface ServiceConnectAccessLogConfiguration {
|
|
31670
|
+
format: enums.ecs.ServiceConnectAccessLogConfigurationFormat;
|
|
31671
|
+
includeQueryParameters?: enums.ecs.ServiceConnectAccessLogConfigurationIncludeQueryParameters;
|
|
31672
|
+
}
|
|
31675
31673
|
/**
|
|
31676
31674
|
* Each alias ("endpoint") is a fully-qualified name and port number that other tasks ("clients") can use to connect to this service.
|
|
31677
31675
|
* Each name and port mapping must be unique within the namespace.
|
|
@@ -31699,6 +31697,7 @@ export declare namespace ecs {
|
|
|
31699
31697
|
* Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see [Service Connect](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-connect.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
31700
31698
|
*/
|
|
31701
31699
|
interface ServiceConnectConfiguration {
|
|
31700
|
+
accessLogConfiguration?: outputs.ecs.ServiceConnectAccessLogConfiguration;
|
|
31702
31701
|
/**
|
|
31703
31702
|
* Specifies whether to use Service Connect with this service.
|
|
31704
31703
|
*/
|
|
@@ -31855,7 +31854,7 @@ export declare namespace ecs {
|
|
|
31855
31854
|
* + For all other cases, the value is set to 36 hours (2160 minutes).
|
|
31856
31855
|
*/
|
|
31857
31856
|
bakeTimeInMinutes?: number;
|
|
31858
|
-
canaryConfiguration?:
|
|
31857
|
+
canaryConfiguration?: outputs.ecs.ServiceCanaryConfiguration;
|
|
31859
31858
|
/**
|
|
31860
31859
|
* The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
31861
31860
|
* The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
|
|
@@ -31865,7 +31864,7 @@ export declare namespace ecs {
|
|
|
31865
31864
|
* An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
31866
31865
|
*/
|
|
31867
31866
|
lifecycleHooks?: outputs.ecs.ServiceDeploymentLifecycleHook[];
|
|
31868
|
-
linearConfiguration?:
|
|
31867
|
+
linearConfiguration?: outputs.ecs.ServiceLinearConfiguration;
|
|
31869
31868
|
/**
|
|
31870
31869
|
* If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
31871
31870
|
* The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
|
|
@@ -32023,6 +32022,10 @@ export declare namespace ecs {
|
|
|
32023
32022
|
*/
|
|
32024
32023
|
forceNewDeploymentNonce?: string;
|
|
32025
32024
|
}
|
|
32025
|
+
interface ServiceLinearConfiguration {
|
|
32026
|
+
stepBakeTimeInMinutes?: number;
|
|
32027
|
+
stepPercent?: number;
|
|
32028
|
+
}
|
|
32026
32029
|
/**
|
|
32027
32030
|
* The ``LoadBalancer`` property specifies details on a load balancer that is used with a service.
|
|
32028
32031
|
* If the service is using the ``CODE_DEPLOY`` deployment controller, the service is required to use either an Application Load Balancer or Network Load Balancer. When you are creating an ACDlong deployment group, you specify two target groups (referred to as a ``targetGroupPair``). Each target group binds to a separate task set in the deployment. The load balancer can also have up to two listeners, a required listener for production traffic and an optional listener that allows you to test new revisions of the service before routing production traffic to it.
|
|
@@ -34654,7 +34657,7 @@ export declare namespace elasticloadbalancingv2 {
|
|
|
34654
34657
|
interface ListenerRuleHostHeaderConfig {
|
|
34655
34658
|
regexValues?: string[];
|
|
34656
34659
|
/**
|
|
34657
|
-
* The host names. The maximum
|
|
34660
|
+
* The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
|
|
34658
34661
|
* If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
|
|
34659
34662
|
*/
|
|
34660
34663
|
values?: string[];
|
|
@@ -34670,7 +34673,7 @@ export declare namespace elasticloadbalancingv2 {
|
|
|
34670
34673
|
httpHeaderName?: string;
|
|
34671
34674
|
regexValues?: string[];
|
|
34672
34675
|
/**
|
|
34673
|
-
* The strings to compare against the value of the HTTP header. The maximum
|
|
34676
|
+
* The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
|
|
34674
34677
|
* If the same header appears multiple times in the request, we search them in order until a match is found.
|
|
34675
34678
|
* If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
|
|
34676
34679
|
*/
|
|
@@ -34682,7 +34685,7 @@ export declare namespace elasticloadbalancingv2 {
|
|
|
34682
34685
|
*/
|
|
34683
34686
|
interface ListenerRuleHttpRequestMethodConfig {
|
|
34684
34687
|
/**
|
|
34685
|
-
* The name of the request method. The maximum
|
|
34688
|
+
* The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
|
|
34686
34689
|
* If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
|
|
34687
34690
|
*/
|
|
34688
34691
|
values?: string[];
|
|
@@ -34704,7 +34707,7 @@ export declare namespace elasticloadbalancingv2 {
|
|
|
34704
34707
|
*/
|
|
34705
34708
|
interface ListenerRuleQueryStringConfig {
|
|
34706
34709
|
/**
|
|
34707
|
-
* The key/value pairs or values to find in the query string. The maximum
|
|
34710
|
+
* The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\' character.
|
|
34708
34711
|
* If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
|
|
34709
34712
|
*/
|
|
34710
34713
|
values?: outputs.elasticloadbalancingv2.ListenerRuleQueryStringKeyValue[];
|
|
@@ -40565,6 +40568,15 @@ export declare namespace imagebuilder {
|
|
|
40565
40568
|
*/
|
|
40566
40569
|
service?: enums.imagebuilder.DistributionConfigurationTargetContainerRepositoryService;
|
|
40567
40570
|
}
|
|
40571
|
+
/**
|
|
40572
|
+
* The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
|
|
40573
|
+
*/
|
|
40574
|
+
interface ImageDeletionSettings {
|
|
40575
|
+
/**
|
|
40576
|
+
* The execution role to use for deleting the image, as well as underlying resources.
|
|
40577
|
+
*/
|
|
40578
|
+
executionRole: string;
|
|
40579
|
+
}
|
|
40568
40580
|
/**
|
|
40569
40581
|
* Settings for Image Builder to configure the ECR repository and output container images that are scanned.
|
|
40570
40582
|
*/
|
|
@@ -54955,6 +54967,9 @@ export declare namespace mediapackagev2 {
|
|
|
54955
54967
|
* The encryption method to use.
|
|
54956
54968
|
*/
|
|
54957
54969
|
cmafEncryptionMethod?: enums.mediapackagev2.OriginEndpointCmafEncryptionMethod;
|
|
54970
|
+
/**
|
|
54971
|
+
* The encryption method used for Microsoft Smooth Streaming (MSS) content. This specifies how the MSS segments are encrypted to protect the content during delivery to client players.
|
|
54972
|
+
*/
|
|
54958
54973
|
ismEncryptionMethod?: enums.mediapackagev2.OriginEndpointIsmEncryptionMethod;
|
|
54959
54974
|
/**
|
|
54960
54975
|
* The encryption method to use.
|
|
@@ -56146,6 +56161,7 @@ export declare namespace networkfirewall {
|
|
|
56146
56161
|
availabilityZone: string;
|
|
56147
56162
|
}
|
|
56148
56163
|
interface FirewallPolicy {
|
|
56164
|
+
enableTlsSessionHolding?: boolean;
|
|
56149
56165
|
/**
|
|
56150
56166
|
* Contains variables that you can use to override default Suricata settings in your firewall policy.
|
|
56151
56167
|
*/
|
|
@@ -91454,6 +91470,34 @@ export declare namespace route53resolver {
|
|
|
91454
91470
|
}
|
|
91455
91471
|
}
|
|
91456
91472
|
export declare namespace rtbfabric {
|
|
91473
|
+
interface LinkAttributes {
|
|
91474
|
+
customerProvidedId?: string;
|
|
91475
|
+
responderErrorMasking?: outputs.rtbfabric.LinkResponderErrorMaskingForHttpCode[];
|
|
91476
|
+
}
|
|
91477
|
+
interface LinkLogSettings {
|
|
91478
|
+
applicationLogs: outputs.rtbfabric.LinkLogSettingsApplicationLogsProperties;
|
|
91479
|
+
}
|
|
91480
|
+
interface LinkLogSettingsApplicationLogsProperties {
|
|
91481
|
+
linkApplicationLogSampling: outputs.rtbfabric.LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties;
|
|
91482
|
+
}
|
|
91483
|
+
interface LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties {
|
|
91484
|
+
errorLog: number;
|
|
91485
|
+
filterLog: number;
|
|
91486
|
+
}
|
|
91487
|
+
interface LinkModuleConfiguration {
|
|
91488
|
+
dependsOn?: string[];
|
|
91489
|
+
moduleParameters?: outputs.rtbfabric.LinkModuleParameters;
|
|
91490
|
+
name: string;
|
|
91491
|
+
version?: string;
|
|
91492
|
+
}
|
|
91493
|
+
interface LinkModuleParameters {
|
|
91494
|
+
}
|
|
91495
|
+
interface LinkResponderErrorMaskingForHttpCode {
|
|
91496
|
+
action: enums.rtbfabric.LinkResponderErrorMaskingForHttpCodeAction;
|
|
91497
|
+
httpCode: string;
|
|
91498
|
+
loggingTypes: enums.rtbfabric.LinkResponderErrorMaskingLoggingType[];
|
|
91499
|
+
responseLoggingPercentage?: number;
|
|
91500
|
+
}
|
|
91457
91501
|
interface ResponderGatewayManagedEndpointConfiguration {
|
|
91458
91502
|
}
|
|
91459
91503
|
interface ResponderGatewayTrustStoreConfiguration {
|
|
@@ -98408,8 +98452,12 @@ export declare namespace sagemaker {
|
|
|
98408
98452
|
interface UserProfileResourceSpec {
|
|
98409
98453
|
/**
|
|
98410
98454
|
* The instance type that the image version runs on.
|
|
98455
|
+
*
|
|
98456
|
+
* > *JupyterServer apps* only support the `system` value.
|
|
98457
|
+
* >
|
|
98458
|
+
* > For *KernelGateway apps* , the `system` value is translated to `ml.t3.medium` . KernelGateway apps also support all other values for available instance types.
|
|
98411
98459
|
*/
|
|
98412
|
-
instanceType?: enums.sagemaker.
|
|
98460
|
+
instanceType?: enums.sagemaker.UserProfileAppInstanceType;
|
|
98413
98461
|
/**
|
|
98414
98462
|
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
98415
98463
|
*/
|
|
@@ -103066,6 +103114,19 @@ export declare namespace transfer {
|
|
|
103066
103114
|
*/
|
|
103067
103115
|
signingAlgorithm?: enums.transfer.ConnectorAs2ConfigPropertiesSigningAlgorithm;
|
|
103068
103116
|
}
|
|
103117
|
+
interface ConnectorEgressConfig {
|
|
103118
|
+
vpcLattice: outputs.transfer.ConnectorVpcLatticeEgressConfig;
|
|
103119
|
+
}
|
|
103120
|
+
interface ConnectorVpcLatticeEgressConfig {
|
|
103121
|
+
/**
|
|
103122
|
+
* Port to connect to on the target VPC Lattice resource
|
|
103123
|
+
*/
|
|
103124
|
+
portNumber?: number;
|
|
103125
|
+
/**
|
|
103126
|
+
* ARN of the VPC Lattice resource configuration
|
|
103127
|
+
*/
|
|
103128
|
+
resourceConfigurationArn: string;
|
|
103129
|
+
}
|
|
103069
103130
|
/**
|
|
103070
103131
|
* Specifies a separate directory for each type of file to store for an AS2 message.
|
|
103071
103132
|
*/
|
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;;;AAy4pBjF,IAAiB,MAAM,CAgHtB;AAhHD,WAAiB,MAAM;IAoDnB;;OAEG;IACH,SAAgB,yBAAyB,CAAC,GAAe;QACrD,OAAO;YACH,GAAG,GAAG;YACN,qBAAqB,EAAE,CAAC,GAAG,CAAC,qBAAqB,CAAC,IAAI,CAAC;SAC1D,CAAC;IACN,CAAC;IALe,gCAAyB,4BAKxC,CAAA;AAoDL,CAAC,EAhHgB,MAAM,GAAN,cAAM,KAAN,cAAM,QAgHtB"}
|