Skip to content

Commit

Permalink
Updates SDK to v2.1504.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Nov 27, 2023
1 parent c1ef7c7 commit 7888e74
Show file tree
Hide file tree
Showing 49 changed files with 16,218 additions and 1,175 deletions.
47 changes: 47 additions & 0 deletions .changes/2.1504.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"type": "feature",
"category": "AppSync",
"description": "This update enables introspection of Aurora cluster databases using the RDS Data API"
},
{
"type": "feature",
"category": "B2bi",
"description": "This is the initial SDK release for AWS B2B Data Interchange."
},
{
"type": "feature",
"category": "Backup",
"description": "AWS Backup now supports restore testing, a new feature that allows customers to automate restore testing and validating their backups. Additionally, this release adds support for EBS Snapshots Archive tier."
},
{
"type": "feature",
"category": "ControlTower",
"description": "This release adds the following support: 1. The EnableControl API can configure controls that are configurable. 2. The GetEnabledControl API shows the configured parameters on an enabled control. 3. The new UpdateEnabledControl API can change parameters on an enabled control."
},
{
"type": "feature",
"category": "EFS",
"description": "Adding support for EFS Replication to existing file system."
},
{
"type": "feature",
"category": "Fis",
"description": "AWS FIS adds support for multi-account experiments & empty target resolution. This release also introduces the CreateTargetAccountConfiguration API that allows experiments across multiple AWS accounts, and the ListExperimentResolvedTargets API to list target details."
},
{
"type": "feature",
"category": "Glue",
"description": "add observations support to DQ CodeGen config model + update document for connectiontypes supported by ConnectorData entities"
},
{
"type": "feature",
"category": "SecurityHub",
"description": "Adds and updates APIs to support central configuration. This feature allows the Security Hub delegated administrator to configure Security Hub for their entire AWS Org across multiple regions from a home Region. With this release, findings also include account name and application metadata."
},
{
"type": "feature",
"category": "TranscribeService",
"description": "This release adds support for AWS HealthScribe APIs within Amazon Transcribe"
}
]
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1503.0-->
<!--LATEST=2.1504.0-->
<!--ENTRYINSERT-->

## 2.1504.0
* feature: AppSync: This update enables introspection of Aurora cluster databases using the RDS Data API
* feature: B2bi: This is the initial SDK release for AWS B2B Data Interchange.
* feature: Backup: AWS Backup now supports restore testing, a new feature that allows customers to automate restore testing and validating their backups. Additionally, this release adds support for EBS Snapshots Archive tier.
* feature: ControlTower: This release adds the following support: 1. The EnableControl API can configure controls that are configurable. 2. The GetEnabledControl API shows the configured parameters on an enabled control. 3. The new UpdateEnabledControl API can change parameters on an enabled control.
* feature: EFS: Adding support for EFS Replication to existing file system.
* feature: Fis: AWS FIS adds support for multi-account experiments & empty target resolution. This release also introduces the CreateTargetAccountConfiguration API that allows experiments across multiple AWS accounts, and the ListExperimentResolvedTargets API to list target details.
* feature: Glue: add observations support to DQ CodeGen config model + update document for connectiontypes supported by ConnectorData entities
* feature: SecurityHub: Adds and updates APIs to support central configuration. This feature allows the Security Hub delegated administrator to configure Security Hub for their entire AWS Org across multiple regions from a home Region. With this release, findings also include account name and application metadata.
* feature: TranscribeService: This release adds support for AWS HealthScribe APIs within Amazon Transcribe

## 2.1503.0
* feature: AccessAnalyzer: IAM Access Analyzer now continuously monitors IAM roles and users in your AWS account or organization to generate findings for unused access. Additionally, IAM Access Analyzer now provides custom policy checks to validate that IAM policies adhere to your security standards ahead of deployments.
* feature: Amp: This release adds support for the Amazon Managed Service for Prometheus collector, a fully managed, agentless Prometheus metrics scraping capability.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1503.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1504.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
147 changes: 141 additions & 6 deletions apis/appsync-2017-07-25.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,86 @@
}
}
},
"GetDataSourceIntrospection": {
"http": {
"method": "GET",
"requestUri": "/v1/datasources/introspections/{introspectionId}"
},
"input": {
"type": "structure",
"required": [
"introspectionId"
],
"members": {
"introspectionId": {
"location": "uri",
"locationName": "introspectionId"
},
"includeModelsSDL": {
"location": "querystring",
"locationName": "includeModelsSDL",
"type": "boolean"
},
"nextToken": {
"location": "querystring",
"locationName": "nextToken"
},
"maxResults": {
"location": "querystring",
"locationName": "maxResults",
"type": "integer"
}
}
},
"output": {
"type": "structure",
"members": {
"introspectionId": {},
"introspectionStatus": {},
"introspectionStatusDetail": {},
"introspectionResult": {
"type": "structure",
"members": {
"models": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"fields": {
"type": "list",
"member": {
"type": "structure",
"members": {
"name": {},
"type": {
"shape": "S47"
},
"length": {
"type": "long"
}
}
}
},
"primaryKey": {
"shape": "S49"
},
"indexes": {
"type": "list",
"member": {
"shape": "S49"
}
},
"sdl": {}
}
}
},
"nextToken": {}
}
}
}
}
},
"GetDomainName": {
"http": {
"method": "GET",
Expand Down Expand Up @@ -1374,7 +1454,7 @@
"type": "structure",
"members": {
"resolvers": {
"shape": "S51"
"shape": "S5e"
},
"nextToken": {}
}
Expand Down Expand Up @@ -1415,7 +1495,7 @@
"type": "structure",
"members": {
"resolvers": {
"shape": "S51"
"shape": "S5e"
},
"nextToken": {}
}
Expand Down Expand Up @@ -1530,7 +1610,7 @@
"type": "structure",
"members": {
"types": {
"shape": "S5d"
"shape": "S5q"
},
"nextToken": {}
}
Expand Down Expand Up @@ -1576,12 +1656,43 @@
"type": "structure",
"members": {
"types": {
"shape": "S5d"
"shape": "S5q"
},
"nextToken": {}
}
}
},
"StartDataSourceIntrospection": {
"http": {
"requestUri": "/v1/datasources/introspections"
},
"input": {
"type": "structure",
"members": {
"rdsDataApiConfig": {
"type": "structure",
"required": [
"resourceArn",
"secretArn",
"databaseName"
],
"members": {
"resourceArn": {},
"secretArn": {},
"databaseName": {}
}
}
}
},
"output": {
"type": "structure",
"members": {
"introspectionId": {},
"introspectionStatus": {},
"introspectionStatusDetail": {}
}
}
},
"StartSchemaCreation": {
"http": {
"requestUri": "/v1/apis/{apiId}/schemacreation"
Expand Down Expand Up @@ -2521,13 +2632,37 @@
"type": "list",
"member": {}
},
"S51": {
"S47": {
"type": "structure",
"members": {
"kind": {},
"name": {},
"type": {
"shape": "S47"
},
"values": {
"type": "list",
"member": {}
}
}
},
"S49": {
"type": "structure",
"members": {
"name": {},
"fields": {
"type": "list",
"member": {}
}
}
},
"S5e": {
"type": "list",
"member": {
"shape": "S2h"
}
},
"S5d": {
"S5q": {
"type": "list",
"member": {
"shape": "S2l"
Expand Down
Loading

0 comments on commit 7888e74

Please sign in to comment.