Class CfnAPNSSandboxChannel

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.95.0 (build f1ff514)", date="2024-03-26T18:09:26.958Z") @Stability(Stable) public class CfnAPNSSandboxChannel extends CfnResource implements IInspectable
A channel is a type of platform that you can deliver messages to.

You can use the APNs sandbox channel to send push notification messages to the sandbox environment of the Apple Push Notification service (APNs). Before you can use Amazon Pinpoint to send notifications to the APNs sandbox environment, you have to enable the APNs sandbox channel for an Amazon Pinpoint application.

The APNSSandboxChannel resource represents the status and authentication settings of the APNs sandbox channel for an application.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pinpoint.*;
 CfnAPNSSandboxChannel cfnAPNSSandboxChannel = CfnAPNSSandboxChannel.Builder.create(this, "MyCfnAPNSSandboxChannel")
         .applicationId("applicationId")
         // the properties below are optional
         .bundleId("bundleId")
         .certificate("certificate")
         .defaultAuthenticationMethod("defaultAuthenticationMethod")
         .enabled(false)
         .privateKey("privateKey")
         .teamId("teamId")
         .tokenKey("tokenKey")
         .tokenKeyId("tokenKeyId")
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAPNSSandboxChannel

      protected CfnAPNSSandboxChannel(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAPNSSandboxChannel

      protected CfnAPNSSandboxChannel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAPNSSandboxChannel

      @Stability(Stable) public CfnAPNSSandboxChannel(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAPNSSandboxChannelProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      (Deprecated) An identifier for the APNs sandbox channel.

      This property is retained only for backward compatibility.

    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getApplicationId

      @Stability(Stable) @NotNull public String getApplicationId()
      The unique identifier for the Amazon Pinpoint application that the APNs sandbox channel applies to.
    • setApplicationId

      @Stability(Stable) public void setApplicationId(@NotNull String value)
      The unique identifier for the Amazon Pinpoint application that the APNs sandbox channel applies to.
    • getBundleId

      @Stability(Stable) @Nullable public String getBundleId()
      The bundle identifier that's assigned to your iOS app.
    • setBundleId

      @Stability(Stable) public void setBundleId(@Nullable String value)
      The bundle identifier that's assigned to your iOS app.
    • getCertificate

      @Stability(Stable) @Nullable public String getCertificate()
      The APNs client certificate that you received from Apple.
    • setCertificate

      @Stability(Stable) public void setCertificate(@Nullable String value)
      The APNs client certificate that you received from Apple.
    • getDefaultAuthenticationMethod

      @Stability(Stable) @Nullable public String getDefaultAuthenticationMethod()
      The default authentication method that you want Amazon Pinpoint to use when authenticating with APNs.
    • setDefaultAuthenticationMethod

      @Stability(Stable) public void setDefaultAuthenticationMethod(@Nullable String value)
      The default authentication method that you want Amazon Pinpoint to use when authenticating with APNs.
    • getEnabled

      @Stability(Stable) @Nullable public Object getEnabled()
      Specifies whether to enable the APNs Sandbox channel for the Amazon Pinpoint application.
    • setEnabled

      @Stability(Stable) public void setEnabled(@Nullable Boolean value)
      Specifies whether to enable the APNs Sandbox channel for the Amazon Pinpoint application.
    • setEnabled

      @Stability(Stable) public void setEnabled(@Nullable IResolvable value)
      Specifies whether to enable the APNs Sandbox channel for the Amazon Pinpoint application.
    • getPrivateKey

      @Stability(Stable) @Nullable public String getPrivateKey()
      The private key for the APNs client certificate that you want Amazon Pinpoint to use to communicate with APNs.
    • setPrivateKey

      @Stability(Stable) public void setPrivateKey(@Nullable String value)
      The private key for the APNs client certificate that you want Amazon Pinpoint to use to communicate with APNs.
    • getTeamId

      @Stability(Stable) @Nullable public String getTeamId()
      The identifier that's assigned to your Apple Developer Account team.
    • setTeamId

      @Stability(Stable) public void setTeamId(@Nullable String value)
      The identifier that's assigned to your Apple Developer Account team.
    • getTokenKey

      @Stability(Stable) @Nullable public String getTokenKey()
      The authentication key to use for APNs tokens.
    • setTokenKey

      @Stability(Stable) public void setTokenKey(@Nullable String value)
      The authentication key to use for APNs tokens.
    • getTokenKeyId

      @Stability(Stable) @Nullable public String getTokenKeyId()
      The key identifier that's assigned to your APNs signing key.
    • setTokenKeyId

      @Stability(Stable) public void setTokenKeyId(@Nullable String value)
      The key identifier that's assigned to your APNs signing key.