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",
}
Endpoints to specify as part of a 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 of the same AWS Region where the SIP media application is created.
Instance Attribute Details
#lambda_arn ⇒ String
Valid Amazon Resource Name (ARN) of the Lambda function of the same AWS Region where the SIP media application is created.
8308 8309 8310 8311 8312 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 8308 class SipMediaApplicationEndpoint < Struct.new( :lambda_arn) SENSITIVE = [:lambda_arn] include Aws::Structure end |