com.pulumi.aws.chime.inputs.SdkvoiceSipMediaApplicationEndpointsArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.chime.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class SdkvoiceSipMediaApplicationEndpointsArgs extends com.pulumi.resources.ResourceArgs {
public static final SdkvoiceSipMediaApplicationEndpointsArgs Empty = new SdkvoiceSipMediaApplicationEndpointsArgs();
/**
* Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.
*
*/
@Import(name="lambdaArn", required=true)
private Output lambdaArn;
/**
* @return Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.
*
*/
public Output lambdaArn() {
return this.lambdaArn;
}
private SdkvoiceSipMediaApplicationEndpointsArgs() {}
private SdkvoiceSipMediaApplicationEndpointsArgs(SdkvoiceSipMediaApplicationEndpointsArgs $) {
this.lambdaArn = $.lambdaArn;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SdkvoiceSipMediaApplicationEndpointsArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private SdkvoiceSipMediaApplicationEndpointsArgs $;
public Builder() {
$ = new SdkvoiceSipMediaApplicationEndpointsArgs();
}
public Builder(SdkvoiceSipMediaApplicationEndpointsArgs defaults) {
$ = new SdkvoiceSipMediaApplicationEndpointsArgs(Objects.requireNonNull(defaults));
}
/**
* @param lambdaArn Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.
*
* @return builder
*
*/
public Builder lambdaArn(Output lambdaArn) {
$.lambdaArn = lambdaArn;
return this;
}
/**
* @param lambdaArn Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.
*
* @return builder
*
*/
public Builder lambdaArn(String lambdaArn) {
return lambdaArn(Output.of(lambdaArn));
}
public SdkvoiceSipMediaApplicationEndpointsArgs build() {
if ($.lambdaArn == null) {
throw new MissingRequiredPropertyException("SdkvoiceSipMediaApplicationEndpointsArgs", "lambdaArn");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy