Socket
Socket
Sign inDemoInstall

@aws-cdk/aws-appsync

Package Overview
Dependencies
Maintainers
4
Versions
288
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-cdk/aws-appsync - npm Package Compare versions

Comparing version 0.17.0 to 0.18.0

125

lib/appsync.generated.d.ts

@@ -99,2 +99,7 @@ import cdk = require('@aws-cdk/cdk');

/**
* ``AWS::AppSync::DataSource.RelationalDatabaseConfig``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-relationaldatabaseconfig
*/
relationalDatabaseConfig?: DataSourceResource.RelationalDatabaseConfigProperty | cdk.Token;
/**
* ``AWS::AppSync::DataSource.ServiceRoleArn``

@@ -136,2 +141,36 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-datasource.html#cfn-appsync-datasource-servicerolearn

/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html
*/
interface AuthorizationConfigProperty {
/**
* ``DataSourceResource.AuthorizationConfigProperty.AuthorizationType``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-authorizationtype
*/
authorizationType: string | cdk.Token;
/**
* ``DataSourceResource.AuthorizationConfigProperty.AwsIamConfig``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-authorizationconfig.html#cfn-appsync-datasource-authorizationconfig-awsiamconfig
*/
awsIamConfig?: AwsIamConfigProperty | cdk.Token;
}
}
namespace DataSourceResource {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html
*/
interface AwsIamConfigProperty {
/**
* ``DataSourceResource.AwsIamConfigProperty.SigningRegion``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingregion
*/
signingRegion?: string | cdk.Token;
/**
* ``DataSourceResource.AwsIamConfigProperty.SigningServiceName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-awsiamconfig.html#cfn-appsync-datasource-awsiamconfig-signingservicename
*/
signingServiceName?: string | cdk.Token;
}
}
namespace DataSourceResource {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-dynamodbconfig.html

@@ -180,2 +219,7 @@ */

/**
* ``DataSourceResource.HttpConfigProperty.AuthorizationConfig``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-authorizationconfig
*/
authorizationConfig?: AuthorizationConfigProperty | cdk.Token;
/**
* ``DataSourceResource.HttpConfigProperty.Endpoint``

@@ -199,2 +243,51 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-httpconfig.html#cfn-appsync-datasource-httpconfig-endpoint

}
namespace DataSourceResource {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html
*/
interface RdsHttpEndpointConfigProperty {
/**
* ``DataSourceResource.RdsHttpEndpointConfigProperty.AwsRegion``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awsregion
*/
awsRegion: string | cdk.Token;
/**
* ``DataSourceResource.RdsHttpEndpointConfigProperty.AwsSecretStoreArn``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-awssecretstorearn
*/
awsSecretStoreArn: string | cdk.Token;
/**
* ``DataSourceResource.RdsHttpEndpointConfigProperty.DatabaseName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-databasename
*/
databaseName?: string | cdk.Token;
/**
* ``DataSourceResource.RdsHttpEndpointConfigProperty.DbClusterIdentifier``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-dbclusteridentifier
*/
dbClusterIdentifier: string | cdk.Token;
/**
* ``DataSourceResource.RdsHttpEndpointConfigProperty.Schema``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-rdshttpendpointconfig.html#cfn-appsync-datasource-rdshttpendpointconfig-schema
*/
schema?: string | cdk.Token;
}
}
namespace DataSourceResource {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html
*/
interface RelationalDatabaseConfigProperty {
/**
* ``DataSourceResource.RelationalDatabaseConfigProperty.RdsHttpEndpointConfig``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-rdshttpendpointconfig
*/
rdsHttpEndpointConfig?: RdsHttpEndpointConfigProperty | cdk.Token;
/**
* ``DataSourceResource.RelationalDatabaseConfigProperty.RelationalDatabaseSourceType``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-relationaldatabaseconfig.html#cfn-appsync-datasource-relationaldatabaseconfig-relationaldatabasesourcetype
*/
relationalDatabaseSourceType: string | cdk.Token;
}
}
}

@@ -392,7 +485,2 @@ export declare namespace cloudformation {

/**
* ``AWS::AppSync::Resolver.DataSourceName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename
*/
dataSourceName: string | cdk.Token;
/**
* ``AWS::AppSync::Resolver.FieldName``

@@ -408,2 +496,17 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-fieldname

/**
* ``AWS::AppSync::Resolver.DataSourceName``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-datasourcename
*/
dataSourceName?: string | cdk.Token;
/**
* ``AWS::AppSync::Resolver.Kind``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-kind
*/
kind?: string | cdk.Token;
/**
* ``AWS::AppSync::Resolver.PipelineConfig``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-pipelineconfig
*/
pipelineConfig?: ResolverResource.PipelineConfigProperty | cdk.Token;
/**
* ``AWS::AppSync::Resolver.RequestMappingTemplate``

@@ -462,2 +565,14 @@ * @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-resolver.html#cfn-appsync-resolver-requestmappingtemplate

}
namespace ResolverResource {
/**
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-pipelineconfig.html
*/
interface PipelineConfigProperty {
/**
* ``ResolverResource.PipelineConfigProperty.Functions``
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-pipelineconfig.html#cfn-appsync-resolver-pipelineconfig-functions
*/
functions?: Array<string | cdk.Token> | cdk.Token;
}
}
}

14

package.json
{
"name": "@aws-cdk/aws-appsync",
"version": "0.17.0",
"version": "0.18.0",
"description": "The CDK Construct Library for AWS::AppSync",

@@ -55,14 +55,14 @@ "main": "lib/index.js",

"devDependencies": {
"@aws-cdk/assert": "^0.17.0",
"cdk-build-tools": "^0.17.0",
"cfn2ts": "^0.17.0",
"pkglint": "^0.17.0"
"@aws-cdk/assert": "^0.18.0",
"cdk-build-tools": "^0.18.0",
"cfn2ts": "^0.18.0",
"pkglint": "^0.18.0"
},
"dependencies": {
"@aws-cdk/cdk": "^0.17.0"
"@aws-cdk/cdk": "^0.18.0"
},
"homepage": "https://github.com/awslabs/aws-cdk",
"peerDependencies": {
"@aws-cdk/cdk": "^0.17.0"
"@aws-cdk/cdk": "^0.18.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc