Class: AWSCDK::Interfaces::AWSSagemaker::FeatureGroupReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSSagemaker::FeatureGroupReference
- Defined in:
- interfaces/aws_sagemaker/feature_group_reference.rb
Overview
A reference to a FeatureGroup resource.
Instance Attribute Summary collapse
-
#feature_group_name ⇒ String
readonly
The FeatureGroupName of the FeatureGroup resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(feature_group_name:) ⇒ FeatureGroupReference
constructor
A new instance of FeatureGroupReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(feature_group_name:) ⇒ FeatureGroupReference
Returns a new instance of FeatureGroupReference.
8 9 10 11 |
# File 'interfaces/aws_sagemaker/feature_group_reference.rb', line 8 def initialize(feature_group_name:) @feature_group_name = feature_group_name Jsii::Type.check_type(@feature_group_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "featureGroupName") end |
Instance Attribute Details
#feature_group_name ⇒ String (readonly)
The FeatureGroupName of the FeatureGroup resource.
16 17 18 |
# File 'interfaces/aws_sagemaker/feature_group_reference.rb', line 16 def feature_group_name @feature_group_name end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_sagemaker/feature_group_reference.rb', line 18 def self.jsii_properties { :feature_group_name => "featureGroupName", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_sagemaker/feature_group_reference.rb', line 24 def to_jsii result = {} result.merge!({ "featureGroupName" => @feature_group_name, }) result.compact end |