Package com.pulumi.aws.sesv2
Class EmailIdentityMailFromAttributes
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.aws.sesv2.EmailIdentityMailFromAttributes
-
public class EmailIdentityMailFromAttributes extends com.pulumi.resources.CustomResource
Resource for managing an AWS SESv2 (Simple Email V2) Email Identity Mail From Attributes. ## Example Usage ### Basic Usage <!--Start PulumiCodeChooser -->package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.aws.sesv2.EmailIdentity; import com.pulumi.aws.sesv2.EmailIdentityArgs; import com.pulumi.aws.sesv2.EmailIdentityMailFromAttributes; import com.pulumi.aws.sesv2.EmailIdentityMailFromAttributesArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var example = new EmailIdentity("example", EmailIdentityArgs.builder() .emailIdentity("example.com") .build()); var exampleEmailIdentityMailFromAttributes = new EmailIdentityMailFromAttributes("exampleEmailIdentityMailFromAttributes", EmailIdentityMailFromAttributesArgs.builder() .emailIdentity(example.emailIdentity()) .behaviorOnMxFailure("REJECT_MESSAGE") .mailFromDomain(example.emailIdentity().applyValue(emailIdentity -> String.format("subdomain.%s", emailIdentity))) .build()); } }
-
-
Constructor Summary
Constructors Constructor Description EmailIdentityMailFromAttributes(java.lang.String name)
EmailIdentityMailFromAttributes(java.lang.String name, EmailIdentityMailFromAttributesArgs args)
EmailIdentityMailFromAttributes(java.lang.String name, EmailIdentityMailFromAttributesArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.util.Optional<java.lang.String>>
behaviorOnMxFailure()
com.pulumi.core.Output<java.lang.String>
emailIdentity()
static EmailIdentityMailFromAttributes
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, EmailIdentityMailFromAttributesState state, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.util.Optional<java.lang.String>>
mailFromDomain()
-
-
-
Constructor Detail
-
EmailIdentityMailFromAttributes
public EmailIdentityMailFromAttributes(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
EmailIdentityMailFromAttributes
public EmailIdentityMailFromAttributes(java.lang.String name, EmailIdentityMailFromAttributesArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
EmailIdentityMailFromAttributes
public EmailIdentityMailFromAttributes(java.lang.String name, EmailIdentityMailFromAttributesArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
behaviorOnMxFailure
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> behaviorOnMxFailure()
- Returns:
- The action to take if the required MX record isn't found when you send an email. Valid values: `USE_DEFAULT_VALUE`, `REJECT_MESSAGE`.
-
emailIdentity
public com.pulumi.core.Output<java.lang.String> emailIdentity()
- Returns:
- The verified email identity.
-
mailFromDomain
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> mailFromDomain()
- Returns:
- The custom MAIL FROM domain that you want the verified identity to use. Required if `behavior_on_mx_failure` is `REJECT_MESSAGE`.
-
get
public static EmailIdentityMailFromAttributes get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable EmailIdentityMailFromAttributesState state, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.state
-options
- Optional settings to control the behavior of the CustomResource.
-
-