@pulumi/aws 5.18.0 → 5.19.0
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/appstream/stack.d.ts +21 -9
- package/appstream/stack.js.map +1 -1
- package/cloudfront/distribution.d.ts +1 -3
- package/cloudfront/distribution.js +1 -3
- package/cloudfront/distribution.js.map +1 -1
- package/directoryservice/directory.d.ts +9 -9
- package/ec2/launchConfiguration.d.ts +0 -2
- package/ec2/launchConfiguration.js +0 -2
- package/ec2/launchConfiguration.js.map +1 -1
- package/elasticache/getSubnetGroup.d.ts +75 -0
- package/elasticache/getSubnetGroup.js +37 -0
- package/elasticache/getSubnetGroup.js.map +1 -0
- package/elasticache/index.d.ts +3 -0
- package/elasticache/index.js +4 -1
- package/elasticache/index.js.map +1 -1
- package/elasticache/userGroup.d.ts +9 -0
- package/elasticache/userGroup.js.map +1 -1
- package/lightsail/certificate.d.ts +157 -0
- package/lightsail/certificate.js +86 -0
- package/lightsail/certificate.js.map +1 -0
- package/lightsail/containerService.d.ts +45 -0
- package/lightsail/containerService.js +35 -0
- package/lightsail/containerService.js.map +1 -1
- package/lightsail/domainEntry.d.ts +121 -0
- package/lightsail/domainEntry.js +91 -0
- package/lightsail/domainEntry.js.map +1 -0
- package/lightsail/index.d.ts +12 -0
- package/lightsail/index.js +21 -1
- package/lightsail/index.js.map +1 -1
- package/lightsail/lb.d.ts +176 -0
- package/lightsail/lb.js +100 -0
- package/lightsail/lb.js.map +1 -0
- package/lightsail/lbAttachment.d.ts +102 -0
- package/lightsail/lbAttachment.js +99 -0
- package/lightsail/lbAttachment.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/resourcegroups/group.d.ts +15 -3
- package/resourcegroups/group.js +2 -3
- package/resourcegroups/group.js.map +1 -1
- package/route53/getZone.d.ts +4 -0
- package/route53/getZone.js.map +1 -1
- package/route53/record.d.ts +1 -1
- package/route53/record.js +1 -1
- package/route53/zone.d.ts +8 -0
- package/route53/zone.js +2 -0
- package/route53/zone.js.map +1 -1
- package/rum/appMonitor.d.ts +20 -3
- package/rum/appMonitor.js +2 -0
- package/rum/appMonitor.js.map +1 -1
- package/sesv2/dedicatedIpPool.d.ts +95 -0
- package/sesv2/dedicatedIpPool.js +79 -0
- package/sesv2/dedicatedIpPool.js.map +1 -0
- package/sesv2/getDedicatedIpPool.d.ts +71 -0
- package/sesv2/getDedicatedIpPool.js +36 -0
- package/sesv2/getDedicatedIpPool.js.map +1 -0
- package/sesv2/index.d.ts +6 -0
- package/sesv2/index.js +9 -1
- package/sesv2/index.js.map +1 -1
- package/sns/platformApplication.d.ts +39 -1
- package/sns/platformApplication.js +19 -1
- package/sns/platformApplication.js.map +1 -1
- package/sqs/queue.d.ts +1 -10
- package/sqs/queue.js.map +1 -1
- package/ssm/association.d.ts +19 -3
- package/ssm/association.js +16 -0
- package/ssm/association.js.map +1 -1
- package/ssm/getPatchBaseline.d.ts +2 -2
- package/ssm/maintenanceWindow.d.ts +3 -3
- package/ssm/patchBaseline.d.ts +3 -3
- package/types/input.d.ts +63 -10
- package/types/output.d.ts +77 -10
package/types/output.d.ts
CHANGED
|
@@ -5951,7 +5951,8 @@ export declare namespace appstream {
|
|
|
5951
5951
|
}
|
|
5952
5952
|
interface StackAccessEndpoint {
|
|
5953
5953
|
/**
|
|
5954
|
-
* Type of the interface endpoint.
|
|
5954
|
+
* Type of the interface endpoint.
|
|
5955
|
+
* See the [`AccessEndpoint` AWS API documentation](https://docs.aws.amazon.com/appstream2/latest/APIReference/API_AccessEndpoint.html) for valid values.
|
|
5955
5956
|
*/
|
|
5956
5957
|
endpointType: string;
|
|
5957
5958
|
/**
|
|
@@ -5960,12 +5961,21 @@ export declare namespace appstream {
|
|
|
5960
5961
|
vpceId: string;
|
|
5961
5962
|
}
|
|
5962
5963
|
interface StackApplicationSettings {
|
|
5963
|
-
|
|
5964
|
+
/**
|
|
5965
|
+
* Whether application settings should be persisted.
|
|
5966
|
+
*/
|
|
5967
|
+
enabled: boolean;
|
|
5968
|
+
/**
|
|
5969
|
+
* Name of the settings group.
|
|
5970
|
+
* Required when `enabled` is `true`.
|
|
5971
|
+
* Can be up to 100 characters.
|
|
5972
|
+
*/
|
|
5964
5973
|
settingsGroup?: string;
|
|
5965
5974
|
}
|
|
5966
5975
|
interface StackStorageConnector {
|
|
5967
5976
|
/**
|
|
5968
|
-
* Type of storage connector.
|
|
5977
|
+
* Type of storage connector.
|
|
5978
|
+
* Valid values are `HOMEFOLDERS`, `GOOGLE_DRIVE`, or `ONE_DRIVE`.
|
|
5969
5979
|
*/
|
|
5970
5980
|
connectorType: string;
|
|
5971
5981
|
/**
|
|
@@ -5979,11 +5989,13 @@ export declare namespace appstream {
|
|
|
5979
5989
|
}
|
|
5980
5990
|
interface StackUserSetting {
|
|
5981
5991
|
/**
|
|
5982
|
-
* Action that is enabled or disabled.
|
|
5992
|
+
* Action that is enabled or disabled.
|
|
5993
|
+
* Valid values are `CLIPBOARD_COPY_FROM_LOCAL_DEVICE`, `CLIPBOARD_COPY_TO_LOCAL_DEVICE`, `FILE_UPLOAD`, `FILE_DOWNLOAD`, `PRINTING_TO_LOCAL_DEVICE`, `DOMAIN_PASSWORD_SIGNIN`, or `DOMAIN_SMART_CARD_SIGNIN`.
|
|
5983
5994
|
*/
|
|
5984
5995
|
action: string;
|
|
5985
5996
|
/**
|
|
5986
|
-
* Whether the action is enabled or disabled.
|
|
5997
|
+
* Whether the action is enabled or disabled.
|
|
5998
|
+
* Valid values are `ENABLED` or `DISABLED`.
|
|
5987
5999
|
*/
|
|
5988
6000
|
permission: string;
|
|
5989
6001
|
}
|
|
@@ -8670,7 +8682,7 @@ export declare namespace cloudfront {
|
|
|
8670
8682
|
/**
|
|
8671
8683
|
* The CloudFront custom
|
|
8672
8684
|
* origin configuration information. If an S3
|
|
8673
|
-
* origin is required, use `s3OriginConfig` instead.
|
|
8685
|
+
* origin is required, use `originAccessControlId` or `s3OriginConfig` instead.
|
|
8674
8686
|
*/
|
|
8675
8687
|
customOriginConfig?: outputs.cloudfront.DistributionOriginCustomOriginConfig;
|
|
8676
8688
|
/**
|
|
@@ -8679,7 +8691,7 @@ export declare namespace cloudfront {
|
|
|
8679
8691
|
*/
|
|
8680
8692
|
domainName: string;
|
|
8681
8693
|
/**
|
|
8682
|
-
* The unique identifier of
|
|
8694
|
+
* The unique identifier of a [CloudFront origin access control](https://www.terraform.io/docs/providers/aws/r/cloudfront_origin_access_control.html) for this origin.
|
|
8683
8695
|
*/
|
|
8684
8696
|
originAccessControlId?: string;
|
|
8685
8697
|
/**
|
|
@@ -8775,8 +8787,7 @@ export declare namespace cloudfront {
|
|
|
8775
8787
|
}
|
|
8776
8788
|
interface DistributionOriginS3OriginConfig {
|
|
8777
8789
|
/**
|
|
8778
|
-
* The [CloudFront origin access
|
|
8779
|
-
* identity][5] to associate with the origin.
|
|
8790
|
+
* The [CloudFront origin access identity](https://www.terraform.io/docs/providers/aws/r/cloudfront_origin_access_identity.html) to associate with the origin.
|
|
8780
8791
|
*/
|
|
8781
8792
|
originAccessIdentity: string;
|
|
8782
8793
|
}
|
|
@@ -32183,6 +32194,15 @@ export declare namespace lex {
|
|
|
32183
32194
|
}
|
|
32184
32195
|
}
|
|
32185
32196
|
export declare namespace lightsail {
|
|
32197
|
+
interface CertificateDomainValidationOption {
|
|
32198
|
+
/**
|
|
32199
|
+
* A domain name for which the certificate should be issued.
|
|
32200
|
+
*/
|
|
32201
|
+
domainName: string;
|
|
32202
|
+
resourceRecordName: string;
|
|
32203
|
+
resourceRecordType: string;
|
|
32204
|
+
resourceRecordValue: string;
|
|
32205
|
+
}
|
|
32186
32206
|
interface ContainerServiceDeploymentVersionContainer {
|
|
32187
32207
|
/**
|
|
32188
32208
|
* The launch command for the container. A list of string.
|
|
@@ -32249,6 +32269,19 @@ export declare namespace lightsail {
|
|
|
32249
32269
|
*/
|
|
32250
32270
|
unhealthyThreshold?: number;
|
|
32251
32271
|
}
|
|
32272
|
+
interface ContainerServicePrivateRegistryAccess {
|
|
32273
|
+
/**
|
|
32274
|
+
* Describes a request to configure an Amazon Lightsail container service to access private container image repositories, such as Amazon Elastic Container Registry (Amazon ECR) private repositories. See ECR Image Puller Role below for more details.
|
|
32275
|
+
*/
|
|
32276
|
+
ecrImagePullerRole: outputs.lightsail.ContainerServicePrivateRegistryAccessEcrImagePullerRole;
|
|
32277
|
+
}
|
|
32278
|
+
interface ContainerServicePrivateRegistryAccessEcrImagePullerRole {
|
|
32279
|
+
/**
|
|
32280
|
+
* A Boolean value that indicates whether to activate the role. The default is `false`.
|
|
32281
|
+
*/
|
|
32282
|
+
isActive?: boolean;
|
|
32283
|
+
principalArn: string;
|
|
32284
|
+
}
|
|
32252
32285
|
interface ContainerServicePublicDomainNames {
|
|
32253
32286
|
certificates: outputs.lightsail.ContainerServicePublicDomainNamesCertificate[];
|
|
32254
32287
|
}
|
|
@@ -37186,6 +37219,26 @@ export declare namespace redshiftserverless {
|
|
|
37186
37219
|
}
|
|
37187
37220
|
}
|
|
37188
37221
|
export declare namespace resourcegroups {
|
|
37222
|
+
interface GroupConfiguration {
|
|
37223
|
+
/**
|
|
37224
|
+
* A collection of parameters for this group configuration item. See below for details.
|
|
37225
|
+
*/
|
|
37226
|
+
parameters: outputs.resourcegroups.GroupConfigurationParameter[];
|
|
37227
|
+
/**
|
|
37228
|
+
* Specifies the type of group configuration item.
|
|
37229
|
+
*/
|
|
37230
|
+
type: string;
|
|
37231
|
+
}
|
|
37232
|
+
interface GroupConfigurationParameter {
|
|
37233
|
+
/**
|
|
37234
|
+
* The name of the group configuration parameter.
|
|
37235
|
+
*/
|
|
37236
|
+
name: string;
|
|
37237
|
+
/**
|
|
37238
|
+
* The value or values to be used for the specified parameter.
|
|
37239
|
+
*/
|
|
37240
|
+
values: string[];
|
|
37241
|
+
}
|
|
37189
37242
|
interface GroupResourceQuery {
|
|
37190
37243
|
/**
|
|
37191
37244
|
* The resource query as a JSON string.
|
|
@@ -42544,7 +42597,7 @@ export declare namespace sesv2 {
|
|
|
42544
42597
|
}
|
|
42545
42598
|
interface ConfigurationSetSuppressionOptions {
|
|
42546
42599
|
/**
|
|
42547
|
-
* A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid
|
|
42600
|
+
* A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values: `BOUNCE`, `COMPLAINT`.
|
|
42548
42601
|
*/
|
|
42549
42602
|
suppressedReasons?: string[];
|
|
42550
42603
|
}
|
|
@@ -42554,6 +42607,20 @@ export declare namespace sesv2 {
|
|
|
42554
42607
|
*/
|
|
42555
42608
|
customRedirectDomain: string;
|
|
42556
42609
|
}
|
|
42610
|
+
interface GetDedicatedIpPoolDedicatedIp {
|
|
42611
|
+
/**
|
|
42612
|
+
* IPv4 address.
|
|
42613
|
+
*/
|
|
42614
|
+
ip: string;
|
|
42615
|
+
/**
|
|
42616
|
+
* Indicates how complete the dedicated IP warm-up process is. When this value equals `1`, the address has completed the warm-up process and is ready for use.
|
|
42617
|
+
*/
|
|
42618
|
+
warmupPercentage: number;
|
|
42619
|
+
/**
|
|
42620
|
+
* The warm-up status of a dedicated IP address. Valid values: `IN_PROGRESS`, `DONE`.
|
|
42621
|
+
*/
|
|
42622
|
+
warmupStatus: string;
|
|
42623
|
+
}
|
|
42557
42624
|
}
|
|
42558
42625
|
export declare namespace sfn {
|
|
42559
42626
|
interface StateMachineLoggingConfiguration {
|