Class: AWSCDK::Glue::CfnIntegrationResourceProperty::SourceProcessingPropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Glue::CfnIntegrationResourceProperty::SourceProcessingPropertiesProperty
- Defined in:
- glue/cfn_integration_resource_property.rb
Overview
The structure used to define the resource properties associated with the integration source.
Instance Attribute Summary collapse
-
#role_arn ⇒ String
readonly
The IAM role to access the AWS Glue connection.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(role_arn:) ⇒ SourceProcessingPropertiesProperty
constructor
A new instance of SourceProcessingPropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(role_arn:) ⇒ SourceProcessingPropertiesProperty
Returns a new instance of SourceProcessingPropertiesProperty.
553 554 555 556 |
# File 'glue/cfn_integration_resource_property.rb', line 553 def initialize(role_arn:) @role_arn = role_arn Jsii::Type.check_type(@role_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "roleArn") end |
Instance Attribute Details
#role_arn ⇒ String (readonly)
The IAM role to access the AWS Glue connection.
562 563 564 |
# File 'glue/cfn_integration_resource_property.rb', line 562 def role_arn @role_arn end |
Class Method Details
.jsii_properties ⇒ Object
564 565 566 567 568 |
# File 'glue/cfn_integration_resource_property.rb', line 564 def self.jsii_properties { :role_arn => "roleArn", } end |
Instance Method Details
#to_jsii ⇒ Object
570 571 572 573 574 575 576 |
# File 'glue/cfn_integration_resource_property.rb', line 570 def to_jsii result = {} result.merge!({ "roleArn" => @role_arn, }) result.compact end |