Method: SDM::AWS#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, access_key: nil, secret_access_key: nil, healthcheck_region: nil, role_arn: nil, role_external_id: nil) ⇒ AWS
Returns a new instance of AWS.
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 |
# File 'lib/models/porcelain.rb', line 1011 def initialize( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, access_key: nil, secret_access_key: nil, healthcheck_region: nil, role_arn: nil, role_external_id: nil ) if id != nil @id = id end if name != nil @name = name end if healthy != nil @healthy = healthy end if != nil = end if secret_store_id != nil @secret_store_id = secret_store_id end if egress_filter != nil @egress_filter = egress_filter end if access_key != nil @access_key = access_key end if secret_access_key != nil @secret_access_key = secret_access_key end if healthcheck_region != nil @healthcheck_region = healthcheck_region end if role_arn != nil @role_arn = role_arn end if role_external_id != nil @role_external_id = role_external_id end end |