Class: AWSCDK::AppSync::AppSyncBackedDataSource

Inherits:
AppSyncBaseDataSource
  • Object
show all
Includes:
IAM::IGrantable
Defined in:
app_sync/app_sync_backed_data_source.rb

Overview

Abstract AppSync datasource implementation.

Do not use directly but use subclasses for resource backed datasources

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(scope, id, props, extended) ⇒ AppSyncBackedDataSource

Returns a new instance of AppSyncBackedDataSource.

Parameters:



15
16
17
18
19
20
21
22
23
# File 'app_sync/app_sync_backed_data_source.rb', line 15

def initialize(scope, id, props, extended)
  props = props.is_a?(Hash) ? ::AWSCDK::AppSync::AppSyncBackedDataSourceProps.new(**props.transform_keys(&:to_sym)) : props
  extended = extended.is_a?(Hash) ? ::AWSCDK::AppSync::AppSyncExtendedDataSourceProps.new(**extended.transform_keys(&:to_sym)) : extended
  Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope")
  Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id")
  Jsii::Type.check_type(props, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfYXBwc3luYy5BcHBTeW5jQmFja2VkRGF0YVNvdXJjZVByb3BzIn0=")), "props")
  Jsii::Type.check_type(extended, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfYXBwc3luYy5BcHBTeW5jRXh0ZW5kZWREYXRhU291cmNlUHJvcHMifQ==")), "extended")
  Jsii::Object.instance_method(:initialize).bind(self).call(scope, id, props, extended)
end

Class Method Details

.jsii_overridable_methodsObject



25
26
27
28
29
30
31
32
33
34
35
36
# File 'app_sync/app_sync_backed_data_source.rb', line 25

def self.jsii_overridable_methods
  {
    :node => { kind: :property, name: "node", is_optional: false },
    :name => { kind: :property, name: "name", is_optional: false },
    :resource => { kind: :property, name: "resource", is_optional: false },
    :api => { kind: :property, name: "api", is_optional: false },
    :service_role => { kind: :property, name: "serviceRole", is_optional: true },
    :grant_principal => { kind: :property, name: "grantPrincipal", is_optional: false },
    :to_string => { kind: :method, name: "toString", is_optional: false },
    :with => { kind: :method, name: "with", is_optional: false },
  }
end

Instance Method Details

#apiAWSCDK::AppSync::IAPI

The API this data source is attached to Set the API this data source is attached to.



62
63
64
# File 'app_sync/app_sync_backed_data_source.rb', line 62

def api()
  jsii_get_property("api")
end

#api=(value) ⇒ Object



66
67
68
69
# File 'app_sync/app_sync_backed_data_source.rb', line 66

def api=(value)
  Jsii::Type.check_type(value, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfYXBwc3luYy5JQXBpIn0=")), "api")
  jsii_set_property("api", value)
end

#grant_principalAWSCDK::IAM::IPrincipal

The principal of the data source to be IGrantable.



84
85
86
# File 'app_sync/app_sync_backed_data_source.rb', line 84

def grant_principal()
  jsii_get_property("grantPrincipal")
end

#nameString

The name of the data source.

Returns:

  • (String)


48
49
50
# File 'app_sync/app_sync_backed_data_source.rb', line 48

def name()
  jsii_get_property("name")
end

#nodeConstructs::Node

The tree node.

Returns:

  • (Constructs::Node)


41
42
43
# File 'app_sync/app_sync_backed_data_source.rb', line 41

def node()
  jsii_get_property("node")
end

#resourceAWSCDK::AppSync::CfnDataSource

The underlying CFN data source resource.



55
56
57
# File 'app_sync/app_sync_backed_data_source.rb', line 55

def resource()
  jsii_get_property("resource")
end

#service_roleAWSCDK::IAM::IRole?

Returns:



72
73
74
# File 'app_sync/app_sync_backed_data_source.rb', line 72

def service_role()
  jsii_get_property("serviceRole")
end

#service_role=(value) ⇒ Object



76
77
78
79
# File 'app_sync/app_sync_backed_data_source.rb', line 76

def service_role=(value)
  Jsii::Type.check_type(value, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklSb2xlIn0=")), "serviceRole") unless value.nil?
  jsii_set_property("serviceRole", value)
end

#to_stringString

Returns a string representation of this construct.

Returns:

  • (String)


91
92
93
# File 'app_sync/app_sync_backed_data_source.rb', line 91

def to_string()
  jsii_call_method("toString", [])
end

#with(*mixins) ⇒ Constructs::IConstruct

Applies one or more mixins to this construct.

Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited. Use multiple with() calls if subsequent mixins should apply to added constructs.

Parameters:

  • mixins (Array<Constructs::IMixin>)

    The mixins to apply.

Returns:

  • (Constructs::IConstruct)

    This construct for chaining



104
105
106
107
108
109
# File 'app_sync/app_sync_backed_data_source.rb', line 104

def with(*mixins)
  mixins.each_with_index do |item, index|
    Jsii::Type.check_type(item, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLklNaXhpbiJ9")), "mixins[#{index}]")
  end
  jsii_call_method("with", [*mixins])
end