mirror of https://github.com/smithy-lang/smithy-rs
Prepare for a release (#790)
* Update AWS models * Version bump * Update changelog * Correct version numbers in changelog
This commit is contained in:
parent
6c9402b40d
commit
84b6098598
|
@ -1,6 +1,9 @@
|
|||
vNext (Month Day, Year)
|
||||
=======================
|
||||
|
||||
v0.27 (October 20th, 2021)
|
||||
==========================
|
||||
|
||||
**Breaking Changes**
|
||||
|
||||
- :warning: All Smithy runtime crates have been renamed to have an `aws-` prefix. This may require code changes:
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
vNext (Month Day, Year)
|
||||
=======================
|
||||
|
||||
v0.0.22-alpha (October 20th, 2021)
|
||||
==================================
|
||||
|
||||
**Breaking Changes**
|
||||
|
||||
- `CredentialsError` variants became non-exhaustive. This makes them impossible to construct directly outside of the `aws_types` crate. In order to construct credentials errors, new methods have been added for each variant. Instead of `CredentialsError::Unhandled(...)`, you should instead use `CredentialsError::unhandled`. Matching methods exist for all variants. (#781)
|
||||
|
@ -32,8 +35,9 @@ vNext (Month Day, Year)
|
|||
**New this week**
|
||||
|
||||
- Moved the contents of `aws-auth` into the `aws-http` runtime crate (smithy-rs#783)
|
||||
- Fix instances where docs were missing in generated services and add `#[warn_missing_docs]` (smithy-rs#779)
|
||||
- Fix instances where docs were missing in generated services and add `#[warn_missing_docs]` (smithy-rs#779)
|
||||
- Add tracing output for resolved AWS endpoint (smithy-rs#784)
|
||||
- Update AWS service models (smithy-rs#790)
|
||||
- Add support for the following Glacier customizations:
|
||||
- Set the ApiVersion header (smithy-rs#138, #787)
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -50,8 +50,14 @@
|
|||
"type": "structure",
|
||||
"members": {
|
||||
"ExportRevisionToS3": {
|
||||
"target": "com.amazonaws.dataexchange#AutoExportRevisionToS3RequestDetails"
|
||||
"target": "com.amazonaws.dataexchange#AutoExportRevisionToS3RequestDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Details for the export revision to Amazon S3 action.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>What occurs after a certain event.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#Arn": {
|
||||
|
@ -92,8 +98,20 @@
|
|||
"type": "structure",
|
||||
"members": {
|
||||
"S3SnapshotAsset": {
|
||||
"target": "com.amazonaws.dataexchange#S3SnapshotAsset"
|
||||
"target": "com.amazonaws.dataexchange#S3SnapshotAsset",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The S3 object that is the asset.</p>"
|
||||
}
|
||||
},
|
||||
"RedshiftDataShareAsset": {
|
||||
"target": "com.amazonaws.dataexchange#RedshiftDataShareAsset",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon Redshift datashare that is the asset.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the asset.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#AssetEntry": {
|
||||
|
@ -109,14 +127,14 @@
|
|||
"AssetDetails": {
|
||||
"target": "com.amazonaws.dataexchange#AssetDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the asset, including its size.</p>",
|
||||
"smithy.api#documentation": "<p>Information about the asset.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>",
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -170,7 +188,7 @@
|
|||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>An asset in AWS Data Exchange is a piece of data that can be stored as an S3 object. The asset can be a structured data file, an image file, or some other data file. When you create an import job for your files, you create an asset in AWS Data Exchange for each of those files.</p>"
|
||||
"smithy.api#documentation": "<p>An asset in AWS Data Exchange is a piece of data. The asset can be a structured data file, an image file, or some other data file that can be stored as an S3 object, or an Amazon Redshift datashare (Preview). When you create an import job for your files, you create an asset in AWS Data Exchange for each of those files.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#AssetName": {
|
||||
|
@ -204,11 +222,15 @@
|
|||
"com.amazonaws.dataexchange#AssetType": {
|
||||
"type": "string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>",
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>",
|
||||
"smithy.api#enum": [
|
||||
{
|
||||
"value": "S3_SNAPSHOT",
|
||||
"name": "S3_SNAPSHOT"
|
||||
},
|
||||
{
|
||||
"value": "REDSHIFT_DATA_SHARE",
|
||||
"name": "REDSHIFT_DATA_SHARE"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -238,11 +260,15 @@
|
|||
"type": "structure",
|
||||
"members": {
|
||||
"Encryption": {
|
||||
"target": "com.amazonaws.dataexchange#ExportServerSideEncryption"
|
||||
"target": "com.amazonaws.dataexchange#ExportServerSideEncryption",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Encryption configuration for the auto export job.</p>"
|
||||
}
|
||||
},
|
||||
"RevisionDestination": {
|
||||
"target": "com.amazonaws.dataexchange#AutoExportRevisionDestinationEntry",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
|
@ -399,7 +425,7 @@
|
|||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>",
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -440,7 +466,7 @@
|
|||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>"
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>"
|
||||
}
|
||||
},
|
||||
"CreatedAt": {
|
||||
|
@ -773,7 +799,7 @@
|
|||
"Arn": {
|
||||
"target": "com.amazonaws.dataexchange#Arn",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ARN for the revision</p>"
|
||||
"smithy.api#documentation": "<p>The ARN for the revision.</p>"
|
||||
}
|
||||
},
|
||||
"Comment": {
|
||||
|
@ -941,7 +967,7 @@
|
|||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>",
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1220,19 +1246,34 @@
|
|||
"type": "structure",
|
||||
"members": {
|
||||
"ImportAssetFromSignedUrlJobErrorDetails": {
|
||||
"target": "com.amazonaws.dataexchange#ImportAssetFromSignedUrlJobErrorDetails"
|
||||
"target": "com.amazonaws.dataexchange#ImportAssetFromSignedUrlJobErrorDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the job error.</p>"
|
||||
}
|
||||
},
|
||||
"ImportAssetsFromS3JobErrorDetails": {
|
||||
"target": "com.amazonaws.dataexchange#ListOfAssetSourceEntry"
|
||||
"target": "com.amazonaws.dataexchange#ListOfAssetSourceEntry",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the job error.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the job error.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#Event": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"RevisionPublished": {
|
||||
"target": "com.amazonaws.dataexchange#RevisionPublished"
|
||||
"target": "com.amazonaws.dataexchange#RevisionPublished",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>What occurs to start the revision publish action.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>What occurs to start an action.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#EventActionEntry": {
|
||||
|
@ -1248,7 +1289,7 @@
|
|||
"Arn": {
|
||||
"target": "com.amazonaws.dataexchange#Arn",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ARN for the event action.</p>",
|
||||
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) for the event action.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1490,6 +1531,12 @@
|
|||
"smithy.api#documentation": "<p>The destination in Amazon S3 where the revision is exported.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"EventActionArn": {
|
||||
"target": "com.amazonaws.dataexchange#__string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the event action.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
|
@ -1589,13 +1636,13 @@
|
|||
"AssetDetails": {
|
||||
"target": "com.amazonaws.dataexchange#AssetDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the asset, including its size.</p>"
|
||||
"smithy.api#documentation": "<p>Information about the asset.</p>"
|
||||
}
|
||||
},
|
||||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>"
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>"
|
||||
}
|
||||
},
|
||||
"CreatedAt": {
|
||||
|
@ -1619,7 +1666,7 @@
|
|||
"Name": {
|
||||
"target": "com.amazonaws.dataexchange#AssetName",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The name of the asset When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.</p>"
|
||||
"smithy.api#documentation": "<p>The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.</p>"
|
||||
}
|
||||
},
|
||||
"RevisionId": {
|
||||
|
@ -1698,7 +1745,7 @@
|
|||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>"
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>"
|
||||
}
|
||||
},
|
||||
"CreatedAt": {
|
||||
|
@ -1997,7 +2044,7 @@
|
|||
"Arn": {
|
||||
"target": "com.amazonaws.dataexchange#Arn",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ARN for the revision</p>"
|
||||
"smithy.api#documentation": "<p>The ARN for the revision.</p>"
|
||||
}
|
||||
},
|
||||
"Comment": {
|
||||
|
@ -2062,9 +2109,13 @@
|
|||
"AssetName": {
|
||||
"target": "com.amazonaws.dataexchange#AssetName",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the job error.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the job error.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#ImportAssetFromSignedUrlRequestDetails": {
|
||||
|
@ -2109,7 +2160,7 @@
|
|||
"AssetName": {
|
||||
"target": "com.amazonaws.dataexchange#AssetName",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The name for the asset associated with this import response.</p>",
|
||||
"smithy.api#documentation": "<p>The name for the asset associated with this import job.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -2150,6 +2201,64 @@
|
|||
"smithy.api#documentation": "<p>The details in the response for an import request, including the signed URL and other information.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#ImportAssetsFromRedshiftDataSharesRequestDetails": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"AssetSources": {
|
||||
"target": "com.amazonaws.dataexchange#ListOfRedshiftDataShareAssetSourceEntry",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "A list of Amazon Redshift datashare assets.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"DataSetId": {
|
||||
"target": "com.amazonaws.dataexchange#Id",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The unique identifier for the data set associated with this import job.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"RevisionId": {
|
||||
"target": "com.amazonaws.dataexchange#Id",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The unique identifier for the revision associated with this import job.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "Details from an import from Amazon Redshift datashare request."
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#ImportAssetsFromRedshiftDataSharesResponseDetails": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"AssetSources": {
|
||||
"target": "com.amazonaws.dataexchange#ListOfRedshiftDataShareAssetSourceEntry",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "A list of Amazon Redshift datashare asset sources.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"DataSetId": {
|
||||
"target": "com.amazonaws.dataexchange#Id",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The unique identifier for the data set associated with this import job.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"RevisionId": {
|
||||
"target": "com.amazonaws.dataexchange#Id",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The unique identifier for the revision associated with this import job.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "Details from an import from Amazon Redshift datashare response."
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#ImportAssetsFromS3RequestDetails": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
|
@ -2299,7 +2408,10 @@
|
|||
}
|
||||
},
|
||||
"Details": {
|
||||
"target": "com.amazonaws.dataexchange#Details"
|
||||
"target": "com.amazonaws.dataexchange#Details",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The details about the job error.</p>"
|
||||
}
|
||||
},
|
||||
"LimitName": {
|
||||
"target": "com.amazonaws.dataexchange#JobErrorLimitName",
|
||||
|
@ -2349,6 +2461,10 @@
|
|||
{
|
||||
"value": "Asset size in GB",
|
||||
"name": "Asset_size_in_GB"
|
||||
},
|
||||
{
|
||||
"value": "Amazon Redshift datashare assets per revision",
|
||||
"name": "Amazon_Redshift_datashare_assets_per_revision"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -2409,14 +2525,6 @@
|
|||
"value": "Asset size in GB",
|
||||
"name": "Asset_size_in_GB"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to import assets from Amazon S3",
|
||||
"name": "Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to import assets from a signed URL",
|
||||
"name": "Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to export assets to Amazon S3",
|
||||
"name": "Concurrent_in_progress_jobs_to_export_assets_to_Amazon_S3"
|
||||
|
@ -2425,6 +2533,14 @@
|
|||
"value": "Concurrent in progress jobs to export assets to a signed URL",
|
||||
"name": "Concurrent_in_progress_jobs_to_export_assets_to_a_signed_URL"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to import assets from Amazon S3",
|
||||
"name": "Concurrent_in_progress_jobs_to_import_assets_from_Amazon_S3"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to import assets from a signed URL",
|
||||
"name": "Concurrent_in_progress_jobs_to_import_assets_from_a_signed_URL"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to export revisions to Amazon S3",
|
||||
"name": "Concurrent_in_progress_jobs_to_export_revisions_to_Amazon_S3"
|
||||
|
@ -2436,6 +2552,22 @@
|
|||
{
|
||||
"value": "Auto export event actions per data set",
|
||||
"name": "Auto_export_event_actions_per_data_set"
|
||||
},
|
||||
{
|
||||
"value": "Amazon Redshift datashare assets per import job from Redshift",
|
||||
"name": "Amazon_Redshift_datashare_assets_per_import_job_from_Redshift"
|
||||
},
|
||||
{
|
||||
"value": "Concurrent in progress jobs to import assets from Amazon Redshift datashares",
|
||||
"name": "Concurrent_in_progress_jobs_to_import_assets_from_Amazon_Redshift_datashares"
|
||||
},
|
||||
{
|
||||
"value": "Revisions per Amazon Redshift datashare data set",
|
||||
"name": "Revisions_per_Amazon_Redshift_datashare_data_set"
|
||||
},
|
||||
{
|
||||
"value": "Amazon Redshift datashare assets per revision",
|
||||
"name": "Amazon_Redshift_datashare_assets_per_revision"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -2816,6 +2948,15 @@
|
|||
"target": "com.amazonaws.dataexchange#JobError"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#ListOfRedshiftDataShareAssetSourceEntry": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
"target": "com.amazonaws.dataexchange#RedshiftDataShareAssetSourceEntry"
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "A list of Amazon Redshift datashare asset sources."
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#ListOfRevisionDestinationEntry": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
|
@ -3020,9 +3161,43 @@
|
|||
"ProductId": {
|
||||
"target": "com.amazonaws.dataexchange#__string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The product ID of the origin of the data set.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the origin of the data set.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#RedshiftDataShareAsset": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"Arn": {
|
||||
"target": "com.amazonaws.dataexchange#__string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The Amazon Resource Name (ARN) of the datashare asset.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The Amazon Redshift datashare asset."
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#RedshiftDataShareAssetSourceEntry": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"DataShareArn": {
|
||||
"target": "com.amazonaws.dataexchange#__string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "The Amazon Resource Name (ARN) of the datashare asset.",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The source of the Amazon Redshift datashare asset.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#RequestDetails": {
|
||||
|
@ -3057,6 +3232,12 @@
|
|||
"traits": {
|
||||
"smithy.api#documentation": "<p>Details about the import from Amazon S3 request.</p>"
|
||||
}
|
||||
},
|
||||
"ImportAssetsFromRedshiftDataShares": {
|
||||
"target": "com.amazonaws.dataexchange#ImportAssetsFromRedshiftDataSharesRequestDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Details from an import from Amazon Redshift datashare request.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
|
@ -3151,6 +3332,12 @@
|
|||
"traits": {
|
||||
"smithy.api#documentation": "<p>Details for the import from Amazon S3 response.</p>"
|
||||
}
|
||||
},
|
||||
"ImportAssetsFromRedshiftDataShares": {
|
||||
"target": "com.amazonaws.dataexchange#ImportAssetsFromRedshiftDataSharesResponseDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Details from an import from Amazon Redshift datashare response.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
|
@ -3252,9 +3439,13 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.dataexchange#Id",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The data set ID of the published revision.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the published revision.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.dataexchange#S3SnapshotAsset": {
|
||||
|
@ -3487,6 +3678,10 @@
|
|||
{
|
||||
"value": "EXPORT_REVISIONS_TO_S3",
|
||||
"name": "EXPORT_REVISIONS_TO_S3"
|
||||
},
|
||||
{
|
||||
"value": "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES",
|
||||
"name": "IMPORT_ASSETS_FROM_REDSHIFT_DATA_SHARES"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -3614,13 +3809,13 @@
|
|||
"AssetDetails": {
|
||||
"target": "com.amazonaws.dataexchange#AssetDetails",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Information about the asset, including its size.</p>"
|
||||
"smithy.api#documentation": "<p>Information about the asset.</p>"
|
||||
}
|
||||
},
|
||||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>"
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>"
|
||||
}
|
||||
},
|
||||
"CreatedAt": {
|
||||
|
@ -3644,7 +3839,7 @@
|
|||
"Name": {
|
||||
"target": "com.amazonaws.dataexchange#AssetName",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The name of the asset When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.</p>"
|
||||
"smithy.api#documentation": "<p>The name of the asset. When importing from Amazon S3, the S3 object key is used as the asset name. When exporting to Amazon S3, the asset name is used as default target S3 object key.</p>"
|
||||
}
|
||||
},
|
||||
"RevisionId": {
|
||||
|
@ -3741,7 +3936,7 @@
|
|||
"AssetType": {
|
||||
"target": "com.amazonaws.dataexchange#AssetType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.</p>"
|
||||
"smithy.api#documentation": "<p>The type of asset that is added to a data set.</p>"
|
||||
}
|
||||
},
|
||||
"CreatedAt": {
|
||||
|
|
|
@ -2004,18 +2004,18 @@
|
|||
"TransitionToIA": {
|
||||
"target": "com.amazonaws.efs#TransitionToIARules",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>\n Describes the period of time that a file is not accessed, after which it transitions to the IA storage class. Metadata\n operations such as listing the contents of a directory don't count as file access\n events.</p>"
|
||||
"smithy.api#documentation": "<p>\n Describes the period of time that a file is not accessed, after which it transitions to IA storage. Metadata\n operations such as listing the contents of a directory don't count as file access\n events.</p>"
|
||||
}
|
||||
},
|
||||
"TransitionToPrimaryStorageClass": {
|
||||
"target": "com.amazonaws.efs#TransitionToPrimaryStorageClassRules",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Describes the policy used to transition a file from infequent access storage to primary storage.</p>"
|
||||
"smithy.api#documentation": "<p>Describes when to transition a file from IA storage to primary storage. Metadata\n operations such as listing the contents of a directory don't count as file access\n events.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Describes a policy used by EFS lifecycle management to transition files to the Infrequent\n Access (IA) storage class.</p>"
|
||||
"smithy.api#documentation": "<p>Describes a policy used by EFS lifecycle management and EFS intelligent tiering that specifies when to transition \n files into and out of the file system's Infrequent Access (IA) storage class. For more information, see \n <a href=\"https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html\">EFS Intelligent‐Tiering and EFS Lifecycle Management</a>.</p>\n <note>\n <p>When using the <code>put-lifecycle-configuration</code> CLI command or the <code>PutLifecycleConfiguration</code> API action, \n Amazon EFS requires that each <code>LifecyclePolicy</code> \n object have only a single transition. This means that in a request body, <code>LifecyclePolicies</code> needs to be structured as\n an array of <code>LifecyclePolicy</code> objects, one object for each transition, <code>TransitionToIA</code>, \n <code>TransitionToPrimaryStorageClass</code>. For more information, see the request examples in <a>PutLifecycleConfiguration</a>.</p>\n </note>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.efs#ListTagsForResource": {
|
||||
|
@ -2598,7 +2598,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Use this operation to set the account preference in the current Amazon Web Services Region to use either long 17 character (63 bit) or short 8 character (32 bit) IDs for \n new EFS file systems and mount targets created. All existing resource IDs are not affected by any changes you make. You can set the ID preference during the\n opt-in period as EFS transitions to long resource IDs. For more information, \n see <a href=\"efs/latest/ug/manage-efs-resource-ids.html\">Managing Amazon EFS resource IDs</a>.</p>",
|
||||
"smithy.api#documentation": "<p>Use this operation to set the account preference in the current Amazon Web Services Region to use long 17 character (63 bit) or short 8 character (32 bit) resource IDs for \n new EFS file system and mount target resources. All existing resource IDs are not affected by any changes you make. You can set the ID preference during the\n opt-in period as EFS transitions to long resource IDs. For more information, \n see <a href=\"https://docs.aws.amazon.com/efs/latest/ug/manage-efs-resource-ids.html\">Managing Amazon EFS resource IDs</a>.</p>\n <note>\n <p>Starting in October, 2021, you will receive an error if you try to set the account preference to use the short 8 character format resource ID. \n Contact Amazon Web Services support if you receive an error and need to use short IDs for file system and mount target resources.</p>\n </note>",
|
||||
"smithy.api#http": {
|
||||
"method": "PUT",
|
||||
"uri": "/2015-02-01/account-preferences",
|
||||
|
@ -2612,7 +2612,7 @@
|
|||
"ResourceIdType": {
|
||||
"target": "com.amazonaws.efs#ResourceIdType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Specifies the EFS resource ID preference to set for the user's Amazon Web Services account, in the current Amazon Web Services Region, \n either <code>LONG_ID</code> (17 characters), or <code>SHORT_ID</code> (8 characters).</p>",
|
||||
"smithy.api#documentation": "<p>Specifies the EFS resource ID preference to set for the user's Amazon Web Services account, in the current Amazon Web Services Region, \n either <code>LONG_ID</code> (17 characters), or <code>SHORT_ID</code> (8 characters).</p>\n <note>\n <p>Starting in October, 2021, you will receive an error when setting the account preference to <code>SHORT_ID</code>. \n Contact Amazon Web Services support if you receive an error and need to use short IDs for file system and mount target resources.</p>\n </note>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
|
@ -2703,7 +2703,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Applies an Amazon EFS <code>FileSystemPolicy</code> to an Amazon EFS file system. \n A file system policy is an IAM resource-based policy and can contain multiple policy statements. \n A file system always has exactly one file system policy, which can be the default policy or \n an explicit policy set or updated using this API operation.\n EFS file system policies have a 20,000 character limit.\n When an explicit policy is set, it overrides the default policy. For more information about the default file system policy, see \n <a href=\"https://docs.aws.amazon.com/efs/latest/ug/iam-access-control-nfs-efs.html#default-filesystempolicy\">Default EFS File System Policy</a>.\n </p>\n <p>EFS file system policies have a 20,000 character limit.</p>\n <p>This operation requires permissions for the <code>elasticfilesystem:PutFileSystemPolicy</code> action.</p>",
|
||||
"smithy.api#documentation": "<p>Applies an Amazon EFS <code>FileSystemPolicy</code> to an Amazon EFS file system. \n A file system policy is an IAM resource-based policy and can contain multiple policy statements. \n A file system always has exactly one file system policy, which can be the default policy or \n an explicit policy set or updated using this API operation.\n EFS file system policies have a 20,000 character limit.\n When an explicit policy is set, it overrides the default policy. For more information about the default file system policy, see \n <a href=\"https://docs.aws.amazon.com/efs/latest/ug/iam-access-control-nfs-efs.html#default-filesystempolicy\">Default EFS File System Policy</a>.\n </p>\n <note>\n <p>EFS file system policies have a 20,000 character limit.</p>\n </note>\n <p>This operation requires permissions for the <code>elasticfilesystem:PutFileSystemPolicy</code> action.</p>",
|
||||
"smithy.api#http": {
|
||||
"method": "PUT",
|
||||
"uri": "/2015-02-01/file-systems/{FileSystemId}/policy",
|
||||
|
@ -2760,7 +2760,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Enables lifecycle management by creating a new <code>LifecycleConfiguration</code>\n object. A <code>LifecycleConfiguration</code> object defines when files in an Amazon EFS file\n system are automatically transitioned to the lower-cost EFS Infrequent Access (IA) storage class.\n To enable EFS Intelligent Tiering, set the value of <code>TransitionToPrimaryStorageClass</code> to <code>AFTER_1_ACCESS</code>.\n For more information, see <a href=\"https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html\">EFS Lifecycle Management</a>.</p>\n <p>A <code>LifecycleConfiguration</code> applies to all files in a file system.</p>\n <p>Each Amazon EFS file system supports one lifecycle configuration, which applies to all files in the file system. If a\n <code>LifecycleConfiguration</code> object already exists for the specified file system, a\n <code>PutLifecycleConfiguration</code> call modifies the existing configuration. A\n <code>PutLifecycleConfiguration</code> call with an empty <code>LifecyclePolicies</code>\n array in the request body deletes any existing <code>LifecycleConfiguration</code> and\n disables lifecycle management.</p>\n\n \n <p>In the request, specify the following: </p>\n <ul>\n <li>\n <p>The ID for the file system for which you are enabling, disabling, or modifying lifecycle management.</p>\n </li>\n <li>\n <p>A <code>LifecyclePolicies</code> array of <code>LifecyclePolicy</code> objects that\n define when files are moved to the IA storage class. The array can contain only one\n <code>LifecyclePolicy</code> item.</p>\n </li>\n </ul>\n\n <p>This operation requires permissions for the\n <code>elasticfilesystem:PutLifecycleConfiguration</code> operation.</p>\n <p>To apply a <code>LifecycleConfiguration</code> object to an encrypted file system, you\n need the same Key Management Service permissions as when you created the encrypted\n file system. </p>",
|
||||
"smithy.api#documentation": "<p>Enables lifecycle management by creating a new <code>LifecycleConfiguration</code>\n object. A <code>LifecycleConfiguration</code> object defines when files in an Amazon EFS file\n system are automatically transitioned to the lower-cost EFS Infrequent Access (IA) storage class.\n To enable EFS Intelligent Tiering, set the value of <code>TransitionToPrimaryStorageClass</code> to <code>AFTER_1_ACCESS</code>.\n For more information, see <a href=\"https://docs.aws.amazon.com/efs/latest/ug/lifecycle-management-efs.html\">EFS Lifecycle Management</a>.</p>\n \n <p>Each Amazon EFS file system supports one lifecycle configuration, which applies to all files in the file system. If a\n <code>LifecycleConfiguration</code> object already exists for the specified file system, a\n <code>PutLifecycleConfiguration</code> call modifies the existing configuration. A\n <code>PutLifecycleConfiguration</code> call with an empty <code>LifecyclePolicies</code>\n array in the request body deletes any existing <code>LifecycleConfiguration</code> and\n turns off lifecycle management for the file system.</p>\n\n \n <p>In the request, specify the following: </p>\n <ul>\n <li>\n <p>The ID for the file system for which you are enabling, disabling, or modifying lifecycle management.</p>\n </li>\n <li>\n <p>A <code>LifecyclePolicies</code> array of <code>LifecyclePolicy</code> objects that\n define when files are moved to the IA storage class. Amazon EFS requires that each <code>LifecyclePolicy</code> \n object have only have a single transition, so the <code>LifecyclePolicies</code> array needs to be structured with separate \n <code>LifecyclePolicy</code> objects. See the example requests in the following section for more information.</p>\n </li>\n </ul>\n\n <p>This operation requires permissions for the\n <code>elasticfilesystem:PutLifecycleConfiguration</code> operation.</p>\n <p>To apply a <code>LifecycleConfiguration</code> object to an encrypted file system, you\n need the same Key Management Service permissions as when you created the encrypted\n file system. </p>",
|
||||
"smithy.api#http": {
|
||||
"method": "PUT",
|
||||
"uri": "/2015-02-01/file-systems/{FileSystemId}/lifecycle-configuration",
|
||||
|
@ -2782,7 +2782,7 @@
|
|||
"LifecyclePolicies": {
|
||||
"target": "com.amazonaws.efs#LifecyclePolicies",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>An array of <code>LifecyclePolicy</code> objects that define the file system's\n <code>LifecycleConfiguration</code> object. A <code>LifecycleConfiguration</code> object\n tells lifecycle management when to transition files from the Standard storage class to the\n Infrequent Access storage class.</p>",
|
||||
"smithy.api#documentation": "<p>An array of <code>LifecyclePolicy</code> objects that define the file system's\n <code>LifecycleConfiguration</code> object. A <code>LifecycleConfiguration</code> object\n informs EFS lifecycle management and intelligent tiering of the following:</p>\n <ul>\n <li>\n <p>When to move files in the file system from primary storage to the IA storage class.</p>\n </li>\n <li>\n <p>When to move files that are in IA storage to primary storage.</p>\n </li>\n </ul>\n <note>\n <p>When using the <code>put-lifecycle-configuration</code> CLI command or the <code>PutLifecycleConfiguration</code> API action, \n Amazon EFS requires that each <code>LifecyclePolicy</code> \n object have only a single transition. This means that in a request body, <code>LifecyclePolicies</code> needs to be structured as\n an array of <code>LifecyclePolicy</code> objects, one object for each transition, <code>TransitionToIA</code>, <code>TransitionToPrimaryStorageClass</code>. \n See the example requests in the following section for more information.</p>\n </note>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7834,6 +7834,9 @@
|
|||
"smithy.api#documentation": "<p>Batch condition that must be met (specified number of events received or batch time window expired)\n before EventBridge event trigger fires.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.glue#EventQueueArn": {
|
||||
"type": "string"
|
||||
},
|
||||
"com.amazonaws.glue#ExecutionProperty": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
|
@ -15579,6 +15582,10 @@
|
|||
{
|
||||
"value": "CRAWL_NEW_FOLDERS_ONLY",
|
||||
"name": "CRAWL_NEW_FOLDERS_ONLY"
|
||||
},
|
||||
{
|
||||
"value": "CRAWL_EVENT_MODE",
|
||||
"name": "CRAWL_EVENT_MODE"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -15589,7 +15596,7 @@
|
|||
"RecrawlBehavior": {
|
||||
"target": "com.amazonaws.glue#RecrawlBehavior",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.</p>\n\t\n\t <p>A value of <code>CRAWL_EVERYTHING</code> specifies crawling the entire dataset again.</p>\n \n <p>A value of <code>CRAWL_NEW_FOLDERS_ONLY</code> specifies crawling only folders that were added since the last crawler run.</p>"
|
||||
"smithy.api#documentation": "<p>Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.</p>\n\t\n\t <p>A value of <code>CRAWL_EVERYTHING</code> specifies crawling the entire dataset again.</p>\n \n <p>A value of <code>CRAWL_NEW_FOLDERS_ONLY</code> specifies crawling only folders that were added since the last crawler run.</p>\n\t\n\t <p>A value of <code>CRAWL_EVENT_MODE</code> specifies crawling only the changes identified by Amazon S3 events.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -16165,6 +16172,18 @@
|
|||
"traits": {
|
||||
"smithy.api#documentation": "<p>Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.</p>"
|
||||
}
|
||||
},
|
||||
"EventQueueArn": {
|
||||
"target": "com.amazonaws.glue#EventQueueArn",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>A valid Amazon SQS ARN. For example, <code>arn:aws:sqs:region:account:sqs</code>.</p>"
|
||||
}
|
||||
},
|
||||
"DlqEventQueueArn": {
|
||||
"target": "com.amazonaws.glue#EventQueueArn",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>A valid Amazon dead-letter SQS ARN. For example, <code>arn:aws:sqs:region:account:deadLetterQueue</code>.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -59,7 +59,7 @@
|
|||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations associated with your Amazon Web Services account or a Amazon QuickSight namespace in a specific Amazon Web Services Region;.</p>"
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations associated with your Amazon Web Services account or a Amazon QuickSight namespace in a specific Amazon Web Services Region.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#AccountSettings": {
|
||||
|
@ -174,13 +174,13 @@
|
|||
"Domain": {
|
||||
"target": "com.amazonaws.quicksight#Domain",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Elasticsearch domain.</p>",
|
||||
"smithy.api#documentation": "<p>The OpenSearch domain.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The parameters for Elasticsearch.</p>"
|
||||
"smithy.api#documentation": "<p>The parameters for OpenSearch.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#AmazonOpenSearchParameters": {
|
||||
|
@ -668,6 +668,12 @@
|
|||
"smithy.api#documentation": "<p>The display options for tile borders for visuals.</p>"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#CIDR": {
|
||||
"type": "string",
|
||||
"traits": {
|
||||
"smithy.api#pattern": "^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\\/(3[0-2]|[1-2][0-9]|[1-9]))$"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#CalculatedColumn": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
|
@ -1238,7 +1244,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Creates Amazon QuickSight customizations the current Amazon Web Services Region;. Currently, you can\n add a custom default theme by using the <code>CreateAccountCustomization</code> or\n <code>UpdateAccountCustomization</code> API operation. To further customize\n Amazon QuickSight by removing Amazon QuickSight sample assets and videos for all new users, see <a href=\"https://docs.aws.amazon.com/quicksight/latest/user/customizing-quicksight.html\">Customizing Amazon QuickSight</a> in the <i>Amazon QuickSight User\n Guide.</i>\n </p>\n <p>You can create customizations for your Amazon Web Services account or, if you specify a namespace, for\n a Amazon QuickSight namespace instead. Customizations that apply to a namespace always override\n customizations that apply to an Amazon Web Services account. To find out which customizations apply, use\n the <code>DescribeAccountCustomization</code> API operation.</p>\n <p>Before you use the <code>CreateAccountCustomization</code> API operation to add a theme \n as the namespace default, make sure that you first share the theme with the namespace. \n If you don't share it with the namespace, the theme isn't visible to your users \n even if you make it the default theme. \n To check if the theme is shared, view the current permissions by using the \n <code>\n <a>DescribeThemePermissions</a>\n </code> API operation.\n To share the theme, grant permissions by using the \n <code>\n <a>UpdateThemePermissions</a>\n </code> API operation. </p>",
|
||||
"smithy.api#documentation": "<p>Creates Amazon QuickSight customizations the current Amazon Web Services Region. Currently, you can\n add a custom default theme by using the <code>CreateAccountCustomization</code> or\n <code>UpdateAccountCustomization</code> API operation. To further customize\n Amazon QuickSight by removing Amazon QuickSight sample assets and videos for all new users, see <a href=\"https://docs.aws.amazon.com/quicksight/latest/user/customizing-quicksight.html\">Customizing Amazon QuickSight</a> in the <i>Amazon QuickSight User\n Guide.</i>\n </p>\n <p>You can create customizations for your Amazon Web Services account or, if you specify a namespace, for\n a Amazon QuickSight namespace instead. Customizations that apply to a namespace always override\n customizations that apply to an Amazon Web Services account. To find out which customizations apply, use\n the <code>DescribeAccountCustomization</code> API operation.</p>\n <p>Before you use the <code>CreateAccountCustomization</code> API operation to add a theme\n as the namespace default, make sure that you first share the theme with the namespace.\n If you don't share it with the namespace, the theme isn't visible to your users\n even if you make it the default theme.\n To check if the theme is shared, view the current permissions by using the\n <code>\n <a>DescribeThemePermissions</a>\n </code> API operation.\n To share the theme, grant permissions by using the\n <code>\n <a>UpdateThemePermissions</a>\n </code> API operation. </p>",
|
||||
"smithy.api#http": {
|
||||
"method": "POST",
|
||||
"uri": "/accounts/{AwsAccountId}/customizations",
|
||||
|
@ -1267,7 +1273,7 @@
|
|||
"AccountCustomization": {
|
||||
"target": "com.amazonaws.quicksight#AccountCustomization",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region;. You can add\n these to an Amazon Web Services account and a Amazon QuickSight namespace. </p>\n <p>For example, you can add a default theme by setting <code>AccountCustomization</code>\n to the midnight theme: <code>\"AccountCustomization\": { \"DefaultTheme\":\n \"arn:aws:quicksight::aws:theme/MIDNIGHT\" }</code>. Or, you can add a custom theme by\n specifying <code>\"AccountCustomization\": { \"DefaultTheme\":\n \"arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639\"\n }</code>. </p>",
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. You can add\n these to an Amazon Web Services account and a Amazon QuickSight namespace. </p>\n <p>For example, you can add a default theme by setting <code>AccountCustomization</code>\n to the midnight theme: <code>\"AccountCustomization\": { \"DefaultTheme\":\n \"arn:aws:quicksight::aws:theme/MIDNIGHT\" }</code>. Or, you can add a custom theme by\n specifying <code>\"AccountCustomization\": { \"DefaultTheme\":\n \"arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639\"\n }</code>. </p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1303,7 +1309,7 @@
|
|||
"AccountCustomization": {
|
||||
"target": "com.amazonaws.quicksight#AccountCustomization",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region;. </p>"
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. </p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -1552,7 +1558,7 @@
|
|||
"SourceEntity": {
|
||||
"target": "com.amazonaws.quicksight#DashboardSourceEntity",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The entity that you are using as a source when you create the dashboard. In\n <code>SourceEntity</code>, you specify the type of object you're using as source. You\n can only create a dashboard from a template, so you use a <code>SourceTemplate</code>\n entity. If you need to create a dashboard from an analysis, first convert the analysis\n to a template by using the <a>CreateTemplate</a> API operation. For\n <code>SourceTemplate</code>, specify the Amazon Resource Name (ARN) of the source\n template. The <code>SourceTemplate</code>ARN can contain any Amazon Web Services account and any\n Amazon QuickSight-supported Amazon Web Services Region;. </p>\n <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> to\n list the replacement datasets for the placeholders listed in the original. The schema in\n each dataset must match its placeholder. </p>",
|
||||
"smithy.api#documentation": "<p>The entity that you are using as a source when you create the dashboard. In\n <code>SourceEntity</code>, you specify the type of object you're using as source. You\n can only create a dashboard from a template, so you use a <code>SourceTemplate</code>\n entity. If you need to create a dashboard from an analysis, first convert the analysis\n to a template by using the <a>CreateTemplate</a> API operation. For\n <code>SourceTemplate</code>, specify the Amazon Resource Name (ARN) of the source\n template. The <code>SourceTemplate</code>ARN can contain any Amazon Web Services account and any\n Amazon QuickSight-supported Amazon Web Services Region. </p>\n <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> to\n list the replacement datasets for the placeholders listed in the original. The schema in\n each dataset must match its placeholder. </p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1684,7 +1690,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>An ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>An ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1774,7 +1780,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"IngestionArn": {
|
||||
|
@ -1861,7 +1867,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>An ID for the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account. </p>",
|
||||
"smithy.api#documentation": "<p>An ID for the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. </p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1875,7 +1881,7 @@
|
|||
"Type": {
|
||||
"target": "com.amazonaws.quicksight#DataSourceType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of the data source. To return a\n\t\t\tlist of all data sources, use <code>ListDataSources</code>.</p>\n\t\t <p>Use <code>AMAZON_ELASTICSEARCH</code> for Amazon Elasticsearch Service.</p>",
|
||||
"smithy.api#documentation": "<p>The type of the data source. To return a\n\t\t\tlist of all data sources, use <code>ListDataSources</code>.</p>\n\t\t <p>Use <code>AMAZON_ELASTICSEARCH</code> for Amazon OpenSearch Service.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -1929,7 +1935,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"CreationStatus": {
|
||||
|
@ -2291,7 +2297,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -2349,7 +2355,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -2595,6 +2601,12 @@
|
|||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"IngestionType": {
|
||||
"target": "com.amazonaws.quicksight#IngestionType",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of ingestion that you want to create.</p>"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -2944,7 +2956,7 @@
|
|||
"SourceEntity": {
|
||||
"target": "com.amazonaws.quicksight#TemplateSourceEntity",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The entity that you are using as a source when you create the template. In\n\t\t\t<code>SourceEntity</code>, you specify the type of object you're using as source:\n\t\t\t<code>SourceTemplate</code> for a template or <code>SourceAnalysis</code> for an\n\t\t\tanalysis. Both of these require an Amazon Resource Name (ARN). For\n\t\t\t<code>SourceTemplate</code>, specify the ARN of the source template. For\n\t\t\t<code>SourceAnalysis</code>, specify the ARN of the source analysis. The <code>SourceTemplate</code>\n\t\t\tARN can contain any Amazon Web Services account and any Amazon QuickSight-supported Amazon Web Services Region;. </p>\n\t\t <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> or\n\t\t\t<code>SourceAnalysis</code> to list the replacement datasets for the placeholders listed\n\t\t\tin the original. The schema in each dataset must match its placeholder. </p>",
|
||||
"smithy.api#documentation": "<p>The entity that you are using as a source when you create the template. In\n\t\t\t<code>SourceEntity</code>, you specify the type of object you're using as source:\n\t\t\t<code>SourceTemplate</code> for a template or <code>SourceAnalysis</code> for an\n\t\t\tanalysis. Both of these require an Amazon Resource Name (ARN). For\n\t\t\t<code>SourceTemplate</code>, specify the ARN of the source template. For\n\t\t\t<code>SourceAnalysis</code>, specify the ARN of the source analysis. The <code>SourceTemplate</code>\n\t\t\tARN can contain any Amazon Web Services account and any Amazon QuickSight-supported Amazon Web Services Region. </p>\n\t\t <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> or\n\t\t\t<code>SourceAnalysis</code> to list the replacement datasets for the placeholders listed\n\t\t\tin the original. The schema in each dataset must match its placeholder. </p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -4140,7 +4152,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each\n Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each\n Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"Name": {
|
||||
|
@ -4300,7 +4312,7 @@
|
|||
"AmazonElasticsearchParameters": {
|
||||
"target": "com.amazonaws.quicksight#AmazonElasticsearchParameters",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The parameters for Elasticsearch.</p>"
|
||||
"smithy.api#documentation": "<p>The parameters for OpenSearch.</p>"
|
||||
}
|
||||
},
|
||||
"AthenaParameters": {
|
||||
|
@ -4646,7 +4658,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Deletes all Amazon QuickSight customizations in this Amazon Web Services Region; for the specified \n Amazon Web Services account and Amazon QuickSight namespace.</p>",
|
||||
"smithy.api#documentation": "<p>Deletes all Amazon QuickSight customizations in this Amazon Web Services Region for the specified\n Amazon Web Services account and Amazon QuickSight namespace.</p>",
|
||||
"smithy.api#http": {
|
||||
"method": "DELETE",
|
||||
"uri": "/accounts/{AwsAccountId}/customizations",
|
||||
|
@ -4660,7 +4672,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that you want to delete Amazon QuickSight customizations from in\n this Amazon Web Services Region;.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that you want to delete Amazon QuickSight customizations from in\n this Amazon Web Services Region.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -4943,7 +4955,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -4962,7 +4974,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -5028,7 +5040,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -5047,7 +5059,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -5352,7 +5364,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -5399,7 +5411,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -5765,7 +5777,7 @@
|
|||
"VersionNumber": {
|
||||
"target": "com.amazonaws.quicksight#VersionNumber",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Specifies the version of the template that you want to delete.\n\t\t\tIf you don't provide a version number, <code>DeleteTemplate</code> deletes all versions of the template. \n\t </p>",
|
||||
"smithy.api#documentation": "<p>Specifies the version of the template that you want to delete.\n\t\t\tIf you don't provide a version number, <code>DeleteTemplate</code> deletes all versions of the template.\n\t </p>",
|
||||
"smithy.api#httpQuery": "version-number"
|
||||
}
|
||||
}
|
||||
|
@ -6033,7 +6045,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Deletes the Amazon QuickSight user that is associated with the identity of the \n\t\t\tIdentity and Access Management (IAM) user or role that's making the call. The IAM user\n\t\t\tisn't deleted as a result of this call. </p>",
|
||||
"smithy.api#documentation": "<p>Deletes the Amazon QuickSight user that is associated with the identity of the\n\t\t\tIdentity and Access Management (IAM) user or role that's making the call. The IAM user\n\t\t\tisn't deleted as a result of this call. </p>",
|
||||
"smithy.api#http": {
|
||||
"method": "DELETE",
|
||||
"uri": "/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}",
|
||||
|
@ -6095,7 +6107,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -6145,7 +6157,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -6216,7 +6228,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Describes the customizations associated with the provided Amazon Web Services account and Amazon\n Amazon QuickSight namespace in an Amazon Web Services Region;. The Amazon QuickSight console evaluates which\n customizations to apply by running this API operation with the <code>Resolved</code> flag\n included. </p>\n <p>To determine what customizations display when you run this command, it can help to\n visualize the relationship of the entities involved. </p>\n <ul>\n <li>\n <p>\n <code>Amazon Web Services account</code> - The Amazon Web Services account exists at the top of the hierarchy.\n It has the potential to use all of the Amazon Web Services Regions; and AWS Services. When you\n subscribe to Amazon QuickSight, you choose one Amazon Web Services Region; to use as your home Region.\n That's where your free SPICE capacity is located. You can use Amazon QuickSight in any\n supported Amazon Web Services Region;. </p>\n </li>\n <li>\n <p>\n <code>Amazon Web Services Region;</code> - In each Amazon Web Services Region; where you sign in to Amazon QuickSight\n at least once, Amazon QuickSight acts as a separate instance of the same service. If\n you have a user directory, it resides in us-east-1, which is the US East (N.\n Virginia). Generally speaking, these users have access to Amazon QuickSight in any \n Amazon Web Services Region;, unless they are constrained to a namespace. </p>\n <p>To run the command in a different Amazon Web Services Region;, you change your Region settings.\n If you're using the AWS CLI, you can use one of the following options:</p>\n <ul>\n <li>\n <p>Use <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-options.html\">command line options</a>. </p>\n </li>\n <li>\n <p>Use <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html\">named profiles</a>. </p>\n </li>\n <li>\n <p>Run <code>aws configure</code> to change your default Amazon Web Services Region;. Use\n Enter to key the same settings for your keys. For more information, see\n <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html\">Configuring the AWS CLI</a>.</p>\n </li>\n </ul>\n </li>\n <li>\n <p>\n <code>Namespace</code> - A Amazon QuickSight namespace is a partition that contains\n users and assets (data sources, datasets, dashboards, and so on). To access\n assets that are in a specific namespace, users and groups must also be part of\n the same namespace. People who share a namespace are completely isolated from\n users and assets in other namespaces, even if they are in the same Amazon Web Services account\n and Amazon Web Services Region;.</p>\n </li>\n <li>\n <p>\n <code>Applied customizations</code> - Within an Amazon Web Services Region;, a set of\n Amazon QuickSight customizations can apply to an Amazon Web Services account or to a namespace.\n Settings that you apply to a namespace override settings that you apply to an\n Amazon Web Services account. All settings are isolated to a single Amazon Web Services Region;. To apply them in\n other Amazon Web Services Regions;, run the <code>CreateAccountCustomization</code> command in\n each Amazon Web Services Region; where you want to apply the same customizations. </p>\n </li>\n </ul>",
|
||||
"smithy.api#documentation": "<p>Describes the customizations associated with the provided Amazon Web Services account and Amazon\n Amazon QuickSight namespace in an Amazon Web Services Region. The Amazon QuickSight console evaluates which\n customizations to apply by running this API operation with the <code>Resolved</code> flag\n included. </p>\n <p>To determine what customizations display when you run this command, it can help to\n visualize the relationship of the entities involved. </p>\n <ul>\n <li>\n <p>\n <code>Amazon Web Services account</code> - The Amazon Web Services account exists at the top of the hierarchy.\n It has the potential to use all of the Amazon Web Services Regions and AWS Services. When you\n subscribe to Amazon QuickSight, you choose one Amazon Web Services Region to use as your home Region.\n That's where your free SPICE capacity is located. You can use Amazon QuickSight in any\n supported Amazon Web Services Region. </p>\n </li>\n <li>\n <p>\n <code>Amazon Web Services Region</code> - In each Amazon Web Services Region where you sign in to Amazon QuickSight\n at least once, Amazon QuickSight acts as a separate instance of the same service. If\n you have a user directory, it resides in us-east-1, which is the US East (N.\n Virginia). Generally speaking, these users have access to Amazon QuickSight in any\n Amazon Web Services Region, unless they are constrained to a namespace. </p>\n <p>To run the command in a different Amazon Web Services Region, you change your Region settings.\n If you're using the AWS CLI, you can use one of the following options:</p>\n <ul>\n <li>\n <p>Use <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-options.html\">command line options</a>. </p>\n </li>\n <li>\n <p>Use <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html\">named profiles</a>. </p>\n </li>\n <li>\n <p>Run <code>aws configure</code> to change your default Amazon Web Services Region. Use\n Enter to key the same settings for your keys. For more information, see\n <a href=\"https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-configure.html\">Configuring the AWS CLI</a>.</p>\n </li>\n </ul>\n </li>\n <li>\n <p>\n <code>Namespace</code> - A Amazon QuickSight namespace is a partition that contains\n users and assets (data sources, datasets, dashboards, and so on). To access\n assets that are in a specific namespace, users and groups must also be part of\n the same namespace. People who share a namespace are completely isolated from\n users and assets in other namespaces, even if they are in the same Amazon Web Services account\n and Amazon Web Services Region.</p>\n </li>\n <li>\n <p>\n <code>Applied customizations</code> - Within an Amazon Web Services Region, a set of\n Amazon QuickSight customizations can apply to an Amazon Web Services account or to a namespace.\n Settings that you apply to a namespace override settings that you apply to an\n Amazon Web Services account. All settings are isolated to a single Amazon Web Services Region. To apply them in\n other Amazon Web Services Regions, run the <code>CreateAccountCustomization</code> command in\n each Amazon Web Services Region where you want to apply the same customizations. </p>\n </li>\n </ul>",
|
||||
"smithy.api#http": {
|
||||
"method": "GET",
|
||||
"uri": "/accounts/{AwsAccountId}/customizations",
|
||||
|
@ -6275,7 +6287,7 @@
|
|||
"AccountCustomization": {
|
||||
"target": "com.amazonaws.quicksight#AccountCustomization",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations that exist in the current Amazon Web Services Region;. </p>"
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations that exist in the current Amazon Web Services Region. </p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -6349,7 +6361,7 @@
|
|||
"AccountSettings": {
|
||||
"target": "com.amazonaws.quicksight#AccountSettings",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight settings for this Amazon Web Services account. This information includes the edition of Amazon\n Amazon QuickSight that you subscribed to (Standard or Enterprise) and the notification email for the\n Amazon QuickSight subscription. In the Amazon QuickSight console, the Amazon QuickSight subscription is sometimes\n referred to as a Amazon QuickSight \"account\" even though it's technically not an account\n by itself. Instead, it's a subscription to the Amazon QuickSight service for your Amazon Web Services account. The\n edition that you subscribe to applies to Amazon QuickSight in every Amazon Web Services Region; where you use it.</p>"
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight settings for this Amazon Web Services account. This information includes the edition of Amazon\n Amazon QuickSight that you subscribed to (Standard or Enterprise) and the notification email for the\n Amazon QuickSight subscription. In the Amazon QuickSight console, the Amazon QuickSight subscription is sometimes\n referred to as a Amazon QuickSight \"account\" even though it's technically not an account\n by itself. Instead, it's a subscription to the Amazon QuickSight service for your Amazon Web Services account. The\n edition that you subscribe to applies to Amazon QuickSight in every Amazon Web Services Region where you use it.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -6809,7 +6821,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -6828,7 +6840,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"Permissions": {
|
||||
|
@ -6866,7 +6878,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -6979,7 +6991,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -6998,7 +7010,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"Permissions": {
|
||||
|
@ -7036,7 +7048,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -7391,7 +7403,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -7610,6 +7622,89 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#DescribeIpRestriction": {
|
||||
"type": "operation",
|
||||
"input": {
|
||||
"target": "com.amazonaws.quicksight#DescribeIpRestrictionRequest"
|
||||
},
|
||||
"output": {
|
||||
"target": "com.amazonaws.quicksight#DescribeIpRestrictionResponse"
|
||||
},
|
||||
"errors": [
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#AccessDeniedException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#InternalFailureException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#InvalidParameterValueException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#ResourceNotFoundException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#ThrottlingException"
|
||||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Provides a summary and status of IP Rules.</p>",
|
||||
"smithy.api#http": {
|
||||
"method": "GET",
|
||||
"uri": "/accounts/{AwsAccountId}/ip-restriction",
|
||||
"code": 200
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#DescribeIpRestrictionRequest": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Your AWS account ID.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#DescribeIpRestrictionResponse": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Your AWS account ID.</p>"
|
||||
}
|
||||
},
|
||||
"IpRestrictionRuleMap": {
|
||||
"target": "com.amazonaws.quicksight#IpRestrictionRuleMap",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Describes the IP rules with CIDR range and description.</p>"
|
||||
}
|
||||
},
|
||||
"Enabled": {
|
||||
"target": "com.amazonaws.quicksight#NullableBoolean",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Whether or not IP rules are enabled.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
"target": "com.amazonaws.quicksight#String",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the describe request.</p>"
|
||||
}
|
||||
},
|
||||
"Status": {
|
||||
"target": "com.amazonaws.quicksight#StatusCode",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The status of a set of IP restrictions. A successful request returns a 200 status code.</p>",
|
||||
"smithy.api#httpResponseCode": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#DescribeNamespace": {
|
||||
"type": "operation",
|
||||
"input": {
|
||||
|
@ -7674,7 +7769,7 @@
|
|||
"Namespace": {
|
||||
"target": "com.amazonaws.quicksight#NamespaceInfoV2",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The information about the namespace that you're describing. The response includes \n the namespace ARN, name, Amazon Web Services Region;, creation status, and identity store. <code>DescribeNamespace</code> also\n works for namespaces that are in the process of being created. For incomplete namespaces,\n this API operation lists the namespace error types and messages associated with the creation process.</p>"
|
||||
"smithy.api#documentation": "<p>The information about the namespace that you're describing. The response includes \n the namespace ARN, name, Amazon Web Services Region, creation status, and identity store. <code>DescribeNamespace</code> also\n works for namespaces that are in the process of being created. For incomplete namespaces,\n this API operation lists the namespace error types and messages associated with the creation process.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -8309,7 +8404,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -9369,7 +9464,7 @@
|
|||
"EntryPoint": {
|
||||
"target": "com.amazonaws.quicksight#EntryPoint",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The URL you use to access the embedded session. The entry point URL is constrained to \n the following paths:</p>\n <ul>\n <li>\n <p>\n <code>/start</code>\n </p>\n </li>\n <li>\n <p>\n <code>/start/analyses</code>\n </p>\n </li>\n <li>\n <p>\n <code>/start/dashboards</code>\n </p>\n </li>\n <li>\n <p>\n <code>/start/favorites</code>\n </p>\n </li>\n <li>\n <p>\n <code>/dashboards/<i>DashboardId</i>\n </code> - where <code>DashboardId</code> is the actual ID key from the Amazon QuickSight console URL of the dashboard</p>\n </li>\n <li>\n <p>\n <code>/analyses/<i>AnalysisId</i>\n </code> - where <code>AnalysisId</code> is the actual ID key from the Amazon QuickSight console URL of the analysis</p>\n </li>\n </ul>",
|
||||
"smithy.api#documentation": "<p>The URL you use to access the embedded session. The entry point URL is constrained to\n the following paths:</p>\n <ul>\n <li>\n <p>\n <code>/start</code>\n </p>\n </li>\n <li>\n <p>\n <code>/start/analyses</code>\n </p>\n </li>\n <li>\n <p>\n <code>/start/dashboards</code>\n </p>\n </li>\n <li>\n <p>\n <code>/start/favorites</code>\n </p>\n </li>\n <li>\n <p>\n <code>/dashboards/<i>DashboardId</i>\n </code> - where <code>DashboardId</code> is the actual ID key from the Amazon QuickSight console URL of the dashboard</p>\n </li>\n <li>\n <p>\n <code>/analyses/<i>AnalysisId</i>\n </code> - where <code>AnalysisId</code> is the actual ID key from the Amazon QuickSight console URL of the analysis</p>\n </li>\n </ul>",
|
||||
"smithy.api#httpQuery": "entry-point"
|
||||
}
|
||||
},
|
||||
|
@ -9919,6 +10014,22 @@
|
|||
{
|
||||
"value": "INTERNAL_SERVICE_ERROR",
|
||||
"name": "INTERNAL_SERVICE_ERROR"
|
||||
},
|
||||
{
|
||||
"value": "REFRESH_SUPPRESSED_BY_EDIT",
|
||||
"name": "REFRESH_SUPPRESSED_BY_EDIT"
|
||||
},
|
||||
{
|
||||
"value": "PERMISSION_NOT_FOUND",
|
||||
"name": "PERMISSION_NOT_FOUND"
|
||||
},
|
||||
{
|
||||
"value": "ELASTICSEARCH_CURSOR_NOT_ENABLED",
|
||||
"name": "ELASTICSEARCH_CURSOR_NOT_ENABLED"
|
||||
},
|
||||
{
|
||||
"value": "CURSOR_NOT_ENABLED",
|
||||
"name": "CURSOR_NOT_ENABLED"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -9960,6 +10071,7 @@
|
|||
"com.amazonaws.quicksight#IngestionRequestType": {
|
||||
"type": "string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "This defines the type of ingestion request. This is returned as part of create ingestion response.",
|
||||
"smithy.api#enum": [
|
||||
{
|
||||
"value": "INITIAL_INGESTION",
|
||||
|
@ -10011,6 +10123,22 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#IngestionType": {
|
||||
"type": "string",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "This defines the type of ingestion user wants to trigger. This is part of create ingestion request.",
|
||||
"smithy.api#enum": [
|
||||
{
|
||||
"value": "INCREMENTAL_REFRESH",
|
||||
"name": "INCREMENTAL_REFRESH"
|
||||
},
|
||||
{
|
||||
"value": "FULL_REFRESH",
|
||||
"name": "FULL_REFRESH"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#Ingestions": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
|
@ -10186,6 +10314,24 @@
|
|||
"smithy.api#httpError": 400
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#IpRestrictionRuleDescription": {
|
||||
"type": "string",
|
||||
"traits": {
|
||||
"smithy.api#length": {
|
||||
"min": 0,
|
||||
"max": 150
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#IpRestrictionRuleMap": {
|
||||
"type": "map",
|
||||
"key": {
|
||||
"target": "com.amazonaws.quicksight#CIDR"
|
||||
},
|
||||
"value": {
|
||||
"target": "com.amazonaws.quicksight#IpRestrictionRuleDescription"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#JiraParameters": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
|
@ -10634,7 +10780,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Lists all of the datasets belonging to the current Amazon Web Services account in an Amazon Web Services Region;.</p>\n\t\t <p>The permissions resource is <code>arn:aws:quicksight:region:aws-account-id:dataset/*</code>.</p>",
|
||||
"smithy.api#documentation": "<p>Lists all of the datasets belonging to the current Amazon Web Services account in an Amazon Web Services Region.</p>\n\t\t <p>The permissions resource is <code>arn:aws:quicksight:region:aws-account-id:dataset/*</code>.</p>",
|
||||
"smithy.api#http": {
|
||||
"method": "GET",
|
||||
"uri": "/accounts/{AwsAccountId}/data-sets",
|
||||
|
@ -10731,7 +10877,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Lists data sources in current Amazon Web Services Region; that belong to this Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>Lists data sources in current Amazon Web Services Region that belong to this Amazon Web Services account.</p>",
|
||||
"smithy.api#http": {
|
||||
"method": "GET",
|
||||
"uri": "/accounts/{AwsAccountId}/data-sources",
|
||||
|
@ -11078,7 +11224,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -11172,7 +11318,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -11648,7 +11794,7 @@
|
|||
"Namespaces": {
|
||||
"target": "com.amazonaws.quicksight#Namespaces",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The information about the namespaces in this Amazon Web Services account. The response includes \n the namespace ARN, name, Amazon Web Services Region;, notification email address, creation status, and \n identity store.</p>"
|
||||
"smithy.api#documentation": "<p>The information about the namespaces in this Amazon Web Services account. The response includes \n the namespace ARN, name, Amazon Web Services Region, notification email address, creation status, and \n identity store.</p>"
|
||||
}
|
||||
},
|
||||
"NextToken": {
|
||||
|
@ -12546,7 +12692,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -12909,7 +13055,7 @@
|
|||
"CapacityRegion": {
|
||||
"target": "com.amazonaws.quicksight#String",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The namespace Amazon Web Services Region;.</p>"
|
||||
"smithy.api#documentation": "<p>The namespace Amazon Web Services Region.</p>"
|
||||
}
|
||||
},
|
||||
"CreationStatus": {
|
||||
|
@ -12974,6 +13120,12 @@
|
|||
"smithy.api#pattern": "\\S"
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#NullableBoolean": {
|
||||
"type": "boolean",
|
||||
"traits": {
|
||||
"smithy.api#box": {}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#OnClause": {
|
||||
"type": "string",
|
||||
"traits": {
|
||||
|
@ -13503,6 +13655,9 @@
|
|||
{
|
||||
"target": "com.amazonaws.quicksight#DescribeIngestion"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#DescribeIpRestriction"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#DescribeNamespace"
|
||||
},
|
||||
|
@ -13671,6 +13826,9 @@
|
|||
{
|
||||
"target": "com.amazonaws.quicksight#UpdateIAMPolicyAssignment"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#UpdateIpRestriction"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#UpdateTemplate"
|
||||
},
|
||||
|
@ -13859,7 +14017,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -14363,6 +14521,13 @@
|
|||
"smithy.api#box": {},
|
||||
"smithy.api#documentation": "<p>The number of rows that were not ingested.</p>"
|
||||
}
|
||||
},
|
||||
"TotalRowsInDataset": {
|
||||
"target": "com.amazonaws.quicksight#Long",
|
||||
"traits": {
|
||||
"smithy.api#box": {},
|
||||
"smithy.api#documentation": "<p>The total number of rows in the dataset.</p>"
|
||||
}
|
||||
}
|
||||
},
|
||||
"traits": {
|
||||
|
@ -14388,7 +14553,7 @@
|
|||
"PermissionPolicy": {
|
||||
"target": "com.amazonaws.quicksight#RowLevelPermissionPolicy",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The type of permissions to use when interpreting the permissions for RLS. <code>DENY_ACCESS</code> \n is included for backward compatibility only.</p>",
|
||||
"smithy.api#documentation": "<p>The type of permissions to use when interpreting the permissions for RLS. <code>DENY_ACCESS</code>\n is included for backward compatibility only.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -15410,7 +15575,7 @@
|
|||
"TemplateId": {
|
||||
"target": "com.amazonaws.quicksight#RestrictiveResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the template. This is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID for the template. This is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"LastUpdatedTime": {
|
||||
|
@ -15600,7 +15765,7 @@
|
|||
"TemplateId": {
|
||||
"target": "com.amazonaws.quicksight#RestrictiveResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the template. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"Name": {
|
||||
|
@ -15980,7 +16145,7 @@
|
|||
"ThemeId": {
|
||||
"target": "com.amazonaws.quicksight#RestrictiveResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the theme. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the theme. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"LatestVersionNumber": {
|
||||
|
@ -16561,7 +16726,7 @@
|
|||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Updates Amazon QuickSight customizations the current Amazon Web Services Region;. Currently, the only\n customization you can use is a theme.</p>\n <p>You can use customizations for your Amazon Web Services account or, if you specify a namespace, for a\n Amazon QuickSight namespace instead. Customizations that apply to a namespace override\n customizations that apply to an Amazon Web Services account. To find out which customizations apply, use\n the <code>DescribeAccountCustomization</code> API operation. </p>",
|
||||
"smithy.api#documentation": "<p>Updates Amazon QuickSight customizations the current Amazon Web Services Region. Currently, the only\n customization you can use is a theme.</p>\n <p>You can use customizations for your Amazon Web Services account or, if you specify a namespace, for a\n Amazon QuickSight namespace instead. Customizations that apply to a namespace override\n customizations that apply to an Amazon Web Services account. To find out which customizations apply, use\n the <code>DescribeAccountCustomization</code> API operation. </p>",
|
||||
"smithy.api#http": {
|
||||
"method": "PUT",
|
||||
"uri": "/accounts/{AwsAccountId}/customizations",
|
||||
|
@ -16590,7 +16755,7 @@
|
|||
"AccountCustomization": {
|
||||
"target": "com.amazonaws.quicksight#AccountCustomization",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region;. </p>",
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region. </p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
}
|
||||
|
@ -16620,7 +16785,7 @@
|
|||
"AccountCustomization": {
|
||||
"target": "com.amazonaws.quicksight#AccountCustomization",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region;. </p>"
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region. </p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -16696,7 +16861,7 @@
|
|||
"NotificationEmail": {
|
||||
"target": "com.amazonaws.quicksight#String",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The email address that you want Amazon QuickSight to send notifications to regarding your \n Amazon Web Services account or Amazon QuickSight subscription.</p>"
|
||||
"smithy.api#documentation": "<p>The email address that you want Amazon QuickSight to send notifications to regarding your\n Amazon Web Services account or Amazon QuickSight subscription.</p>"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -17219,7 +17384,7 @@
|
|||
"SourceEntity": {
|
||||
"target": "com.amazonaws.quicksight#DashboardSourceEntity",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The entity that you are using as a source when you update the dashboard. In\n <code>SourceEntity</code>, you specify the type of object you're using as source. You\n can only update a dashboard from a template, so you use a <code>SourceTemplate</code>\n entity. If you need to update a dashboard from an analysis, first convert the analysis\n to a template by using the <a>CreateTemplate</a> API operation. For\n <code>SourceTemplate</code>, specify the Amazon Resource Name (ARN) of the source\n template. The <code>SourceTemplate</code> ARN can contain any Amazon Web Services account and any\n Amazon QuickSight-supported Amazon Web Services Region;. </p>\n <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> to\n list the replacement datasets for the placeholders listed in the original. The schema in\n each dataset must match its placeholder. </p>",
|
||||
"smithy.api#documentation": "<p>The entity that you are using as a source when you update the dashboard. In\n <code>SourceEntity</code>, you specify the type of object you're using as source. You\n can only update a dashboard from a template, so you use a <code>SourceTemplate</code>\n entity. If you need to update a dashboard from an analysis, first convert the analysis\n to a template by using the <a>CreateTemplate</a> API operation. For\n <code>SourceTemplate</code>, specify the Amazon Resource Name (ARN) of the source\n template. The <code>SourceTemplate</code> ARN can contain any Amazon Web Services account and any\n Amazon QuickSight-supported Amazon Web Services Region. </p>\n <p>Use the <code>DataSetReferences</code> entity within <code>SourceTemplate</code> to\n list the replacement datasets for the placeholders listed in the original. The schema in\n each dataset must match its placeholder. </p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
@ -17384,7 +17549,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset whose permissions you want to update. This ID is unique per \n\t\t\tAmazon Web Services Region; for each Amazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the dataset whose permissions you want to update. This ID is unique per\n\t\t\tAmazon Web Services Region for each Amazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -17415,7 +17580,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset whose permissions you want to update. This ID is unique per \n\t\t\tAmazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID for the dataset whose permissions you want to update. This ID is unique per\n\t\t\tAmazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -17447,7 +17612,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region; for each\n\t\t\tAmazon Web Services account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to update. This ID is unique per Amazon Web Services Region for each\n\t\t\tAmazon Web Services account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -17526,7 +17691,7 @@
|
|||
"DataSetId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"IngestionArn": {
|
||||
|
@ -17644,7 +17809,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account. </p>",
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. </p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -17675,7 +17840,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
|
@ -17707,7 +17872,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account. </p>",
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. </p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -17757,7 +17922,7 @@
|
|||
"DataSourceId": {
|
||||
"target": "com.amazonaws.quicksight#ResourceId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region; for each Amazon Web Services account.</p>"
|
||||
"smithy.api#documentation": "<p>The ID of the data source. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>"
|
||||
}
|
||||
},
|
||||
"UpdateStatus": {
|
||||
|
@ -18050,7 +18215,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -18224,6 +18389,92 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#UpdateIpRestriction": {
|
||||
"type": "operation",
|
||||
"input": {
|
||||
"target": "com.amazonaws.quicksight#UpdateIpRestrictionRequest"
|
||||
},
|
||||
"output": {
|
||||
"target": "com.amazonaws.quicksight#UpdateIpRestrictionResponse"
|
||||
},
|
||||
"errors": [
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#AccessDeniedException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#InternalFailureException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#InvalidParameterValueException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#LimitExceededException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#ResourceNotFoundException"
|
||||
},
|
||||
{
|
||||
"target": "com.amazonaws.quicksight#ThrottlingException"
|
||||
}
|
||||
],
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Updates content and status of IP Rules.</p>",
|
||||
"smithy.api#http": {
|
||||
"method": "POST",
|
||||
"uri": "/accounts/{AwsAccountId}/ip-restriction",
|
||||
"code": 200
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#UpdateIpRestrictionRequest": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Your AWS account ID.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
"IpRestrictionRuleMap": {
|
||||
"target": "com.amazonaws.quicksight#IpRestrictionRuleMap",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Describes updated IP rules.</p>"
|
||||
}
|
||||
},
|
||||
"Enabled": {
|
||||
"target": "com.amazonaws.quicksight#NullableBoolean",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Whether or not IP rules are enabled.</p>"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#UpdateIpRestrictionResponse": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>Your AWS account ID.</p>"
|
||||
}
|
||||
},
|
||||
"RequestId": {
|
||||
"target": "com.amazonaws.quicksight#String",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID of the update request.</p>"
|
||||
}
|
||||
},
|
||||
"Status": {
|
||||
"target": "com.amazonaws.quicksight#StatusCode",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The status of the updated IP rules. A successful request returns a 200 code.</p>",
|
||||
"smithy.api#httpResponseCode": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"com.amazonaws.quicksight#UpdateResourcePermissionList": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
|
@ -18952,7 +19203,7 @@
|
|||
"AwsAccountId": {
|
||||
"target": "com.amazonaws.quicksight#AwsAccountId",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the \n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#documentation": "<p>The ID for the Amazon Web Services account that the user is in. Currently, you use the ID for the\n\t\t\tAmazon Web Services account that contains your Amazon QuickSight account.</p>",
|
||||
"smithy.api#httpLabel": {},
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
|
@ -18975,7 +19226,7 @@
|
|||
"Role": {
|
||||
"target": "com.amazonaws.quicksight#UserRole",
|
||||
"traits": {
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight role of the user. The role can be one of the\n\t\t\tfollowing default security cohorts:</p>\n\t\t <ul>\n <li>\n\t\t\t\t <p>\n <code>READER</code>: A user who has read-only access to dashboards.</p>\n\t\t\t </li>\n <li>\n\t\t\t\t <p>\n <code>AUTHOR</code>: A user who can create data sources, datasets, analyses, and\n\t\t\t\t\tdashboards.</p>\n\t\t\t </li>\n <li>\n\t\t\t\t <p>\n <code>ADMIN</code>: A user who is an author, who can also manage Amazon QuickSight\n\t\t\t\t\tsettings.</p>\n\t\t\t </li>\n </ul>\n\t <p>The name of the Amazon QuickSight role is invisible to the user except for the console \n\t screens dealing with permissions.</p>",
|
||||
"smithy.api#documentation": "<p>The Amazon QuickSight role of the user. The role can be one of the\n\t\t\tfollowing default security cohorts:</p>\n\t\t <ul>\n <li>\n\t\t\t\t <p>\n <code>READER</code>: A user who has read-only access to dashboards.</p>\n\t\t\t </li>\n <li>\n\t\t\t\t <p>\n <code>AUTHOR</code>: A user who can create data sources, datasets, analyses, and\n\t\t\t\t\tdashboards.</p>\n\t\t\t </li>\n <li>\n\t\t\t\t <p>\n <code>ADMIN</code>: A user who is an author, who can also manage Amazon QuickSight\n\t\t\t\t\tsettings.</p>\n\t\t\t </li>\n </ul>\n\t <p>The name of the Amazon QuickSight role is invisible to the user except for the console\n\t screens dealing with permissions.</p>",
|
||||
"smithy.api#required": {}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
# Version number to use for the generated SDK
|
||||
# Note: these must always be full 3-segment semver versions
|
||||
aws.sdk.version=0.0.21-alpha
|
||||
smithy.rs.runtime.crate.version=0.26.0-alpha
|
||||
aws.sdk.version=0.0.22-alpha
|
||||
smithy.rs.runtime.crate.version=0.27.0-alpha
|
||||
|
||||
# several services are broken pending custom work:
|
||||
# Glacier requires a customization which is not currently supported:
|
||||
|
|
Loading…
Reference in New Issue