Class: Aws::Chime::Types::SipMediaApplicationEndpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::SipMediaApplicationEndpoint
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass SipMediaApplicationEndpoint data as a hash:
{
lambda_arn: "FunctionArn",
}
The endpoint assigned to the SIP media application.
Constant Summary collapse
- SENSITIVE =
[:lambda_arn]
Instance Attribute Summary collapse
-
#lambda_arn ⇒ String
Valid Amazon Resource Name (ARN) of the Lambda function.
Instance Attribute Details
#lambda_arn ⇒ String
Valid Amazon Resource Name (ARN) of the Lambda function. The function must be created in the same AWS Region as the SIP media application.
9342 9343 9344 9345 9346 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 9342 class SipMediaApplicationEndpoint < Struct.new( :lambda_arn) SENSITIVE = [:lambda_arn] include Aws::Structure end |