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