github.com/aldelo/common@v1.5.1/wrapper/sns/snsgettopicattribute/snsgettopicattribute.go (about) 1 package snsgettopicattribute 2 3 /* 4 * Copyright 2020-2023 Aldelo, LP 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18 19 // go:generate gen-enumer -type SNSGetTopicAttribute 20 21 type SNSGetTopicAttribute int 22 23 const ( 24 UNKNOWN SNSGetTopicAttribute = 0 25 DeliveryPolicy SNSGetTopicAttribute = 1 26 DisplayName SNSGetTopicAttribute = 2 27 Owner SNSGetTopicAttribute = 3 28 Policy SNSGetTopicAttribute = 4 29 SubscriptionsConfirmed SNSGetTopicAttribute = 5 30 SubscriptionsDeleted SNSGetTopicAttribute = 6 31 SubscriptionsPending SNSGetTopicAttribute = 7 32 TopicArn SNSGetTopicAttribute = 8 33 EffectiveDeliveryPolicy SNSGetTopicAttribute = 9 34 KmsMasterKeyId SNSGetTopicAttribute = 10 35 ) 36 37 const ( 38 _SNSGetTopicAttributeKey_0 = "UNKNOWN" 39 _SNSGetTopicAttributeKey_1 = "DeliveryPolicy" 40 _SNSGetTopicAttributeKey_2 = "DisplayName" 41 _SNSGetTopicAttributeKey_3 = "Owner" 42 _SNSGetTopicAttributeKey_4 = "Policy" 43 _SNSGetTopicAttributeKey_5 = "SubscriptionsConfirmed" 44 _SNSGetTopicAttributeKey_6 = "SubscriptionsDeleted" 45 _SNSGetTopicAttributeKey_7 = "SubscriptionsPending" 46 _SNSGetTopicAttributeKey_8 = "TopicArn" 47 _SNSGetTopicAttributeKey_9 = "EffectiveDeliveryPolicy" 48 _SNSGetTopicAttributeKey_10 = "KmsMasterKeyId" 49 ) 50 51 const ( 52 _SNSGetTopicAttributeCaption_0 = "UNKNOWN" 53 _SNSGetTopicAttributeCaption_1 = "DeliveryPolicy" 54 _SNSGetTopicAttributeCaption_2 = "DisplayName" 55 _SNSGetTopicAttributeCaption_3 = "Owner" 56 _SNSGetTopicAttributeCaption_4 = "Policy" 57 _SNSGetTopicAttributeCaption_5 = "SubscriptionsConfirmed" 58 _SNSGetTopicAttributeCaption_6 = "SubscriptionsDeleted" 59 _SNSGetTopicAttributeCaption_7 = "SubscriptionsPending" 60 _SNSGetTopicAttributeCaption_8 = "TopicArn" 61 _SNSGetTopicAttributeCaption_9 = "EffectiveDeliveryPolicy" 62 _SNSGetTopicAttributeCaption_10 = "KmsMasterKeyId" 63 ) 64 65 const ( 66 _SNSGetTopicAttributeDescription_0 = "UNKNOWN" 67 _SNSGetTopicAttributeDescription_1 = "DeliveryPolicy" 68 _SNSGetTopicAttributeDescription_2 = "DisplayName" 69 _SNSGetTopicAttributeDescription_3 = "Owner" 70 _SNSGetTopicAttributeDescription_4 = "Policy" 71 _SNSGetTopicAttributeDescription_5 = "SubscriptionsConfirmed" 72 _SNSGetTopicAttributeDescription_6 = "SubscriptionsDeleted" 73 _SNSGetTopicAttributeDescription_7 = "SubscriptionsPending" 74 _SNSGetTopicAttributeDescription_8 = "TopicArn" 75 _SNSGetTopicAttributeDescription_9 = "EffectiveDeliveryPolicy" 76 _SNSGetTopicAttributeDescription_10 = "KmsMasterKeyId" 77 )