Class: AWSCDK::BedrockAgentCore::CfnGateway::WorkloadIdentityDetailsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
bedrock_agent_core/cfn_gateway.rb

Overview

The workload identity details for the gateway.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(workload_identity_arn:) ⇒ WorkloadIdentityDetailsProperty

Returns a new instance of WorkloadIdentityDetailsProperty.

Parameters:

  • workload_identity_arn (String)


1284
1285
1286
1287
# File 'bedrock_agent_core/cfn_gateway.rb', line 1284

def initialize(workload_identity_arn:)
  @workload_identity_arn = workload_identity_arn
  Jsii::Type.check_type(@workload_identity_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "workloadIdentityArn")
end

Instance Attribute Details

#workload_identity_arnString (readonly)



1291
1292
1293
# File 'bedrock_agent_core/cfn_gateway.rb', line 1291

def workload_identity_arn
  @workload_identity_arn
end

Class Method Details

.jsii_propertiesObject



1293
1294
1295
1296
1297
# File 'bedrock_agent_core/cfn_gateway.rb', line 1293

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

Instance Method Details

#to_jsiiObject



1299
1300
1301
1302
1303
1304
1305
# File 'bedrock_agent_core/cfn_gateway.rb', line 1299

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