All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.sesv2.EmailIdentityPolicy Maven / Gradle / Ivy

// *** 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.sesv2;

import com.pulumi.aws.Utilities;
import com.pulumi.aws.sesv2.EmailIdentityPolicyArgs;
import com.pulumi.aws.sesv2.inputs.EmailIdentityPolicyState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import javax.annotation.Nullable;

/**
 * Resource for managing an AWS SESv2 (Simple Email V2) Email Identity Policy.
 * 
 * ## Example Usage
 * 
 * ### Basic Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * 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.EmailIdentityPolicy;
 * import com.pulumi.aws.sesv2.EmailIdentityPolicyArgs;
 * 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 }{{@code
 *     public static void main(String[] args) }{{@code
 *         Pulumi.run(App::stack);
 *     }}{@code
 * 
 *     public static void stack(Context ctx) }{{@code
 *         var example = new EmailIdentity("example", EmailIdentityArgs.builder()
 *             .emailIdentity("testing}{@literal @}{@code example.com")
 *             .build());
 * 
 *         var exampleEmailIdentityPolicy = new EmailIdentityPolicy("exampleEmailIdentityPolicy", EmailIdentityPolicyArgs.builder()
 *             .emailIdentity(example.emailIdentity())
 *             .policyName("example")
 *             .policy(example.arn().applyValue(arn -> """
 * }{{@code
 *   "Id":"ExampleAuthorizationPolicy",
 *   "Version":"2012-10-17",
 *   "Statement":[
 *     }{{@code
 *       "Sid":"AuthorizeIAMUser",
 *       "Effect":"Allow",
 *       "Resource":"%s",
 *       "Principal":}{{@code
 *         "AWS":[
 *           "arn:aws:iam::123456789012:user/John",
 *           "arn:aws:iam::123456789012:user/Jane"
 *         ]
 *       }}{@code ,
 *       "Action":[
 *         "ses:DeleteEmailIdentity",
 *         "ses:PutEmailIdentityDkimSigningAttributes"
 *       ]
 *     }}{@code
 *   ]
 * }}{@code
 * ", arn)))
 *             .build());
 * 
 *     }}{@code
 * }}{@code
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Using `pulumi import`, import SESv2 (Simple Email V2) Email Identity Policy using the `example_id_arg`. For example: * * ```sh * $ pulumi import aws:sesv2/emailIdentityPolicy:EmailIdentityPolicy example example_email_identity|example_policy_name * ``` * */ @ResourceType(type="aws:sesv2/emailIdentityPolicy:EmailIdentityPolicy") public class EmailIdentityPolicy extends com.pulumi.resources.CustomResource { /** * The email identity. * */ @Export(name="emailIdentity", refs={String.class}, tree="[0]") private Output emailIdentity; /** * @return The email identity. * */ public Output emailIdentity() { return this.emailIdentity; } /** * The text of the policy in JSON format. * */ @Export(name="policy", refs={String.class}, tree="[0]") private Output policy; /** * @return The text of the policy in JSON format. * */ public Output policy() { return this.policy; } /** * The name of the policy. * */ @Export(name="policyName", refs={String.class}, tree="[0]") private Output policyName; /** * @return The name of the policy. * */ public Output policyName() { return this.policyName; } /** * * @param name The _unique_ name of the resulting resource. */ public EmailIdentityPolicy(java.lang.String name) { this(name, EmailIdentityPolicyArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public EmailIdentityPolicy(java.lang.String name, EmailIdentityPolicyArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public EmailIdentityPolicy(java.lang.String name, EmailIdentityPolicyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("aws:sesv2/emailIdentityPolicy:EmailIdentityPolicy", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private EmailIdentityPolicy(java.lang.String name, Output id, @Nullable EmailIdentityPolicyState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("aws:sesv2/emailIdentityPolicy:EmailIdentityPolicy", name, state, makeResourceOptions(options, id), false); } private static EmailIdentityPolicyArgs makeArgs(EmailIdentityPolicyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? EmailIdentityPolicyArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state * @param options Optional settings to control the behavior of the CustomResource. */ public static EmailIdentityPolicy get(java.lang.String name, Output id, @Nullable EmailIdentityPolicyState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new EmailIdentityPolicy(name, id, state, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy