Class: AWSCDK::DataZone::CfnEnvironmentActions::AWSConsoleLinkParametersProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
data_zone/cfn_environment_actions.rb

Overview

The parameters of the console link specified as part of the environment action.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(uri: nil) ⇒ AWSConsoleLinkParametersProperty

Returns a new instance of AWSConsoleLinkParametersProperty.

Parameters:

  • uri (String, nil) (defaults to: nil)

    The URI of the console link specified as part of the environment action.



584
585
586
587
# File 'data_zone/cfn_environment_actions.rb', line 584

def initialize(uri: nil)
  @uri = uri
  Jsii::Type.check_type(@uri, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "uri") unless @uri.nil?
end

Instance Attribute Details

#uriString? (readonly)

The URI of the console link specified as part of the environment action.



593
594
595
# File 'data_zone/cfn_environment_actions.rb', line 593

def uri
  @uri
end

Class Method Details

.jsii_propertiesObject



595
596
597
598
599
# File 'data_zone/cfn_environment_actions.rb', line 595

def self.jsii_properties
  {
    :uri => "uri",
  }
end

Instance Method Details

#to_jsiiObject



601
602
603
604
605
606
607
# File 'data_zone/cfn_environment_actions.rb', line 601

def to_jsii
  result = {}
  result.merge!({
    "uri" => @uri,
  })
  result.compact
end