awscdk/awsappsync/AppSyncHttpDataSource.go (138 lines of code) (raw):

package awsappsync import ( _init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" "github.com/aws/constructs-go/constructs/v10" ) // An AppSync datasource backed by a http endpoint. // // Example: // import "github.com/aws/aws-cdk-go/awscdk" // // // api := appsync.NewEventApi(this, jsii.String("EventApiHttp"), &EventApiProps{ // ApiName: jsii.String("HttpEventApi"), // }) // // randomApi := apigw.NewRestApi(this, jsii.String("RandomApi")) // randomRoute := randomApi.Root.AddResource(jsii.String("random")) // randomRoute.AddMethod(jsii.String("GET"), apigw.NewMockIntegration(&IntegrationOptions{ // IntegrationResponses: []integrationResponse{ // &integrationResponse{ // StatusCode: jsii.String("200"), // ResponseTemplates: map[string]*string{ // "application/json": jsii.String("my-random-value"), // }, // }, // }, // PassthroughBehavior: apigw.PassthroughBehavior_NEVER, // RequestTemplates: map[string]*string{ // "application/json": jsii.String("{ \"statusCode\": 200 }"), // }, // }), &MethodOptions{ // MethodResponses: []methodResponse{ // &methodResponse{ // StatusCode: jsii.String("200"), // }, // }, // }) // // dataSource := api.AddHttpDataSource(jsii.String("httpsource"), fmt.Sprintf("https://%v.execute-api.%v.amazonaws.com", randomApi.RestApiId, this.Region)) // type AppSyncHttpDataSource interface { AppSyncBackedDataSource Api() IApi SetApi(val IApi) // The principal of the data source to be IGrantable. GrantPrincipal() awsiam.IPrincipal // The name of the data source. Name() *string // The tree node. Node() constructs.Node // The underlying CFN data source resource. Resource() CfnDataSource ServiceRole() awsiam.IRole SetServiceRole(val awsiam.IRole) // Returns a string representation of this construct. ToString() *string } // The jsii proxy struct for AppSyncHttpDataSource type jsiiProxy_AppSyncHttpDataSource struct { jsiiProxy_AppSyncBackedDataSource } func (j *jsiiProxy_AppSyncHttpDataSource) Api() IApi { var returns IApi _jsii_.Get( j, "api", &returns, ) return returns } func (j *jsiiProxy_AppSyncHttpDataSource) GrantPrincipal() awsiam.IPrincipal { var returns awsiam.IPrincipal _jsii_.Get( j, "grantPrincipal", &returns, ) return returns } func (j *jsiiProxy_AppSyncHttpDataSource) Name() *string { var returns *string _jsii_.Get( j, "name", &returns, ) return returns } func (j *jsiiProxy_AppSyncHttpDataSource) Node() constructs.Node { var returns constructs.Node _jsii_.Get( j, "node", &returns, ) return returns } func (j *jsiiProxy_AppSyncHttpDataSource) Resource() CfnDataSource { var returns CfnDataSource _jsii_.Get( j, "resource", &returns, ) return returns } func (j *jsiiProxy_AppSyncHttpDataSource) ServiceRole() awsiam.IRole { var returns awsiam.IRole _jsii_.Get( j, "serviceRole", &returns, ) return returns } func NewAppSyncHttpDataSource(scope constructs.Construct, id *string, props *AppSyncHttpDataSourceProps) AppSyncHttpDataSource { _init_.Initialize() if err := validateNewAppSyncHttpDataSourceParameters(scope, id, props); err != nil { panic(err) } j := jsiiProxy_AppSyncHttpDataSource{} _jsii_.Create( "aws-cdk-lib.aws_appsync.AppSyncHttpDataSource", []interface{}{scope, id, props}, &j, ) return &j } func NewAppSyncHttpDataSource_Override(a AppSyncHttpDataSource, scope constructs.Construct, id *string, props *AppSyncHttpDataSourceProps) { _init_.Initialize() _jsii_.Create( "aws-cdk-lib.aws_appsync.AppSyncHttpDataSource", []interface{}{scope, id, props}, a, ) } func (j *jsiiProxy_AppSyncHttpDataSource)SetApi(val IApi) { if err := j.validateSetApiParameters(val); err != nil { panic(err) } _jsii_.Set( j, "api", val, ) } func (j *jsiiProxy_AppSyncHttpDataSource)SetServiceRole(val awsiam.IRole) { _jsii_.Set( j, "serviceRole", val, ) } // Checks if `x` is a construct. // // Use this method instead of `instanceof` to properly detect `Construct` // instances, even when the construct library is symlinked. // // Explanation: in JavaScript, multiple copies of the `constructs` library on // disk are seen as independent, completely different libraries. As a // consequence, the class `Construct` in each copy of the `constructs` library // is seen as a different class, and an instance of one class will not test as // `instanceof` the other class. `npm install` will not create installations // like this, but users may manually symlink construct libraries together or // use a monorepo tool: in those cases, multiple copies of the `constructs` // library can be accidentally installed, and `instanceof` will behave // unpredictably. It is safest to avoid using `instanceof`, and using // this type-testing method instead. // // Returns: true if `x` is an object created from a class which extends `Construct`. func AppSyncHttpDataSource_IsConstruct(x interface{}) *bool { _init_.Initialize() if err := validateAppSyncHttpDataSource_IsConstructParameters(x); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_appsync.AppSyncHttpDataSource", "isConstruct", []interface{}{x}, &returns, ) return returns } func (a *jsiiProxy_AppSyncHttpDataSource) ToString() *string { var returns *string _jsii_.Invoke( a, "toString", nil, // no parameters &returns, ) return returns }