@pulumi/aws 6.14.0 → 6.15.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/alb/getLoadBalancer.d.ts +2 -0
- package/alb/getLoadBalancer.js.map +1 -1
- package/alb/loadBalancer.d.ts +18 -12
- package/alb/loadBalancer.js +2 -0
- package/alb/loadBalancer.js.map +1 -1
- package/cloudfront/function.d.ts +4 -4
- package/cloudfront/function.js +1 -1
- package/cloudwatch/getLogGroup.d.ts +4 -0
- package/cloudwatch/getLogGroup.js.map +1 -1
- package/cloudwatch/logGroup.d.ts +1 -1
- package/cloudwatch/metricStream.d.ts +6 -6
- package/dms/endpoint.d.ts +12 -0
- package/dms/endpoint.js +2 -0
- package/dms/endpoint.js.map +1 -1
- package/dms/eventSubscription.d.ts +4 -4
- package/dms/eventSubscription.js +6 -0
- package/dms/eventSubscription.js.map +1 -1
- package/dms/getEndpoint.d.ts +1 -0
- package/dms/getEndpoint.js.map +1 -1
- package/finspace/index.d.ts +9 -0
- package/finspace/index.js +16 -1
- package/finspace/index.js.map +1 -1
- package/finspace/kxCluster.d.ts +26 -2
- package/finspace/kxCluster.js +4 -3
- package/finspace/kxCluster.js.map +1 -1
- package/finspace/kxDataview.d.ts +244 -0
- package/finspace/kxDataview.js +123 -0
- package/finspace/kxDataview.js.map +1 -0
- package/finspace/kxScalingGroup.d.ts +197 -0
- package/finspace/kxScalingGroup.js +107 -0
- package/finspace/kxScalingGroup.js.map +1 -0
- package/finspace/kxVolume.d.ts +230 -0
- package/finspace/kxVolume.js +121 -0
- package/finspace/kxVolume.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/lb/getLoadBalancer.d.ts +2 -0
- package/lb/getLoadBalancer.js.map +1 -1
- package/lb/loadBalancer.d.ts +18 -12
- package/lb/loadBalancer.js +2 -0
- package/lb/loadBalancer.js.map +1 -1
- package/lightsail/instance.d.ts +30 -66
- package/lightsail/instance.js +0 -51
- package/lightsail/instance.js.map +1 -1
- package/opensearch/getServerlessCollection.d.ts +4 -0
- package/opensearch/getServerlessCollection.js.map +1 -1
- package/opensearch/serverlessCollection.d.ts +12 -0
- package/opensearch/serverlessCollection.js +2 -0
- package/opensearch/serverlessCollection.js.map +1 -1
- package/package.json +1 -1
- package/polly/getVoices.d.ts +112 -0
- package/polly/getVoices.js +69 -0
- package/polly/getVoices.js.map +1 -0
- package/polly/index.d.ts +3 -0
- package/polly/index.js +10 -0
- package/polly/index.js.map +1 -0
- package/rds/instance.d.ts +54 -7
- package/rds/instance.js +51 -1
- package/rds/instance.js.map +1 -1
- package/ssoadmin/getApplicationAssignments.d.ts +75 -0
- package/ssoadmin/getApplicationAssignments.js +50 -0
- package/ssoadmin/getApplicationAssignments.js.map +1 -0
- package/ssoadmin/getPrincipalApplicationAssignments.d.ts +76 -0
- package/ssoadmin/getPrincipalApplicationAssignments.js +32 -0
- package/ssoadmin/getPrincipalApplicationAssignments.js.map +1 -0
- package/ssoadmin/index.d.ts +9 -0
- package/ssoadmin/index.js +12 -1
- package/ssoadmin/index.js.map +1 -1
- package/ssoadmin/trustedTokenIssuer.d.ts +159 -0
- package/ssoadmin/trustedTokenIssuer.js +84 -0
- package/ssoadmin/trustedTokenIssuer.js.map +1 -0
- package/types/input.d.ts +305 -3
- package/types/output.d.ts +275 -3
package/types/output.d.ts
CHANGED
|
@@ -317,6 +317,11 @@ export declare namespace alb {
|
|
|
317
317
|
enabled: boolean;
|
|
318
318
|
prefix: string;
|
|
319
319
|
}
|
|
320
|
+
interface GetLoadBalancerConnectionLog {
|
|
321
|
+
bucket: string;
|
|
322
|
+
enabled: boolean;
|
|
323
|
+
prefix: string;
|
|
324
|
+
}
|
|
320
325
|
interface GetLoadBalancerSubnetMapping {
|
|
321
326
|
allocationId: string;
|
|
322
327
|
ipv6Address: string;
|
|
@@ -830,6 +835,20 @@ export declare namespace alb {
|
|
|
830
835
|
*/
|
|
831
836
|
prefix?: string;
|
|
832
837
|
}
|
|
838
|
+
interface LoadBalancerConnectionLogs {
|
|
839
|
+
/**
|
|
840
|
+
* The S3 bucket name to store the logs in.
|
|
841
|
+
*/
|
|
842
|
+
bucket: string;
|
|
843
|
+
/**
|
|
844
|
+
* Boolean to enable / disable `connectionLogs`. Defaults to `false`, even when `bucket` is specified.
|
|
845
|
+
*/
|
|
846
|
+
enabled?: boolean;
|
|
847
|
+
/**
|
|
848
|
+
* The S3 bucket prefix. Logs are stored in the root if not configured.
|
|
849
|
+
*/
|
|
850
|
+
prefix?: string;
|
|
851
|
+
}
|
|
833
852
|
interface LoadBalancerSubnetMapping {
|
|
834
853
|
/**
|
|
835
854
|
* The allocation ID of the Elastic IP address for an internet-facing load balancer.
|
|
@@ -14632,6 +14651,7 @@ export declare namespace config {
|
|
|
14632
14651
|
outposts?: string;
|
|
14633
14652
|
pinpoint?: string;
|
|
14634
14653
|
pipes?: string;
|
|
14654
|
+
polly?: string;
|
|
14635
14655
|
pricing?: string;
|
|
14636
14656
|
prometheus?: string;
|
|
14637
14657
|
prometheusservice?: string;
|
|
@@ -17899,6 +17919,10 @@ export declare namespace dms {
|
|
|
17899
17919
|
* ARN of the IAM Role with permissions to write to the OpenSearch cluster.
|
|
17900
17920
|
*/
|
|
17901
17921
|
serviceAccessRoleArn: string;
|
|
17922
|
+
/**
|
|
17923
|
+
* Enable to migrate documentation using the documentation type `_doc`. OpenSearch and an Elasticsearch clusters only support the _doc documentation type in versions 7.x and later. The default value is `false`.
|
|
17924
|
+
*/
|
|
17925
|
+
useNewMappingType?: boolean;
|
|
17902
17926
|
}
|
|
17903
17927
|
interface EndpointKafkaSettings {
|
|
17904
17928
|
/**
|
|
@@ -18038,6 +18062,72 @@ export declare namespace dms {
|
|
|
18038
18062
|
*/
|
|
18039
18063
|
nestingLevel?: string;
|
|
18040
18064
|
}
|
|
18065
|
+
interface EndpointPostgresSettings {
|
|
18066
|
+
/**
|
|
18067
|
+
* For use with change data capture (CDC) only, this attribute has AWS DMS bypass foreign keys and user triggers to reduce the time it takes to bulk load data.
|
|
18068
|
+
*/
|
|
18069
|
+
afterConnectScript?: string;
|
|
18070
|
+
/**
|
|
18071
|
+
* The Babelfish for Aurora PostgreSQL database name for the endpoint.
|
|
18072
|
+
*/
|
|
18073
|
+
babelfishDatabaseName?: string;
|
|
18074
|
+
/**
|
|
18075
|
+
* To capture DDL events, AWS DMS creates various artifacts in the PostgreSQL database when the task starts.
|
|
18076
|
+
*/
|
|
18077
|
+
captureDdls?: boolean;
|
|
18078
|
+
/**
|
|
18079
|
+
* Specifies the default behavior of the replication's handling of PostgreSQL- compatible endpoints that require some additional configuration, such as Babelfish endpoints.
|
|
18080
|
+
*/
|
|
18081
|
+
databaseMode?: string;
|
|
18082
|
+
/**
|
|
18083
|
+
* Sets the schema in which the operational DDL database artifacts are created. Default is `public`.
|
|
18084
|
+
*/
|
|
18085
|
+
ddlArtifactsSchema?: string;
|
|
18086
|
+
/**
|
|
18087
|
+
* Sets the client statement timeout for the PostgreSQL instance, in seconds. Default value is `60`.
|
|
18088
|
+
*/
|
|
18089
|
+
executeTimeout?: number;
|
|
18090
|
+
/**
|
|
18091
|
+
* When set to `true`, this value causes a task to fail if the actual size of a LOB column is greater than the specified `LobMaxSize`. Default is `false`.
|
|
18092
|
+
*/
|
|
18093
|
+
failTasksOnLobTruncation?: boolean;
|
|
18094
|
+
/**
|
|
18095
|
+
* The write-ahead log (WAL) heartbeat feature mimics a dummy transaction. By doing this, it prevents idle logical replication slots from holding onto old WAL logs, which can result in storage full situations on the source.
|
|
18096
|
+
*/
|
|
18097
|
+
heartbeatEnable?: boolean;
|
|
18098
|
+
/**
|
|
18099
|
+
* Sets the WAL heartbeat frequency (in minutes). Default value is `5`.
|
|
18100
|
+
*/
|
|
18101
|
+
heartbeatFrequency?: number;
|
|
18102
|
+
/**
|
|
18103
|
+
* Sets the schema in which the heartbeat artifacts are created. Default value is `public`.
|
|
18104
|
+
*/
|
|
18105
|
+
heartbeatSchema?: string;
|
|
18106
|
+
/**
|
|
18107
|
+
* You can use PostgreSQL endpoint settings to map a boolean as a boolean from your PostgreSQL source to a Amazon Redshift target. Default value is `false`.
|
|
18108
|
+
*/
|
|
18109
|
+
mapBooleanAsBoolean?: boolean;
|
|
18110
|
+
/**
|
|
18111
|
+
* Optional When true, DMS migrates JSONB values as CLOB.
|
|
18112
|
+
*/
|
|
18113
|
+
mapJsonbAsClob?: boolean;
|
|
18114
|
+
/**
|
|
18115
|
+
* Optional When true, DMS migrates LONG values as VARCHAR.
|
|
18116
|
+
*/
|
|
18117
|
+
mapLongVarcharAs?: string;
|
|
18118
|
+
/**
|
|
18119
|
+
* Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL. Default is `32,768 KB`.
|
|
18120
|
+
*/
|
|
18121
|
+
maxFileSize?: number;
|
|
18122
|
+
/**
|
|
18123
|
+
* Specifies the plugin to use to create a replication slot. Valid values: `pglogical`, `testDecoding`.
|
|
18124
|
+
*/
|
|
18125
|
+
pluginName?: string;
|
|
18126
|
+
/**
|
|
18127
|
+
* Sets the name of a previously created logical replication slot for a CDC load of the PostgreSQL source instance.
|
|
18128
|
+
*/
|
|
18129
|
+
slotName?: string;
|
|
18130
|
+
}
|
|
18041
18131
|
interface EndpointRedisSettings {
|
|
18042
18132
|
/**
|
|
18043
18133
|
* The password provided with the auth-role and auth-token options of the AuthType setting for a Redis target endpoint.
|
|
@@ -18200,7 +18290,7 @@ export declare namespace dms {
|
|
|
18200
18290
|
*/
|
|
18201
18291
|
includeOpForFullLoad?: boolean;
|
|
18202
18292
|
/**
|
|
18203
|
-
*
|
|
18293
|
+
* Specifies the maximum size (in KB) of any .csv file used to transfer data to PostgreSQL. Default is `32,768 KB`.
|
|
18204
18294
|
*/
|
|
18205
18295
|
maxFileSize?: number;
|
|
18206
18296
|
/**
|
|
@@ -18289,6 +18379,24 @@ export declare namespace dms {
|
|
|
18289
18379
|
extractDocId: string;
|
|
18290
18380
|
nestingLevel: string;
|
|
18291
18381
|
}
|
|
18382
|
+
interface GetEndpointPostgresSetting {
|
|
18383
|
+
afterConnectScript: string;
|
|
18384
|
+
babelfishDatabaseName: string;
|
|
18385
|
+
captureDdls: boolean;
|
|
18386
|
+
databaseMode: string;
|
|
18387
|
+
ddlArtifactsSchema: string;
|
|
18388
|
+
executeTimeout: number;
|
|
18389
|
+
failTasksOnLobTruncation: boolean;
|
|
18390
|
+
heartbeatEnable: boolean;
|
|
18391
|
+
heartbeatFrequency: number;
|
|
18392
|
+
heartbeatSchema: string;
|
|
18393
|
+
mapBooleanAsBoolean: boolean;
|
|
18394
|
+
mapJsonbAsClob: boolean;
|
|
18395
|
+
mapLongVarcharAs: string;
|
|
18396
|
+
maxFileSize: number;
|
|
18397
|
+
pluginName: string;
|
|
18398
|
+
slotName: string;
|
|
18399
|
+
}
|
|
18292
18400
|
interface GetEndpointRedisSetting {
|
|
18293
18401
|
authPassword: string;
|
|
18294
18402
|
authType: string;
|
|
@@ -28106,6 +28214,10 @@ export declare namespace finspace {
|
|
|
28106
28214
|
* Name of the KX database.
|
|
28107
28215
|
*/
|
|
28108
28216
|
databaseName: string;
|
|
28217
|
+
/**
|
|
28218
|
+
* The name of the dataview to be used for caching historical data on disk. You cannot update to a different dataview name once a cluster is created. Use `lifecycle` `ignoreChanges` for database to prevent any undesirable behaviors.
|
|
28219
|
+
*/
|
|
28220
|
+
dataviewName?: string;
|
|
28109
28221
|
}
|
|
28110
28222
|
interface KxClusterDatabaseCacheConfiguration {
|
|
28111
28223
|
/**
|
|
@@ -28121,12 +28233,41 @@ export declare namespace finspace {
|
|
|
28121
28233
|
/**
|
|
28122
28234
|
* Size of temporary storage in gigabytes. Must be between 10 and 16000.
|
|
28123
28235
|
*/
|
|
28124
|
-
size
|
|
28236
|
+
size?: number;
|
|
28125
28237
|
/**
|
|
28126
28238
|
* Type of writeable storage space for temporarily storing your savedown data. The valid values are:
|
|
28127
28239
|
* * SDS01 - This type represents 3000 IOPS and io2 ebs volume type.
|
|
28128
28240
|
*/
|
|
28129
|
-
type
|
|
28241
|
+
type?: string;
|
|
28242
|
+
/**
|
|
28243
|
+
* The name of the kdb volume that you want to use as writeable save-down storage for clusters.
|
|
28244
|
+
*/
|
|
28245
|
+
volumeName?: string;
|
|
28246
|
+
}
|
|
28247
|
+
interface KxClusterScalingGroupConfiguration {
|
|
28248
|
+
/**
|
|
28249
|
+
* The number of vCPUs that you want to reserve for each node of this kdb cluster on the scaling group host.
|
|
28250
|
+
*/
|
|
28251
|
+
cpu?: number;
|
|
28252
|
+
/**
|
|
28253
|
+
* An optional hard limit on the amount of memory a kdb cluster can use.
|
|
28254
|
+
*/
|
|
28255
|
+
memoryLimit?: number;
|
|
28256
|
+
/**
|
|
28257
|
+
* A reservation of the minimum amount of memory that should be available on the scaling group for a kdb cluster to be successfully placed in a scaling group.
|
|
28258
|
+
*/
|
|
28259
|
+
memoryReservation: number;
|
|
28260
|
+
/**
|
|
28261
|
+
* The number of kdb cluster nodes.
|
|
28262
|
+
*/
|
|
28263
|
+
nodeCount: number;
|
|
28264
|
+
/**
|
|
28265
|
+
* A unique identifier for the kdb scaling group.
|
|
28266
|
+
*/
|
|
28267
|
+
scalingGroupName: string;
|
|
28268
|
+
}
|
|
28269
|
+
interface KxClusterTickerplantLogConfiguration {
|
|
28270
|
+
tickerplantLogVolumes: string[];
|
|
28130
28271
|
}
|
|
28131
28272
|
interface KxClusterVpcConfiguration {
|
|
28132
28273
|
/**
|
|
@@ -28144,6 +28285,16 @@ export declare namespace finspace {
|
|
|
28144
28285
|
*/
|
|
28145
28286
|
vpcId: string;
|
|
28146
28287
|
}
|
|
28288
|
+
interface KxDataviewSegmentConfiguration {
|
|
28289
|
+
/**
|
|
28290
|
+
* The database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume.
|
|
28291
|
+
*/
|
|
28292
|
+
dbPaths: string[];
|
|
28293
|
+
/**
|
|
28294
|
+
* The name of the volume that you want to attach to a dataview. This volume must be in the same availability zone as the dataview that you are attaching to.
|
|
28295
|
+
*/
|
|
28296
|
+
volumeName: string;
|
|
28297
|
+
}
|
|
28147
28298
|
interface KxEnvironmentCustomDnsConfiguration {
|
|
28148
28299
|
/**
|
|
28149
28300
|
* IP address of the DNS server.
|
|
@@ -28214,6 +28365,21 @@ export declare namespace finspace {
|
|
|
28214
28365
|
*/
|
|
28215
28366
|
to: number;
|
|
28216
28367
|
}
|
|
28368
|
+
interface KxVolumeAttachedCluster {
|
|
28369
|
+
clusterName: string;
|
|
28370
|
+
clusterStatus: string;
|
|
28371
|
+
clusterType: string;
|
|
28372
|
+
}
|
|
28373
|
+
interface KxVolumeNas1Configuration {
|
|
28374
|
+
/**
|
|
28375
|
+
* The size of the network attached storage.
|
|
28376
|
+
*/
|
|
28377
|
+
size: number;
|
|
28378
|
+
/**
|
|
28379
|
+
* The type of file system volume. Currently, FinSpace only supports the `NAS_1` volume type. When you select the `NAS_1` volume type, you must also provide `nas1Configuration`.
|
|
28380
|
+
*/
|
|
28381
|
+
type: string;
|
|
28382
|
+
}
|
|
28217
28383
|
}
|
|
28218
28384
|
export declare namespace fis {
|
|
28219
28385
|
interface ExperimentTemplateAction {
|
|
@@ -37198,6 +37364,11 @@ export declare namespace lb {
|
|
|
37198
37364
|
enabled: boolean;
|
|
37199
37365
|
prefix: string;
|
|
37200
37366
|
}
|
|
37367
|
+
interface GetLoadBalancerConnectionLog {
|
|
37368
|
+
bucket: string;
|
|
37369
|
+
enabled: boolean;
|
|
37370
|
+
prefix: string;
|
|
37371
|
+
}
|
|
37201
37372
|
interface GetLoadBalancerSubnetMapping {
|
|
37202
37373
|
allocationId: string;
|
|
37203
37374
|
ipv6Address: string;
|
|
@@ -37711,6 +37882,20 @@ export declare namespace lb {
|
|
|
37711
37882
|
*/
|
|
37712
37883
|
prefix?: string;
|
|
37713
37884
|
}
|
|
37885
|
+
interface LoadBalancerConnectionLogs {
|
|
37886
|
+
/**
|
|
37887
|
+
* The S3 bucket name to store the logs in.
|
|
37888
|
+
*/
|
|
37889
|
+
bucket: string;
|
|
37890
|
+
/**
|
|
37891
|
+
* Boolean to enable / disable `connectionLogs`. Defaults to `false`, even when `bucket` is specified.
|
|
37892
|
+
*/
|
|
37893
|
+
enabled?: boolean;
|
|
37894
|
+
/**
|
|
37895
|
+
* The S3 bucket prefix. Logs are stored in the root if not configured.
|
|
37896
|
+
*/
|
|
37897
|
+
prefix?: string;
|
|
37898
|
+
}
|
|
37714
37899
|
interface LoadBalancerSubnetMapping {
|
|
37715
37900
|
/**
|
|
37716
37901
|
* The allocation ID of the Elastic IP address for an internet-facing load balancer.
|
|
@@ -41014,6 +41199,9 @@ export declare namespace medialive {
|
|
|
41014
41199
|
* This clear time defines the requirement a recovered input must meet to be considered healthy. The input must have no failover conditions for this length of time. Enter a time in milliseconds. This value is particularly important if the input\_preference for the failover pair is set to PRIMARY\_INPUT\_PREFERRED, because after this time, MediaLive will switch back to the primary input.
|
|
41015
41200
|
*/
|
|
41016
41201
|
errorClearTimeMsec?: number;
|
|
41202
|
+
/**
|
|
41203
|
+
* A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input. See Failover Condition Block for more details.
|
|
41204
|
+
*/
|
|
41017
41205
|
failoverConditions?: outputs.medialive.ChannelInputAttachmentAutomaticInputFailoverSettingsFailoverCondition[];
|
|
41018
41206
|
/**
|
|
41019
41207
|
* Input preference when deciding which input to make active when a previously failed input has recovered.
|
|
@@ -46348,6 +46536,38 @@ export declare namespace pipes {
|
|
|
46348
46536
|
invocationType: string;
|
|
46349
46537
|
}
|
|
46350
46538
|
}
|
|
46539
|
+
export declare namespace polly {
|
|
46540
|
+
interface GetVoicesVoice {
|
|
46541
|
+
/**
|
|
46542
|
+
* Additional codes for languages available for the specified voice in addition to its default language.
|
|
46543
|
+
*/
|
|
46544
|
+
additionalLanguageCodes: string[];
|
|
46545
|
+
/**
|
|
46546
|
+
* Gender of the voice.
|
|
46547
|
+
*/
|
|
46548
|
+
gender: string;
|
|
46549
|
+
/**
|
|
46550
|
+
* Amazon Polly assigned voice ID.
|
|
46551
|
+
*/
|
|
46552
|
+
id: string;
|
|
46553
|
+
/**
|
|
46554
|
+
* Language identification tag for filtering the list of voices returned. If not specified, all available voices are returned.
|
|
46555
|
+
*/
|
|
46556
|
+
languageCode: string;
|
|
46557
|
+
/**
|
|
46558
|
+
* Human readable name of the language in English.
|
|
46559
|
+
*/
|
|
46560
|
+
languageName: string;
|
|
46561
|
+
/**
|
|
46562
|
+
* Name of the voice.
|
|
46563
|
+
*/
|
|
46564
|
+
name: string;
|
|
46565
|
+
/**
|
|
46566
|
+
* Specifies which engines are supported by a given voice.
|
|
46567
|
+
*/
|
|
46568
|
+
supportedEngines: string[];
|
|
46569
|
+
}
|
|
46570
|
+
}
|
|
46351
46571
|
export declare namespace pricing {
|
|
46352
46572
|
interface GetProductFilter {
|
|
46353
46573
|
/**
|
|
@@ -57420,6 +57640,20 @@ export declare namespace ssoadmin {
|
|
|
57420
57640
|
*/
|
|
57421
57641
|
path?: string;
|
|
57422
57642
|
}
|
|
57643
|
+
interface GetApplicationAssignmentsApplicationAssignment {
|
|
57644
|
+
/**
|
|
57645
|
+
* ARN of the application.
|
|
57646
|
+
*/
|
|
57647
|
+
applicationArn: string;
|
|
57648
|
+
/**
|
|
57649
|
+
* An identifier for an object in IAM Identity Center, such as a user or group.
|
|
57650
|
+
*/
|
|
57651
|
+
principalId: string;
|
|
57652
|
+
/**
|
|
57653
|
+
* Entity type for which the assignment will be created. Valid values are `USER` or `GROUP`.
|
|
57654
|
+
*/
|
|
57655
|
+
principalType: string;
|
|
57656
|
+
}
|
|
57423
57657
|
interface GetApplicationPortalOption {
|
|
57424
57658
|
signInOptions?: outputs.ssoadmin.GetApplicationPortalOptionSignInOption[];
|
|
57425
57659
|
visibility: string;
|
|
@@ -57456,6 +57690,20 @@ export declare namespace ssoadmin {
|
|
|
57456
57690
|
*/
|
|
57457
57691
|
iconUrl: string;
|
|
57458
57692
|
}
|
|
57693
|
+
interface GetPrincipalApplicationAssignmentsApplicationAssignment {
|
|
57694
|
+
/**
|
|
57695
|
+
* ARN of the application.
|
|
57696
|
+
*/
|
|
57697
|
+
applicationArn: string;
|
|
57698
|
+
/**
|
|
57699
|
+
* An identifier for an object in IAM Identity Center, such as a user or group.
|
|
57700
|
+
*/
|
|
57701
|
+
principalId: string;
|
|
57702
|
+
/**
|
|
57703
|
+
* Entity type for which the assignment will be created. Valid values are `USER` or `GROUP`.
|
|
57704
|
+
*/
|
|
57705
|
+
principalType: string;
|
|
57706
|
+
}
|
|
57459
57707
|
interface InstanceAccessControlAttributesAttribute {
|
|
57460
57708
|
/**
|
|
57461
57709
|
* The name of the attribute associated with your identities in your identity source. This is used to map a specified attribute in your identity source with an attribute in AWS SSO.
|
|
@@ -57492,6 +57740,30 @@ export declare namespace ssoadmin {
|
|
|
57492
57740
|
*/
|
|
57493
57741
|
path?: string;
|
|
57494
57742
|
}
|
|
57743
|
+
interface TrustedTokenIssuerTrustedTokenIssuerConfiguration {
|
|
57744
|
+
/**
|
|
57745
|
+
* A block that describes the settings for a trusted token issuer that works with OpenID Connect (OIDC) by using JSON Web Tokens (JWT). See Documented below below.
|
|
57746
|
+
*/
|
|
57747
|
+
oidcJwtConfiguration?: outputs.ssoadmin.TrustedTokenIssuerTrustedTokenIssuerConfigurationOidcJwtConfiguration;
|
|
57748
|
+
}
|
|
57749
|
+
interface TrustedTokenIssuerTrustedTokenIssuerConfigurationOidcJwtConfiguration {
|
|
57750
|
+
/**
|
|
57751
|
+
* Specifies the path of the source attribute in the JWT from the trusted token issuer.
|
|
57752
|
+
*/
|
|
57753
|
+
claimAttributePath: string;
|
|
57754
|
+
/**
|
|
57755
|
+
* Specifies path of the destination attribute in a JWT from IAM Identity Center. The attribute mapped by this JMESPath expression is compared against the attribute mapped by `claimAttributePath` when a trusted token issuer token is exchanged for an IAM Identity Center token.
|
|
57756
|
+
*/
|
|
57757
|
+
identityStoreAttributePath: string;
|
|
57758
|
+
/**
|
|
57759
|
+
* Specifies the URL that IAM Identity Center uses for OpenID Discovery. OpenID Discovery is used to obtain the information required to verify the tokens that the trusted token issuer generates.
|
|
57760
|
+
*/
|
|
57761
|
+
issuerUrl: string;
|
|
57762
|
+
/**
|
|
57763
|
+
* The method that the trusted token issuer can use to retrieve the JSON Web Key Set used to verify a JWT. Valid values are `OPEN_ID_DISCOVERY`
|
|
57764
|
+
*/
|
|
57765
|
+
jwksRetrievalOption: string;
|
|
57766
|
+
}
|
|
57495
57767
|
}
|
|
57496
57768
|
export declare namespace storagegateway {
|
|
57497
57769
|
interface FileSystemAssociationCacheAttributes {
|