@pulumi/aws-native 1.28.0-alpha.1744917340 → 1.28.0-alpha.1744981657
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/aps/getWorkspace.d.ts +1 -0
- package/aps/getWorkspace.js.map +1 -1
- package/aps/workspace.d.ts +2 -0
- package/aps/workspace.js +2 -0
- package/aps/workspace.js.map +1 -1
- package/devicefarm/devicePool.d.ts +1 -1
- package/devicefarm/devicePool.js +1 -1
- package/devicefarm/getDevicePool.d.ts +2 -2
- package/devicefarm/getDevicePool.js +2 -2
- package/devicefarm/getInstanceProfile.d.ts +2 -2
- package/devicefarm/getInstanceProfile.js +2 -2
- package/devicefarm/getNetworkProfile.d.ts +2 -2
- package/devicefarm/getNetworkProfile.js +2 -2
- package/devicefarm/getProject.d.ts +2 -2
- package/devicefarm/getProject.js +2 -2
- package/devicefarm/getTestGridProject.d.ts +2 -2
- package/devicefarm/getTestGridProject.js +2 -2
- package/devicefarm/getVpceConfiguration.d.ts +2 -2
- package/devicefarm/getVpceConfiguration.js +2 -2
- package/devicefarm/instanceProfile.d.ts +1 -1
- package/devicefarm/instanceProfile.js +1 -1
- package/devicefarm/networkProfile.d.ts +1 -1
- package/devicefarm/networkProfile.js +1 -1
- package/devicefarm/project.d.ts +1 -1
- package/devicefarm/project.js +1 -1
- package/devicefarm/testGridProject.d.ts +1 -1
- package/devicefarm/testGridProject.js +1 -1
- package/devicefarm/vpceConfiguration.d.ts +1 -1
- package/devicefarm/vpceConfiguration.js +1 -1
- package/events/connection.d.ts +2 -0
- package/events/connection.js +2 -0
- package/events/connection.js.map +1 -1
- package/events/getConnection.d.ts +1 -0
- package/events/getConnection.js.map +1 -1
- package/lambda/eventSourceMapping.d.ts +2 -0
- package/lambda/eventSourceMapping.js.map +1 -1
- package/lambda/getEventSourceMapping.d.ts +1 -0
- package/lambda/getEventSourceMapping.js.map +1 -1
- package/neptune/dbClusterParameterGroup.d.ts +79 -0
- package/neptune/dbClusterParameterGroup.js +75 -0
- package/neptune/dbClusterParameterGroup.js.map +1 -0
- package/neptune/dbParameterGroup.d.ts +87 -0
- package/neptune/dbParameterGroup.js +75 -0
- package/neptune/dbParameterGroup.js.map +1 -0
- package/neptune/getDbClusterParameterGroup.d.ts +34 -0
- package/neptune/getDbClusterParameterGroup.js +28 -0
- package/neptune/getDbClusterParameterGroup.js.map +1 -0
- package/neptune/getDbParameterGroup.d.ts +38 -0
- package/neptune/getDbParameterGroup.js +28 -0
- package/neptune/getDbParameterGroup.js.map +1 -0
- package/neptune/index.d.ts +12 -0
- package/neptune/index.js +15 -1
- package/neptune/index.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/s3tables/getTableBucket.d.ts +3 -0
- package/s3tables/getTableBucket.js.map +1 -1
- package/s3tables/tableBucket.d.ts +6 -0
- package/s3tables/tableBucket.js.map +1 -1
- package/ses/mailManagerIngressPoint.d.ts +6 -0
- package/ses/mailManagerIngressPoint.js.map +1 -1
- package/types/enums/cassandra/index.d.ts +1 -0
- package/types/enums/cassandra/index.js +1 -0
- package/types/enums/cassandra/index.js.map +1 -1
- package/types/input.d.ts +66 -1
- package/types/output.d.ts +66 -1
- package/types/output.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -6078,6 +6078,51 @@ export declare namespace aps {
|
|
|
6078
6078
|
*/
|
|
6079
6079
|
subnetIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
6080
6080
|
}
|
|
6081
|
+
/**
|
|
6082
|
+
* Workspace configuration
|
|
6083
|
+
*/
|
|
6084
|
+
interface WorkspaceConfigurationArgs {
|
|
6085
|
+
/**
|
|
6086
|
+
* An array of label set and associated limits
|
|
6087
|
+
*/
|
|
6088
|
+
limitsPerLabelSets?: pulumi.Input<pulumi.Input<inputs.aps.WorkspaceLimitsPerLabelSetArgs>[]>;
|
|
6089
|
+
/**
|
|
6090
|
+
* How many days that metrics are retained in the workspace
|
|
6091
|
+
*/
|
|
6092
|
+
retentionPeriodInDays?: pulumi.Input<number>;
|
|
6093
|
+
}
|
|
6094
|
+
/**
|
|
6095
|
+
* Series label
|
|
6096
|
+
*/
|
|
6097
|
+
interface WorkspaceLabelArgs {
|
|
6098
|
+
/**
|
|
6099
|
+
* Name of the label
|
|
6100
|
+
*/
|
|
6101
|
+
name: pulumi.Input<string>;
|
|
6102
|
+
/**
|
|
6103
|
+
* Value of the label
|
|
6104
|
+
*/
|
|
6105
|
+
value: pulumi.Input<string>;
|
|
6106
|
+
}
|
|
6107
|
+
/**
|
|
6108
|
+
* Label set and its associated limits
|
|
6109
|
+
*/
|
|
6110
|
+
interface WorkspaceLimitsPerLabelSetArgs {
|
|
6111
|
+
/**
|
|
6112
|
+
* An array of series labels
|
|
6113
|
+
*/
|
|
6114
|
+
labelSet: pulumi.Input<pulumi.Input<inputs.aps.WorkspaceLabelArgs>[]>;
|
|
6115
|
+
limits: pulumi.Input<inputs.aps.WorkspaceLimitsPerLabelSetEntryArgs>;
|
|
6116
|
+
}
|
|
6117
|
+
/**
|
|
6118
|
+
* Limits that can be applied to a label set
|
|
6119
|
+
*/
|
|
6120
|
+
interface WorkspaceLimitsPerLabelSetEntryArgs {
|
|
6121
|
+
/**
|
|
6122
|
+
* The maximum number of active series that can be ingested for this label set
|
|
6123
|
+
*/
|
|
6124
|
+
maxSeries?: pulumi.Input<number>;
|
|
6125
|
+
}
|
|
6081
6126
|
/**
|
|
6082
6127
|
* Logging configuration
|
|
6083
6128
|
*/
|
|
@@ -8303,6 +8348,9 @@ export declare namespace batch {
|
|
|
8303
8348
|
* The command that's passed to the container. This parameter maps to `Cmd` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `COMMAND` parameter to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) . For more information, see [https://docs.docker.com/engine/reference/builder/#cmd](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/builder/#cmd) .
|
|
8304
8349
|
*/
|
|
8305
8350
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8351
|
+
/**
|
|
8352
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
8353
|
+
*/
|
|
8306
8354
|
enableExecuteCommand?: pulumi.Input<boolean>;
|
|
8307
8355
|
/**
|
|
8308
8356
|
* The environment variables to pass to a container. This parameter maps to `Env` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `--env` option to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) .
|
|
@@ -8446,6 +8494,9 @@ export declare namespace batch {
|
|
|
8446
8494
|
* This object is a list of containers.
|
|
8447
8495
|
*/
|
|
8448
8496
|
containers?: pulumi.Input<pulumi.Input<inputs.batch.JobDefinitionTaskContainerPropertiesArgs>[]>;
|
|
8497
|
+
/**
|
|
8498
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
8499
|
+
*/
|
|
8449
8500
|
enableExecuteCommand?: pulumi.Input<boolean>;
|
|
8450
8501
|
/**
|
|
8451
8502
|
* The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on AWS Fargate .
|
|
@@ -8917,6 +8968,7 @@ export declare namespace batch {
|
|
|
8917
8968
|
*
|
|
8918
8969
|
* > Jobs that are running on Fargate resources are restricted to the `awslogs` and `splunk` log drivers.
|
|
8919
8970
|
*
|
|
8971
|
+
* - **awsfirelens** - Specifies the firelens logging driver. For more information on configuring Firelens, see [Send Amazon ECS logs to an AWS service or AWS Partner](https://docs.aws.amazon.com//AmazonECS/latest/developerguide/using_firelens.html) in the *Amazon Elastic Container Service Developer Guide* .
|
|
8920
8972
|
* - **awslogs** - Specifies the Amazon CloudWatch Logs logging driver. For more information, see [Using the awslogs log driver](https://docs.aws.amazon.com/batch/latest/userguide/using_awslogs.html) in the *AWS Batch User Guide* and [Amazon CloudWatch Logs logging driver](https://docs.aws.amazon.com/https://docs.docker.com/config/containers/logging/awslogs/) in the Docker documentation.
|
|
8921
8973
|
* - **fluentd** - Specifies the Fluentd logging driver. For more information including usage and options, see [Fluentd logging driver](https://docs.aws.amazon.com/https://docs.docker.com/config/containers/logging/fluentd/) in the *Docker documentation* .
|
|
8922
8974
|
* - **gelf** - Specifies the Graylog Extended Format (GELF) logging driver. For more information including usage and options, see [Graylog Extended Format logging driver](https://docs.aws.amazon.com/https://docs.docker.com/config/containers/logging/gelf/) in the *Docker documentation* .
|
|
@@ -8960,6 +9012,9 @@ export declare namespace batch {
|
|
|
8960
9012
|
* The command that's passed to the container. This parameter maps to `Cmd` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `COMMAND` parameter to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) . For more information, see [https://docs.docker.com/engine/reference/builder/#cmd](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/builder/#cmd) .
|
|
8961
9013
|
*/
|
|
8962
9014
|
command?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9015
|
+
/**
|
|
9016
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
9017
|
+
*/
|
|
8963
9018
|
enableExecuteCommand?: pulumi.Input<boolean>;
|
|
8964
9019
|
/**
|
|
8965
9020
|
* The environment variables to pass to a container. This parameter maps to `Env` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `--env` option to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) .
|
|
@@ -9085,6 +9140,9 @@ export declare namespace batch {
|
|
|
9085
9140
|
* This object is a list of containers.
|
|
9086
9141
|
*/
|
|
9087
9142
|
containers?: pulumi.Input<pulumi.Input<inputs.batch.JobDefinitionTaskContainerPropertiesArgs>[]>;
|
|
9143
|
+
/**
|
|
9144
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
9145
|
+
*/
|
|
9088
9146
|
enableExecuteCommand?: pulumi.Input<boolean>;
|
|
9089
9147
|
/**
|
|
9090
9148
|
* The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see [AWS Batch execution IAM role](https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html) in the *AWS Batch User Guide* .
|
|
@@ -9297,6 +9355,9 @@ export declare namespace batch {
|
|
|
9297
9355
|
* All jobs must have at least one essential container. If you have an application that's composed of multiple containers, group containers that are used for a common purpose into components, and separate the different components into multiple task definitions. For more information, see [Application Architecture](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html) in the *Amazon Elastic Container Service Developer Guide* .
|
|
9298
9356
|
*/
|
|
9299
9357
|
essential?: pulumi.Input<boolean>;
|
|
9358
|
+
/**
|
|
9359
|
+
* The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more information, see [Custom log](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html) routing in the *Amazon Elastic Container Service Developer Guide* .
|
|
9360
|
+
*/
|
|
9300
9361
|
firelensConfiguration?: pulumi.Input<inputs.batch.JobDefinitionTaskContainerPropertiesFirelensConfigurationPropertiesArgs>;
|
|
9301
9362
|
/**
|
|
9302
9363
|
* The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either `repository-url/image:tag` or `repository-url/image@digest` . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to `Image` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.35/) and the `IMAGE` parameter of the [*docker run*](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/#security-configuration) .
|
|
@@ -9384,6 +9445,9 @@ export declare namespace batch {
|
|
|
9384
9445
|
*/
|
|
9385
9446
|
user?: pulumi.Input<string>;
|
|
9386
9447
|
}
|
|
9448
|
+
/**
|
|
9449
|
+
* The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more information, see [Custom log](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html) routing in the *Amazon Elastic Container Service Developer Guide* .
|
|
9450
|
+
*/
|
|
9387
9451
|
interface JobDefinitionTaskContainerPropertiesFirelensConfigurationPropertiesArgs {
|
|
9388
9452
|
options?: pulumi.Input<{
|
|
9389
9453
|
[key: string]: pulumi.Input<string>;
|
|
@@ -9481,7 +9545,7 @@ export declare namespace batch {
|
|
|
9481
9545
|
/**
|
|
9482
9546
|
* The amount of time (in seconds) to use to calculate a fair-share percentage for each share identifier in use. A value of zero (0) indicates the default minimum time window (600 seconds). The maximum supported value is 604800 (1 week).
|
|
9483
9547
|
*
|
|
9484
|
-
* The decay allows for more recently run jobs to have more weight than jobs that ran earlier. Consider adjusting this number if you have jobs that (on average) run longer than ten minutes, or a large difference in job count or job run times between share identifiers, and the allocation of resources doesn
|
|
9548
|
+
* The decay allows for more recently run jobs to have more weight than jobs that ran earlier. Consider adjusting this number if you have jobs that (on average) run longer than ten minutes, or a large difference in job count or job run times between share identifiers, and the allocation of resources doesn't meet your needs.
|
|
9485
9549
|
*/
|
|
9486
9550
|
shareDecaySeconds?: pulumi.Input<number>;
|
|
9487
9551
|
/**
|
|
@@ -21095,6 +21159,7 @@ export declare namespace datazone {
|
|
|
21095
21159
|
* The single-sign on configuration of the Amazon DataZone domain.
|
|
21096
21160
|
*/
|
|
21097
21161
|
interface DomainSingleSignOnArgs {
|
|
21162
|
+
idcInstanceArn?: pulumi.Input<string>;
|
|
21098
21163
|
/**
|
|
21099
21164
|
* The type of single sign-on in Amazon DataZone.
|
|
21100
21165
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -5988,6 +5988,51 @@ export declare namespace aps {
|
|
|
5988
5988
|
*/
|
|
5989
5989
|
subnetIds: string[];
|
|
5990
5990
|
}
|
|
5991
|
+
/**
|
|
5992
|
+
* Workspace configuration
|
|
5993
|
+
*/
|
|
5994
|
+
interface WorkspaceConfiguration {
|
|
5995
|
+
/**
|
|
5996
|
+
* An array of label set and associated limits
|
|
5997
|
+
*/
|
|
5998
|
+
limitsPerLabelSets?: outputs.aps.WorkspaceLimitsPerLabelSet[];
|
|
5999
|
+
/**
|
|
6000
|
+
* How many days that metrics are retained in the workspace
|
|
6001
|
+
*/
|
|
6002
|
+
retentionPeriodInDays?: number;
|
|
6003
|
+
}
|
|
6004
|
+
/**
|
|
6005
|
+
* Series label
|
|
6006
|
+
*/
|
|
6007
|
+
interface WorkspaceLabel {
|
|
6008
|
+
/**
|
|
6009
|
+
* Name of the label
|
|
6010
|
+
*/
|
|
6011
|
+
name: string;
|
|
6012
|
+
/**
|
|
6013
|
+
* Value of the label
|
|
6014
|
+
*/
|
|
6015
|
+
value: string;
|
|
6016
|
+
}
|
|
6017
|
+
/**
|
|
6018
|
+
* Label set and its associated limits
|
|
6019
|
+
*/
|
|
6020
|
+
interface WorkspaceLimitsPerLabelSet {
|
|
6021
|
+
/**
|
|
6022
|
+
* An array of series labels
|
|
6023
|
+
*/
|
|
6024
|
+
labelSet: outputs.aps.WorkspaceLabel[];
|
|
6025
|
+
limits: outputs.aps.WorkspaceLimitsPerLabelSetEntry;
|
|
6026
|
+
}
|
|
6027
|
+
/**
|
|
6028
|
+
* Limits that can be applied to a label set
|
|
6029
|
+
*/
|
|
6030
|
+
interface WorkspaceLimitsPerLabelSetEntry {
|
|
6031
|
+
/**
|
|
6032
|
+
* The maximum number of active series that can be ingested for this label set
|
|
6033
|
+
*/
|
|
6034
|
+
maxSeries?: number;
|
|
6035
|
+
}
|
|
5991
6036
|
/**
|
|
5992
6037
|
* Logging configuration
|
|
5993
6038
|
*/
|
|
@@ -8213,6 +8258,9 @@ export declare namespace batch {
|
|
|
8213
8258
|
* The command that's passed to the container. This parameter maps to `Cmd` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `COMMAND` parameter to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) . For more information, see [https://docs.docker.com/engine/reference/builder/#cmd](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/builder/#cmd) .
|
|
8214
8259
|
*/
|
|
8215
8260
|
command?: string[];
|
|
8261
|
+
/**
|
|
8262
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
8263
|
+
*/
|
|
8216
8264
|
enableExecuteCommand?: boolean;
|
|
8217
8265
|
/**
|
|
8218
8266
|
* The environment variables to pass to a container. This parameter maps to `Env` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `--env` option to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) .
|
|
@@ -8356,6 +8404,9 @@ export declare namespace batch {
|
|
|
8356
8404
|
* This object is a list of containers.
|
|
8357
8405
|
*/
|
|
8358
8406
|
containers?: outputs.batch.JobDefinitionTaskContainerProperties[];
|
|
8407
|
+
/**
|
|
8408
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
8409
|
+
*/
|
|
8359
8410
|
enableExecuteCommand?: boolean;
|
|
8360
8411
|
/**
|
|
8361
8412
|
* The amount of ephemeral storage to allocate for the task. This parameter is used to expand the total amount of ephemeral storage available, beyond the default amount, for tasks hosted on AWS Fargate .
|
|
@@ -8827,6 +8878,7 @@ export declare namespace batch {
|
|
|
8827
8878
|
*
|
|
8828
8879
|
* > Jobs that are running on Fargate resources are restricted to the `awslogs` and `splunk` log drivers.
|
|
8829
8880
|
*
|
|
8881
|
+
* - **awsfirelens** - Specifies the firelens logging driver. For more information on configuring Firelens, see [Send Amazon ECS logs to an AWS service or AWS Partner](https://docs.aws.amazon.com//AmazonECS/latest/developerguide/using_firelens.html) in the *Amazon Elastic Container Service Developer Guide* .
|
|
8830
8882
|
* - **awslogs** - Specifies the Amazon CloudWatch Logs logging driver. For more information, see [Using the awslogs log driver](https://docs.aws.amazon.com/batch/latest/userguide/using_awslogs.html) in the *AWS Batch User Guide* and [Amazon CloudWatch Logs logging driver](https://docs.aws.amazon.com/https://docs.docker.com/config/containers/logging/awslogs/) in the Docker documentation.
|
|
8831
8883
|
* - **fluentd** - Specifies the Fluentd logging driver. For more information including usage and options, see [Fluentd logging driver](https://docs.aws.amazon.com/https://docs.docker.com/config/containers/logging/fluentd/) in the *Docker documentation* .
|
|
8832
8884
|
* - **gelf** - Specifies the Graylog Extended Format (GELF) logging driver. For more information including usage and options, see [Graylog Extended Format logging driver](https://docs.aws.amazon.com/https://docs.docker.com/config/containers/logging/gelf/) in the *Docker documentation* .
|
|
@@ -8870,6 +8922,9 @@ export declare namespace batch {
|
|
|
8870
8922
|
* The command that's passed to the container. This parameter maps to `Cmd` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `COMMAND` parameter to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) . For more information, see [https://docs.docker.com/engine/reference/builder/#cmd](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/builder/#cmd) .
|
|
8871
8923
|
*/
|
|
8872
8924
|
command?: string[];
|
|
8925
|
+
/**
|
|
8926
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
8927
|
+
*/
|
|
8873
8928
|
enableExecuteCommand?: boolean;
|
|
8874
8929
|
/**
|
|
8875
8930
|
* The environment variables to pass to a container. This parameter maps to `Env` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/#create-a-container) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.23/) and the `--env` option to [docker run](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/) .
|
|
@@ -8995,6 +9050,9 @@ export declare namespace batch {
|
|
|
8995
9050
|
* This object is a list of containers.
|
|
8996
9051
|
*/
|
|
8997
9052
|
containers?: outputs.batch.JobDefinitionTaskContainerProperties[];
|
|
9053
|
+
/**
|
|
9054
|
+
* Determines whether execute command functionality is turned on for this task. If `true` , execute command functionality is turned on all the containers in the task.
|
|
9055
|
+
*/
|
|
8998
9056
|
enableExecuteCommand?: boolean;
|
|
8999
9057
|
/**
|
|
9000
9058
|
* The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. For jobs that run on Fargate resources, you must provide an execution role. For more information, see [AWS Batch execution IAM role](https://docs.aws.amazon.com/batch/latest/userguide/execution-IAM-role.html) in the *AWS Batch User Guide* .
|
|
@@ -9207,6 +9265,9 @@ export declare namespace batch {
|
|
|
9207
9265
|
* All jobs must have at least one essential container. If you have an application that's composed of multiple containers, group containers that are used for a common purpose into components, and separate the different components into multiple task definitions. For more information, see [Application Architecture](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/application_architecture.html) in the *Amazon Elastic Container Service Developer Guide* .
|
|
9208
9266
|
*/
|
|
9209
9267
|
essential?: boolean;
|
|
9268
|
+
/**
|
|
9269
|
+
* The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more information, see [Custom log](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html) routing in the *Amazon Elastic Container Service Developer Guide* .
|
|
9270
|
+
*/
|
|
9210
9271
|
firelensConfiguration?: outputs.batch.JobDefinitionTaskContainerPropertiesFirelensConfigurationProperties;
|
|
9211
9272
|
/**
|
|
9212
9273
|
* The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either `repository-url/image:tag` or `repository-url/image@digest` . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to `Image` in the [Create a container](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.35/#operation/ContainerCreate) section of the [Docker Remote API](https://docs.aws.amazon.com/https://docs.docker.com/engine/api/v1.35/) and the `IMAGE` parameter of the [*docker run*](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/#security-configuration) .
|
|
@@ -9294,6 +9355,9 @@ export declare namespace batch {
|
|
|
9294
9355
|
*/
|
|
9295
9356
|
user?: string;
|
|
9296
9357
|
}
|
|
9358
|
+
/**
|
|
9359
|
+
* The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more information, see [Custom log](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html) routing in the *Amazon Elastic Container Service Developer Guide* .
|
|
9360
|
+
*/
|
|
9297
9361
|
interface JobDefinitionTaskContainerPropertiesFirelensConfigurationProperties {
|
|
9298
9362
|
options?: {
|
|
9299
9363
|
[key: string]: string;
|
|
@@ -9391,7 +9455,7 @@ export declare namespace batch {
|
|
|
9391
9455
|
/**
|
|
9392
9456
|
* The amount of time (in seconds) to use to calculate a fair-share percentage for each share identifier in use. A value of zero (0) indicates the default minimum time window (600 seconds). The maximum supported value is 604800 (1 week).
|
|
9393
9457
|
*
|
|
9394
|
-
* The decay allows for more recently run jobs to have more weight than jobs that ran earlier. Consider adjusting this number if you have jobs that (on average) run longer than ten minutes, or a large difference in job count or job run times between share identifiers, and the allocation of resources doesn
|
|
9458
|
+
* The decay allows for more recently run jobs to have more weight than jobs that ran earlier. Consider adjusting this number if you have jobs that (on average) run longer than ten minutes, or a large difference in job count or job run times between share identifiers, and the allocation of resources doesn't meet your needs.
|
|
9395
9459
|
*/
|
|
9396
9460
|
shareDecaySeconds?: number;
|
|
9397
9461
|
/**
|
|
@@ -21927,6 +21991,7 @@ export declare namespace datazone {
|
|
|
21927
21991
|
* The single-sign on configuration of the Amazon DataZone domain.
|
|
21928
21992
|
*/
|
|
21929
21993
|
interface DomainSingleSignOn {
|
|
21994
|
+
idcInstanceArn?: string;
|
|
21930
21995
|
/**
|
|
21931
21996
|
* The type of single sign-on in Amazon DataZone.
|
|
21932
21997
|
*/
|
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;;;AAq/kBjF,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"}
|