35.4. 사용법
35.4.1. Cryostat 프로듀서에서 평가한 메시지 헤더
헤더 | 유형 | 설명 |
---|---|---|
|
|
Amazon Cryostat 메시지 제목입니다. 설정되지 않은 경우 |
35.4.2. Cryostat 프로듀서에서 설정한 메시지 헤더
헤더 | 유형 | 설명 |
---|---|---|
|
| Amazon Cryostat 메시지 ID입니다. |
35.4.3. 고급 AmazonSNS 구성
AmazonSNS
인스턴스 구성을 더 많이 제어해야 하는 경우 자체 인스턴스를 생성하고 URI에서 참조할 수 있습니다.
from("direct:start") .to("aws-sns://MyTopic?amazonSNSClient=#client");
#client
는 레지스트리의 AmazonSNS
를 나타냅니다.
예를 들어 Camel 애플리케이션이 방화벽 뒤에서 실행되고 있는 경우 다음을 수행합니다.
AWSCredentials awsCredentials = new BasicAWSCredentials("myAccessKey", "mySecretKey"); ClientConfiguration clientConfiguration = new ClientConfiguration(); clientConfiguration.setProxyHost("http://myProxyHost"); clientConfiguration.setProxyPort(8080); AmazonSNS client = new AmazonSNSClient(awsCredentials, clientConfiguration); registry.bind("client", client);