com.amazonaws.services.s3.model.QueueConfiguration.setQueueARN()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(57)

本文整理了Java中com.amazonaws.services.s3.model.QueueConfiguration.setQueueARN方法的一些代码示例,展示了QueueConfiguration.setQueueARN的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。QueueConfiguration.setQueueARN方法的具体详情如下:
包路径:com.amazonaws.services.s3.model.QueueConfiguration
类名称:QueueConfiguration
方法名:setQueueARN

QueueConfiguration.setQueueARN介绍

[英]Sets the queue ARN for this configuration
[中]设置此配置的队列ARN

代码示例

代码示例来源:origin: aws/aws-sdk-java

/**
   * Fluent method to set the queue ARN for this configuration
   * 
   * @param queueARN
   *            ARN for the SQS queue
   * @return This object for method chaining
   */
  public QueueConfiguration withQueueARN(String queueARN) {
    setQueueARN(queueARN);
    return this;
  }
}

代码示例来源:origin: aws/aws-sdk-java

protected boolean handleXmlEvent(QueueConfiguration queueConfig, StaxUnmarshallerContext context, int targetDepth)
    throws Exception {
  if (context.testExpression("Queue", targetDepth)) {
    queueConfig.setQueueARN(StringStaxUnmarshaller.getInstance().unmarshall(context));
    return true;
  }
  return false;
}

代码示例来源:origin: aws-amplify/aws-sdk-android

/**
   * Fluent method to set the queue ARN for this configuration
   * 
   * @param queueARN
   *            ARN for the SQS queue
   * @return This object for method chaining
   */
  public QueueConfiguration withQueueARN(String queueARN) {
    setQueueARN(queueARN);
    return this;
  }
}

代码示例来源:origin: aws-amplify/aws-sdk-android

protected boolean handleXmlEvent(QueueConfiguration queueConfig, StaxUnmarshallerContext context, int targetDepth)
    throws Exception {
  if (context.testExpression("Queue", targetDepth)) {
    queueConfig.setQueueARN(StringStaxUnmarshaller.getInstance().unmarshall(context));
    return true;
  }
  return false;
}

代码示例来源:origin: com.amazonaws/aws-android-sdk-s3

/**
   * Fluent method to set the queue ARN for this configuration
   * 
   * @param queueARN
   *            ARN for the SQS queue
   * @return This object for method chaining
   */
  public QueueConfiguration withQueueARN(String queueARN) {
    setQueueARN(queueARN);
    return this;
  }
}

代码示例来源:origin: Nextdoor/bender

/**
   * Fluent method to set the queue ARN for this configuration
   * 
   * @param queueARN
   *            ARN for the SQS queue
   * @return This object for method chaining
   */
  public QueueConfiguration withQueueARN(String queueARN) {
    setQueueARN(queueARN);
    return this;
  }
}

代码示例来源:origin: com.amazonaws/aws-android-sdk-s3

protected boolean handleXmlEvent(QueueConfiguration queueConfig, StaxUnmarshallerContext context, int targetDepth)
    throws Exception {
  if (context.testExpression("Queue", targetDepth)) {
    queueConfig.setQueueARN(StringStaxUnmarshaller.getInstance().unmarshall(context));
    return true;
  }
  return false;
}

代码示例来源:origin: Nextdoor/bender

protected boolean handleXmlEvent(QueueConfiguration queueConfig, StaxUnmarshallerContext context, int targetDepth)
    throws Exception {
  if (context.testExpression("Queue", targetDepth)) {
    queueConfig.setQueueARN(StringStaxUnmarshaller.getInstance().unmarshall(context));
    return true;
  }
  return false;
}

相关文章

微信公众号

最新文章

更多