Tabnine Logo
BucketNotificationConfiguration.setTopicConfigurations
Code IndexAdd Tabnine to your IDE (free)

How to use
setTopicConfigurations
method
in
com.amazonaws.services.s3.model.BucketNotificationConfiguration

Best Java code snippets using com.amazonaws.services.s3.model.BucketNotificationConfiguration.setTopicConfigurations (Showing top 4 results out of 315)

origin: aws/aws-sdk-java

/**
 * <p>
 * Sets the {@link BucketNotificationConfiguration.TopicConfiguration}
 * <code>TopicConfigurations</code> and returns this object,
 * enabling additional method calls to be chained together.
 * </p>
 * <p>
 * Calling this method will overwrite any
 * previously set <code>TopicConfigurations</code> for this object.
 * </p>
 *
 * @param topicConfigurations
 *            A set of topic configurations.
 *
 * @return The updated {@link BucketNotificationConfiguration} object,
 *            enabling additional method calls to be chained together.
 *
 * @deprecated
 * @see BucketNotificationConfiguration#withNotificationConfiguration(Map)
 */
public BucketNotificationConfiguration withTopicConfigurations( TopicConfiguration... topicConfigurations ) {
  setTopicConfigurations(Arrays.asList(topicConfigurations));
  return this;
}
origin: aws-amplify/aws-sdk-android

/**
 * <p>
 * Sets the {@link BucketNotificationConfiguration.TopicConfiguration}
 * <code>TopicConfigurations</code> and returns this object, enabling
 * additional method calls to be chained together.
 * </p>
 * <p>
 * Calling this method will overwrite any previously set
 * <code>TopicConfigurations</code> for this object.
 * </p>
 *
 * @param topicConfigurations A set of topic configurations.
 * @return The updated {@link BucketNotificationConfiguration} object,
 *         enabling additional method calls to be chained together.
 * @deprecated
 * @see BucketNotificationConfiguration#withNotificationConfiguration(Map)
 */
@Deprecated
public BucketNotificationConfiguration withTopicConfigurations(
    TopicConfiguration... topicConfigurations) {
  setTopicConfigurations(Arrays.asList(topicConfigurations));
  return this;
}
origin: Nextdoor/bender

/**
 * <p>
 * Sets the {@link BucketNotificationConfiguration.TopicConfiguration}
 * <code>TopicConfigurations</code> and returns this object,
 * enabling additional method calls to be chained together.
 * </p>
 * <p>
 * Calling this method will overwrite any
 * previously set <code>TopicConfigurations</code> for this object.
 * </p>
 *
 * @param topicConfigurations
 *            A set of topic configurations.
 *
 * @return The updated {@link BucketNotificationConfiguration} object,
 *            enabling additional method calls to be chained together.
 *
 * @deprecated
 * @see BucketNotificationConfiguration#withNotificationConfiguration(Map)
 */
public BucketNotificationConfiguration withTopicConfigurations( TopicConfiguration... topicConfigurations ) {
  setTopicConfigurations(Arrays.asList(topicConfigurations));
  return this;
}
origin: com.amazonaws/aws-android-sdk-s3

/**
 * <p>
 * Sets the {@link BucketNotificationConfiguration.TopicConfiguration}
 * <code>TopicConfigurations</code> and returns this object, enabling
 * additional method calls to be chained together.
 * </p>
 * <p>
 * Calling this method will overwrite any previously set
 * <code>TopicConfigurations</code> for this object.
 * </p>
 *
 * @param topicConfigurations A set of topic configurations.
 * @return The updated {@link BucketNotificationConfiguration} object,
 *         enabling additional method calls to be chained together.
 * @deprecated
 * @see BucketNotificationConfiguration#withNotificationConfiguration(Map)
 */
@Deprecated
public BucketNotificationConfiguration withTopicConfigurations(
    TopicConfiguration... topicConfigurations) {
  setTopicConfigurations(Arrays.asList(topicConfigurations));
  return this;
}
com.amazonaws.services.s3.modelBucketNotificationConfigurationsetTopicConfigurations

Javadoc

Sets the BucketNotificationConfiguration.TopicConfiguration.

Calling this method will overwrite any previously set TopicConfigurations for this object.

Popular methods of BucketNotificationConfiguration

  • <init>
    Creates a new bucket notification configuration containing the specified TopicConfigurations. Pas
  • addConfiguration
    Adds the given notification configuration to the BucketNotificationConfiguration object
  • getConfigurations
    Returns all the notification configurations associated with the Amazon S3 bucket.
  • getConfigurationByName
    Returns the notification configuration for the given name.

Popular in Java

  • Making http requests using okhttp
  • getResourceAsStream (ClassLoader)
  • compareTo (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Kernel (java.awt.image)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now