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