cdk-docker-image-deployment 0.0.73 → 0.0.75
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +24 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +20 -17
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +81 -49
- package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +59 -47
- package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +65 -50
- package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +11 -4
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +691 -409
- package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/personalize-events-2018-03-22.min.json +36 -8
- package/node_modules/aws-sdk/apis/proton-2020-07-20.min.json +13 -1
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +19 -5
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +305 -227
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ssm-incidents-2018-05-10.min.json +73 -21
- package/node_modules/aws-sdk/apis/ssmsap-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/ssmsap-2018-05-10.min.json +581 -0
- package/node_modules/aws-sdk/apis/ssmsap-2018-05-10.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +50 -18
- package/node_modules/aws-sdk/apis/xray-2016-04-12.min.json +139 -58
- package/node_modules/aws-sdk/apis/xray-2016-04-12.paginators.json +25 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +6 -6
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +14 -1
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -1
- package/node_modules/aws-sdk/clients/comprehendmedical.d.ts +6 -6
- package/node_modules/aws-sdk/clients/connect.d.ts +47 -5
- package/node_modules/aws-sdk/clients/eks.d.ts +26 -6
- package/node_modules/aws-sdk/clients/elasticache.d.ts +20 -1
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +18 -2
- package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +672 -386
- package/node_modules/aws-sdk/clients/personalizeevents.d.ts +13 -2
- package/node_modules/aws-sdk/clients/proton.d.ts +50 -23
- package/node_modules/aws-sdk/clients/rds.d.ts +32 -0
- package/node_modules/aws-sdk/clients/route53.d.ts +3 -3
- package/node_modules/aws-sdk/clients/ssm.d.ts +140 -6
- package/node_modules/aws-sdk/clients/ssmincidents.d.ts +62 -0
- package/node_modules/aws-sdk/clients/ssmsap.d.ts +770 -0
- package/node_modules/aws-sdk/clients/ssmsap.js +18 -0
- package/node_modules/aws-sdk/clients/workspaces.d.ts +42 -0
- package/node_modules/aws-sdk/clients/xray.d.ts +101 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +57 -20
- package/node_modules/aws-sdk/dist/aws-sdk.js +682 -400
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +75 -75
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -65,14 +65,19 @@ declare namespace PersonalizeEvents {
|
|
|
65
65
|
*/
|
|
66
66
|
sentAt: _Date;
|
|
67
67
|
/**
|
|
68
|
-
* The ID of the
|
|
68
|
+
* The ID of the list of recommendations that contains the item the user interacted with. Provide a recommendationId to have Amazon Personalize implicitly record the recommendations you show your user as impressions data. Or provide a recommendationId if you use a metric attribution to measure the impact of recommendations. For more information on recording impressions data, see Recording impressions data. For more information on creating a metric attribution see Measuring impact of recommendations.
|
|
69
69
|
*/
|
|
70
70
|
recommendationId?: RecommendationId;
|
|
71
71
|
/**
|
|
72
|
-
* A list of item IDs that represents the sequence of items you have shown the user. For example, ["itemId1", "itemId2", "itemId3"].
|
|
72
|
+
* A list of item IDs that represents the sequence of items you have shown the user. For example, ["itemId1", "itemId2", "itemId3"]. Provide a list of items to manually record impressions data for an event. For more information on recording impressions data, see Recording impressions data.
|
|
73
73
|
*/
|
|
74
74
|
impression?: Impression;
|
|
75
|
+
/**
|
|
76
|
+
* Contains information about the metric attribution associated with an event. For more information about metric attributions, see Measuring impact of recommendations.
|
|
77
|
+
*/
|
|
78
|
+
metricAttribution?: MetricAttribution;
|
|
75
79
|
}
|
|
80
|
+
export type EventAttributionSource = string;
|
|
76
81
|
export type EventList = Event[];
|
|
77
82
|
export type EventPropertiesJSON = string;
|
|
78
83
|
export type FloatType = number;
|
|
@@ -90,6 +95,12 @@ declare namespace PersonalizeEvents {
|
|
|
90
95
|
export type ItemId = string;
|
|
91
96
|
export type ItemList = Item[];
|
|
92
97
|
export type ItemProperties = string;
|
|
98
|
+
export interface MetricAttribution {
|
|
99
|
+
/**
|
|
100
|
+
* The source of the event, such as a third party.
|
|
101
|
+
*/
|
|
102
|
+
eventAttributionSource: EventAttributionSource;
|
|
103
|
+
}
|
|
93
104
|
export interface PutEventsRequest {
|
|
94
105
|
/**
|
|
95
106
|
* The tracking ID for the event. The ID is generated by a call to the CreateEventTracker API.
|
|
@@ -61,11 +61,11 @@ declare class Proton extends Service {
|
|
|
61
61
|
*/
|
|
62
62
|
createComponent(callback?: (err: AWSError, data: Proton.Types.CreateComponentOutput) => void): Request<Proton.Types.CreateComponentOutput, AWSError>;
|
|
63
63
|
/**
|
|
64
|
-
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods:
|
|
64
|
+
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods: Amazon Web Services-managed provisioning: Proton makes direct calls to provision your resources. Self-managed provisioning: Proton makes pull requests on your repository to provide compiled infrastructure as code (IaC) files that your IaC engine uses to provision resources. For more information, see Environments and Provisioning methods in the Proton User Guide.
|
|
65
65
|
*/
|
|
66
66
|
createEnvironment(params: Proton.Types.CreateEnvironmentInput, callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentOutput) => void): Request<Proton.Types.CreateEnvironmentOutput, AWSError>;
|
|
67
67
|
/**
|
|
68
|
-
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods:
|
|
68
|
+
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods: Amazon Web Services-managed provisioning: Proton makes direct calls to provision your resources. Self-managed provisioning: Proton makes pull requests on your repository to provide compiled infrastructure as code (IaC) files that your IaC engine uses to provision resources. For more information, see Environments and Provisioning methods in the Proton User Guide.
|
|
69
69
|
*/
|
|
70
70
|
createEnvironment(callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentOutput) => void): Request<Proton.Types.CreateEnvironmentOutput, AWSError>;
|
|
71
71
|
/**
|
|
@@ -429,11 +429,11 @@ declare class Proton extends Service {
|
|
|
429
429
|
*/
|
|
430
430
|
listServiceInstanceProvisionedResources(callback?: (err: AWSError, data: Proton.Types.ListServiceInstanceProvisionedResourcesOutput) => void): Request<Proton.Types.ListServiceInstanceProvisionedResourcesOutput, AWSError>;
|
|
431
431
|
/**
|
|
432
|
-
* List service instances with summary data.
|
|
432
|
+
* List service instances with summary data. This action lists service instances of all services in the Amazon Web Services account.
|
|
433
433
|
*/
|
|
434
434
|
listServiceInstances(params: Proton.Types.ListServiceInstancesInput, callback?: (err: AWSError, data: Proton.Types.ListServiceInstancesOutput) => void): Request<Proton.Types.ListServiceInstancesOutput, AWSError>;
|
|
435
435
|
/**
|
|
436
|
-
* List service instances with summary data.
|
|
436
|
+
* List service instances with summary data. This action lists service instances of all services in the Amazon Web Services account.
|
|
437
437
|
*/
|
|
438
438
|
listServiceInstances(callback?: (err: AWSError, data: Proton.Types.ListServiceInstancesOutput) => void): Request<Proton.Types.ListServiceInstancesOutput, AWSError>;
|
|
439
439
|
/**
|
|
@@ -485,11 +485,11 @@ declare class Proton extends Service {
|
|
|
485
485
|
*/
|
|
486
486
|
listTagsForResource(callback?: (err: AWSError, data: Proton.Types.ListTagsForResourceOutput) => void): Request<Proton.Types.ListTagsForResourceOutput, AWSError>;
|
|
487
487
|
/**
|
|
488
|
-
* Notify Proton of
|
|
488
|
+
* Notify Proton of status changes to a provisioned resource when you use self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide.
|
|
489
489
|
*/
|
|
490
490
|
notifyResourceDeploymentStatusChange(params: Proton.Types.NotifyResourceDeploymentStatusChangeInput, callback?: (err: AWSError, data: Proton.Types.NotifyResourceDeploymentStatusChangeOutput) => void): Request<Proton.Types.NotifyResourceDeploymentStatusChangeOutput, AWSError>;
|
|
491
491
|
/**
|
|
492
|
-
* Notify Proton of
|
|
492
|
+
* Notify Proton of status changes to a provisioned resource when you use self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide.
|
|
493
493
|
*/
|
|
494
494
|
notifyResourceDeploymentStatusChange(callback?: (err: AWSError, data: Proton.Types.NotifyResourceDeploymentStatusChangeOutput) => void): Request<Proton.Types.NotifyResourceDeploymentStatusChangeOutput, AWSError>;
|
|
495
495
|
/**
|
|
@@ -533,11 +533,11 @@ declare class Proton extends Service {
|
|
|
533
533
|
*/
|
|
534
534
|
updateComponent(callback?: (err: AWSError, data: Proton.Types.UpdateComponentOutput) => void): Request<Proton.Types.UpdateComponentOutput, AWSError>;
|
|
535
535
|
/**
|
|
536
|
-
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn
|
|
536
|
+
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn and provisioningRepository parameter to update or connect to an environment account connection. You can only update to a new environment account connection if that connection was created in the same environment account that the current environment account connection was created in. The account connection must also be associated with the current environment. If the environment isn't associated with an environment account connection, don't update or include the environmentAccountConnectionId parameter. You can't update or connect the environment to an environment account connection if it isn't already associated with an environment connection. You can update either the environmentAccountConnectionId or protonServiceRoleArn parameter and value. You can’t update both. If the environment was configured for Amazon Web Services-managed provisioning, omit the provisioningRepository parameter. If the environment was configured for self-managed provisioning, specify the provisioningRepository parameter and omit the protonServiceRoleArn and environmentAccountConnectionId parameters. For more information, see Environments and Provisioning methods in the Proton User Guide. There are four modes for updating an environment. The deploymentType field defines the mode. NONE In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated. CURRENT_VERSION In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include minor or major version parameters when you use this deployment-type. MINOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can also specify a different minor version of the current major version in use. MAJOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can also specify a different major version that's higher than the major version in use and a minor version.
|
|
537
537
|
*/
|
|
538
538
|
updateEnvironment(params: Proton.Types.UpdateEnvironmentInput, callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentOutput) => void): Request<Proton.Types.UpdateEnvironmentOutput, AWSError>;
|
|
539
539
|
/**
|
|
540
|
-
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn
|
|
540
|
+
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn and provisioningRepository parameter to update or connect to an environment account connection. You can only update to a new environment account connection if that connection was created in the same environment account that the current environment account connection was created in. The account connection must also be associated with the current environment. If the environment isn't associated with an environment account connection, don't update or include the environmentAccountConnectionId parameter. You can't update or connect the environment to an environment account connection if it isn't already associated with an environment connection. You can update either the environmentAccountConnectionId or protonServiceRoleArn parameter and value. You can’t update both. If the environment was configured for Amazon Web Services-managed provisioning, omit the provisioningRepository parameter. If the environment was configured for self-managed provisioning, specify the provisioningRepository parameter and omit the protonServiceRoleArn and environmentAccountConnectionId parameters. For more information, see Environments and Provisioning methods in the Proton User Guide. There are four modes for updating an environment. The deploymentType field defines the mode. NONE In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated. CURRENT_VERSION In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include minor or major version parameters when you use this deployment-type. MINOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can also specify a different minor version of the current major version in use. MAJOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can also specify a different major version that's higher than the major version in use and a minor version.
|
|
541
541
|
*/
|
|
542
542
|
updateEnvironment(callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentOutput) => void): Request<Proton.Types.UpdateEnvironmentOutput, AWSError>;
|
|
543
543
|
/**
|
|
@@ -716,7 +716,7 @@ declare namespace Proton {
|
|
|
716
716
|
*/
|
|
717
717
|
pipelineProvisioningRepository?: RepositoryBranch;
|
|
718
718
|
/**
|
|
719
|
-
* The Amazon Resource Name (ARN) of the service role
|
|
719
|
+
* The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.
|
|
720
720
|
*/
|
|
721
721
|
pipelineServiceRoleArn?: RoleArnOrEmptyString;
|
|
722
722
|
}
|
|
@@ -955,7 +955,7 @@ declare namespace Proton {
|
|
|
955
955
|
*/
|
|
956
956
|
codebuildRoleArn?: RoleArn;
|
|
957
957
|
/**
|
|
958
|
-
* The Amazon Resource Name (ARN) of
|
|
958
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. You must specify componentRoleArn to allow directly defined components to be associated with any environments running in this account. For more information about components, see Proton components in the Proton User Guide.
|
|
959
959
|
*/
|
|
960
960
|
componentRoleArn?: RoleArn;
|
|
961
961
|
/**
|
|
@@ -967,7 +967,7 @@ declare namespace Proton {
|
|
|
967
967
|
*/
|
|
968
968
|
managementAccountId: AwsAccountId;
|
|
969
969
|
/**
|
|
970
|
-
* The Amazon Resource Name (ARN) of
|
|
970
|
+
* The Amazon Resource Name (ARN) of the IAM service role that's created in the environment account. Proton uses this role to provision infrastructure resources in the associated environment account.
|
|
971
971
|
*/
|
|
972
972
|
roleArn: RoleArn;
|
|
973
973
|
/**
|
|
@@ -995,7 +995,7 @@ declare namespace Proton {
|
|
|
995
995
|
*/
|
|
996
996
|
description?: Description;
|
|
997
997
|
/**
|
|
998
|
-
* The ID of the environment account connection that you provide if you
|
|
998
|
+
* The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an environment account. For more information, see Environment account connections in the Proton User guide. To use Amazon Web Services-managed provisioning for the environment, specify either the environmentAccountConnectionId or protonServiceRoleArn parameter and omit the provisioningRepository parameter.
|
|
999
999
|
*/
|
|
1000
1000
|
environmentAccountConnectionId?: EnvironmentAccountConnectionId;
|
|
1001
1001
|
/**
|
|
@@ -1003,11 +1003,11 @@ declare namespace Proton {
|
|
|
1003
1003
|
*/
|
|
1004
1004
|
name: ResourceName;
|
|
1005
1005
|
/**
|
|
1006
|
-
* The Amazon Resource Name (ARN) of the
|
|
1006
|
+
* The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf. To use Amazon Web Services-managed provisioning for the environment, specify either the environmentAccountConnectionId or protonServiceRoleArn parameter and omit the provisioningRepository parameter.
|
|
1007
1007
|
*/
|
|
1008
1008
|
protonServiceRoleArn?: Arn;
|
|
1009
1009
|
/**
|
|
1010
|
-
* The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository. To use self-managed provisioning for the environment
|
|
1010
|
+
* The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository. To use self-managed provisioning for the environment, specify this parameter and omit the environmentAccountConnectionId and protonServiceRoleArn parameters.
|
|
1011
1011
|
*/
|
|
1012
1012
|
provisioningRepository?: RepositoryBranchInput;
|
|
1013
1013
|
/**
|
|
@@ -1461,7 +1461,7 @@ declare namespace Proton {
|
|
|
1461
1461
|
*/
|
|
1462
1462
|
description?: Description;
|
|
1463
1463
|
/**
|
|
1464
|
-
* The ID of the environment account connection that
|
|
1464
|
+
* The ID of the environment account connection that's used to provision infrastructure resources in an environment account.
|
|
1465
1465
|
*/
|
|
1466
1466
|
environmentAccountConnectionId?: EnvironmentAccountConnectionId;
|
|
1467
1467
|
/**
|
|
@@ -1481,7 +1481,7 @@ declare namespace Proton {
|
|
|
1481
1481
|
*/
|
|
1482
1482
|
name: ResourceName;
|
|
1483
1483
|
/**
|
|
1484
|
-
* The Amazon Resource Name (ARN) of the
|
|
1484
|
+
* The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make calls to other services on your behalf.
|
|
1485
1485
|
*/
|
|
1486
1486
|
protonServiceRoleArn?: Arn;
|
|
1487
1487
|
/**
|
|
@@ -1547,7 +1547,7 @@ declare namespace Proton {
|
|
|
1547
1547
|
*/
|
|
1548
1548
|
requestedAt: Timestamp;
|
|
1549
1549
|
/**
|
|
1550
|
-
* The
|
|
1550
|
+
* The IAM service role that's associated with the environment account connection.
|
|
1551
1551
|
*/
|
|
1552
1552
|
roleArn: Arn;
|
|
1553
1553
|
/**
|
|
@@ -2380,7 +2380,24 @@ declare namespace Proton {
|
|
|
2380
2380
|
*/
|
|
2381
2381
|
provisionedResources: ProvisionedResourceList;
|
|
2382
2382
|
}
|
|
2383
|
+
export interface ListServiceInstancesFilter {
|
|
2384
|
+
/**
|
|
2385
|
+
* The name of a filtering criterion.
|
|
2386
|
+
*/
|
|
2387
|
+
key?: ListServiceInstancesFilterBy;
|
|
2388
|
+
/**
|
|
2389
|
+
* A value to filter by. With the date/time keys (*At{Before,After}), the value is a valid RFC 3339 string with no UTC offset and with an optional fractional precision (for example, 1985-04-12T23:20:50.52Z).
|
|
2390
|
+
*/
|
|
2391
|
+
value?: ListServiceInstancesFilterValue;
|
|
2392
|
+
}
|
|
2393
|
+
export type ListServiceInstancesFilterBy = "name"|"deploymentStatus"|"templateName"|"serviceName"|"deployedTemplateVersionStatus"|"environmentName"|"lastDeploymentAttemptedAtBefore"|"lastDeploymentAttemptedAtAfter"|"createdAtBefore"|"createdAtAfter"|string;
|
|
2394
|
+
export type ListServiceInstancesFilterList = ListServiceInstancesFilter[];
|
|
2395
|
+
export type ListServiceInstancesFilterValue = string;
|
|
2383
2396
|
export interface ListServiceInstancesInput {
|
|
2397
|
+
/**
|
|
2398
|
+
* An array of filtering criteria that scope down the result list. By default, all service instances in the Amazon Web Services account are returned.
|
|
2399
|
+
*/
|
|
2400
|
+
filters?: ListServiceInstancesFilterList;
|
|
2384
2401
|
/**
|
|
2385
2402
|
* The maximum number of service instances to list.
|
|
2386
2403
|
*/
|
|
@@ -2393,6 +2410,14 @@ declare namespace Proton {
|
|
|
2393
2410
|
* The name of the service that the service instance belongs to.
|
|
2394
2411
|
*/
|
|
2395
2412
|
serviceName?: ResourceName;
|
|
2413
|
+
/**
|
|
2414
|
+
* The field that the result list is sorted by. When you choose to sort by serviceName, service instances within each service are sorted by service instance name. Default: serviceName
|
|
2415
|
+
*/
|
|
2416
|
+
sortBy?: ListServiceInstancesSortBy;
|
|
2417
|
+
/**
|
|
2418
|
+
* Result list sort order. Default: ASCENDING
|
|
2419
|
+
*/
|
|
2420
|
+
sortOrder?: SortOrder;
|
|
2396
2421
|
}
|
|
2397
2422
|
export interface ListServiceInstancesOutput {
|
|
2398
2423
|
/**
|
|
@@ -2404,6 +2429,7 @@ declare namespace Proton {
|
|
|
2404
2429
|
*/
|
|
2405
2430
|
serviceInstances: ServiceInstanceSummaryList;
|
|
2406
2431
|
}
|
|
2432
|
+
export type ListServiceInstancesSortBy = "name"|"deploymentStatus"|"templateName"|"serviceName"|"environmentName"|"lastDeploymentAttemptedAt"|"createdAt"|string;
|
|
2407
2433
|
export interface ListServicePipelineOutputsInput {
|
|
2408
2434
|
/**
|
|
2409
2435
|
* A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
|
|
@@ -2540,15 +2566,15 @@ declare namespace Proton {
|
|
|
2540
2566
|
export type NextToken = string;
|
|
2541
2567
|
export interface NotifyResourceDeploymentStatusChangeInput {
|
|
2542
2568
|
/**
|
|
2543
|
-
* The deployment ID for your provisioned resource.
|
|
2569
|
+
* The deployment ID for your provisioned resource.
|
|
2544
2570
|
*/
|
|
2545
2571
|
deploymentId?: DeploymentId;
|
|
2546
2572
|
/**
|
|
2547
|
-
* The
|
|
2573
|
+
* The provisioned resource state change detail data that's returned by Proton.
|
|
2548
2574
|
*/
|
|
2549
2575
|
outputs?: NotifyResourceDeploymentStatusChangeInputOutputsList;
|
|
2550
2576
|
/**
|
|
2551
|
-
* The Amazon Resource Name (ARN)
|
|
2577
|
+
* The provisioned resource Amazon Resource Name (ARN).
|
|
2552
2578
|
*/
|
|
2553
2579
|
resourceArn: Arn;
|
|
2554
2580
|
/**
|
|
@@ -3233,6 +3259,7 @@ declare namespace Proton {
|
|
|
3233
3259
|
templateName: ResourceName;
|
|
3234
3260
|
}
|
|
3235
3261
|
export type ServiceTemplateVersionSummaryList = ServiceTemplateVersionSummary[];
|
|
3262
|
+
export type SortOrder = "ASCENDING"|"DESCENDING"|string;
|
|
3236
3263
|
export type SpecContents = string;
|
|
3237
3264
|
export type StatusMessage = string;
|
|
3238
3265
|
export type String = string;
|
|
@@ -3389,7 +3416,7 @@ declare namespace Proton {
|
|
|
3389
3416
|
*/
|
|
3390
3417
|
id: EnvironmentAccountConnectionId;
|
|
3391
3418
|
/**
|
|
3392
|
-
* The Amazon Resource Name (ARN) of
|
|
3419
|
+
* The Amazon Resource Name (ARN) of the IAM service role that's associated with the environment account connection to update.
|
|
3393
3420
|
*/
|
|
3394
3421
|
roleArn?: RoleArn;
|
|
3395
3422
|
}
|
|
@@ -3417,7 +3444,7 @@ declare namespace Proton {
|
|
|
3417
3444
|
*/
|
|
3418
3445
|
description?: Description;
|
|
3419
3446
|
/**
|
|
3420
|
-
* The ID of the environment account connection
|
|
3447
|
+
* The ID of the environment account connection. You can only update to a new environment account connection if it was created in the same environment account that the current environment account connection was created in and is associated with the current environment.
|
|
3421
3448
|
*/
|
|
3422
3449
|
environmentAccountConnectionId?: EnvironmentAccountConnectionId;
|
|
3423
3450
|
/**
|
|
@@ -3425,7 +3452,7 @@ declare namespace Proton {
|
|
|
3425
3452
|
*/
|
|
3426
3453
|
name: ResourceName;
|
|
3427
3454
|
/**
|
|
3428
|
-
* The Amazon Resource Name (ARN) of the
|
|
3455
|
+
* The Amazon Resource Name (ARN) of the Proton service role that allows Proton to make API calls to other services your behalf.
|
|
3429
3456
|
*/
|
|
3430
3457
|
protonServiceRoleArn?: Arn;
|
|
3431
3458
|
/**
|
|
@@ -1435,6 +1435,18 @@ declare namespace RDS {
|
|
|
1435
1435
|
* The database engine version.
|
|
1436
1436
|
*/
|
|
1437
1437
|
EngineVersion?: String;
|
|
1438
|
+
/**
|
|
1439
|
+
* The number of days for which automatic DB snapshots are retained.
|
|
1440
|
+
*/
|
|
1441
|
+
BackupRetentionPeriod?: IntegerOptional;
|
|
1442
|
+
/**
|
|
1443
|
+
* The allocated storage size in gibibytes (GiB) for all database engines except Amazon Aurora. For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.
|
|
1444
|
+
*/
|
|
1445
|
+
AllocatedStorage?: IntegerOptional;
|
|
1446
|
+
/**
|
|
1447
|
+
* The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
1448
|
+
*/
|
|
1449
|
+
Iops?: IntegerOptional;
|
|
1438
1450
|
}
|
|
1439
1451
|
export interface ConnectionPoolConfiguration {
|
|
1440
1452
|
/**
|
|
@@ -1841,6 +1853,10 @@ declare namespace RDS {
|
|
|
1841
1853
|
* The network type of the DB cluster. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. Valid for: Aurora DB clusters only
|
|
1842
1854
|
*/
|
|
1843
1855
|
NetworkType?: String;
|
|
1856
|
+
/**
|
|
1857
|
+
* Reserved for future use.
|
|
1858
|
+
*/
|
|
1859
|
+
DBSystemId?: String;
|
|
1844
1860
|
/**
|
|
1845
1861
|
* The ID of the region that contains the source for the read replica.
|
|
1846
1862
|
*/
|
|
@@ -2756,6 +2772,10 @@ declare namespace RDS {
|
|
|
2756
2772
|
* The network type of the DB instance. Valid values: IPV4 DUAL The network type is determined by the DBSubnetGroup specified for the DB cluster. A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL). For more information, see Working with a DB instance in a VPC in the Amazon Aurora User Guide. This setting is only for Aurora DB clusters.
|
|
2757
2773
|
*/
|
|
2758
2774
|
NetworkType?: String;
|
|
2775
|
+
/**
|
|
2776
|
+
* Reserved for future use.
|
|
2777
|
+
*/
|
|
2778
|
+
DBSystemId?: String;
|
|
2759
2779
|
}
|
|
2760
2780
|
export interface DBClusterBacktrack {
|
|
2761
2781
|
/**
|
|
@@ -3057,6 +3077,10 @@ declare namespace RDS {
|
|
|
3057
3077
|
*/
|
|
3058
3078
|
IAMDatabaseAuthenticationEnabled?: Boolean;
|
|
3059
3079
|
TagList?: TagList;
|
|
3080
|
+
/**
|
|
3081
|
+
* Reserved for future use.
|
|
3082
|
+
*/
|
|
3083
|
+
DBSystemId?: String;
|
|
3060
3084
|
}
|
|
3061
3085
|
export interface DBClusterSnapshotAttribute {
|
|
3062
3086
|
/**
|
|
@@ -3192,6 +3216,10 @@ declare namespace RDS {
|
|
|
3192
3216
|
* A value that indicates whether the engine version supports Babelfish for Aurora PostgreSQL.
|
|
3193
3217
|
*/
|
|
3194
3218
|
SupportsBabelfish?: Boolean;
|
|
3219
|
+
/**
|
|
3220
|
+
* JSON string that lists the installation files and parameters that RDS Custom uses to create a custom engine version (CEV). RDS Custom applies the patches in the order in which they're listed in the manifest. You can set the Oracle home, Oracle base, and UNIX/Linux user and group using the installation parameters. For more information, see JSON fields in the CEV manifest in the Amazon RDS User Guide.
|
|
3221
|
+
*/
|
|
3222
|
+
CustomDBEngineVersionManifest?: CustomDBEngineVersionManifest;
|
|
3195
3223
|
}
|
|
3196
3224
|
export type DBEngineVersionList = DBEngineVersion[];
|
|
3197
3225
|
export interface DBEngineVersionMessage {
|
|
@@ -3510,6 +3538,10 @@ declare namespace RDS {
|
|
|
3510
3538
|
* Specifies the storage throughput for the DB instance. This setting applies only to the gp3 storage type.
|
|
3511
3539
|
*/
|
|
3512
3540
|
StorageThroughput?: IntegerOptional;
|
|
3541
|
+
/**
|
|
3542
|
+
* The Oracle system ID (Oracle SID) for a container database (CDB). The Oracle SID is also the name of the CDB. This setting is valid for RDS Custom only.
|
|
3543
|
+
*/
|
|
3544
|
+
DBSystemId?: String;
|
|
3513
3545
|
}
|
|
3514
3546
|
export interface DBInstanceAutomatedBackup {
|
|
3515
3547
|
/**
|
|
@@ -850,7 +850,7 @@ declare namespace Route53 {
|
|
|
850
850
|
Dimensions?: DimensionList;
|
|
851
851
|
}
|
|
852
852
|
export type CloudWatchLogsLogGroupArn = string;
|
|
853
|
-
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|string;
|
|
853
|
+
export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-central-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|string;
|
|
854
854
|
export type CollectionName = string;
|
|
855
855
|
export type CollectionSummaries = CollectionSummary[];
|
|
856
856
|
export interface CollectionSummary {
|
|
@@ -2620,7 +2620,7 @@ declare namespace Route53 {
|
|
|
2620
2620
|
export type ResourceRecordSetFailover = "PRIMARY"|"SECONDARY"|string;
|
|
2621
2621
|
export type ResourceRecordSetIdentifier = string;
|
|
2622
2622
|
export type ResourceRecordSetMultiValueAnswer = boolean;
|
|
2623
|
-
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"af-south-1"|"eu-south-1"|string;
|
|
2623
|
+
export type ResourceRecordSetRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-north-1"|"cn-northwest-1"|"ap-east-1"|"me-south-1"|"me-central-1"|"ap-south-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|string;
|
|
2624
2624
|
export type ResourceRecordSetWeight = number;
|
|
2625
2625
|
export type ResourceRecordSets = ResourceRecordSet[];
|
|
2626
2626
|
export type ResourceRecords = ResourceRecord[];
|
|
@@ -2991,7 +2991,7 @@ declare namespace Route53 {
|
|
|
2991
2991
|
VPCId?: VPCId;
|
|
2992
2992
|
}
|
|
2993
2993
|
export type VPCId = string;
|
|
2994
|
-
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|string;
|
|
2994
|
+
export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"eu-central-2"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"me-central-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"eu-south-2"|string;
|
|
2995
2995
|
export type VPCs = VPC[];
|
|
2996
2996
|
/**
|
|
2997
2997
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|