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